From 72a2e3a917cc246dad15e4f607d4a90e72fb346c Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sat, 29 Dec 2001 18:45:02 +0000 Subject: [PATCH] 2001-12-29 19:44 UTC+0100 Viktor Szakats --- harbour/ChangeLog | 11 +++++++++++ harbour/include/clipdefs.h | 6 +++--- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index ccc659caee..f6b5802c06 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,17 @@ 2002-12-01 23:12 UTC+0100 Foo Bar */ + Added function sx_Close() + + Added function sx_Commit() + + Added function sx_CreateField() + + Added function sx_Eof() + + Added function sx_GetString() + #ifndef HB_OS_WIN_32 to + + Added function sx_IndexTag() + + Added function sx_RecNo() + IMPORTANT: For those who get duplicate defines when compiling + Win32 code, the #define HB_OS_WIN_32_USED should be defined + + Added function sx_Use() + * contrib/apollo/test * Added functions in a test application. diff --git a/harbour/include/clipdefs.h b/harbour/include/clipdefs.h index 001dd9b2a0..21a91d3e5a 100644 --- a/harbour/include/clipdefs.h +++ b/harbour/include/clipdefs.h @@ -78,7 +78,7 @@ typedef SHORTP PSHORT; typedef USHORT * USHORTP; typedef USHORTP PUSHORT; -#ifndef HB_OS_WIN_32 +#if !(defined(HB_OS_WIN_32) && defined(HB_OS_WIN_32_USED)) typedef unsigned int WORD; typedef WORD * WORDP; typedef WORDP PWORD; @@ -100,7 +100,7 @@ typedef BOOLP PBOOL; typedef void * NEARP; typedef NEARP * NEARPP; -#ifndef HB_OS_WIN_32 +#if !(defined(HB_OS_WIN_32) && defined(HB_OS_WIN_32_USED)) typedef void * FARP; typedef FARP * FARPP; typedef FARP VOIDP; @@ -125,4 +125,4 @@ typedef FUNCP * FUNCPP; #define NULL 0 #endif -#endif /* _CLIPDEFS_H */ \ No newline at end of file +#endif /* _CLIPDEFS_H */