diff --git a/harbour/ChangeLog b/harbour/ChangeLog index f6b5802c06..d73117a6db 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -7,6 +7,11 @@ For example: 2002-12-01 23:12 UTC+0100 Foo Bar */ + * All functions marked as exported + +2001-12-28 20:39 UTC+0100 Patrick Mast + * contrib/apollo + + Added function sx_AppendBlank() + Added function sx_Close() + Added function sx_Commit() + Added function sx_CreateField() diff --git a/harbour/include/extend.api b/harbour/include/extend.api index be8d77505a..55e87ebfcf 100644 --- a/harbour/include/extend.api +++ b/harbour/include/extend.api @@ -55,10 +55,7 @@ #ifndef _EXTEND_API #define _EXTEND_API -#ifndef HB_OS_WIN_32 - #include "clipdefs.h" -#endif - +#include "clipdefs.h" #include "hbapi.h" typedef PHB_ITEM ITEM; @@ -72,7 +69,7 @@ typedef PHB_ITEM ITEM; #define CHARACTER HB_IT_STRING #define NUMERIC HB_IT_NUMERIC #define LOGICAL HB_IT_LOGICAL -#ifndef HB_OS_WIN_32 +#if !(defined(HB_OS_WIN_32) && defined(HB_OS_WIN_32_USED)) #define DATE HB_IT_DATE #endif #define ALIAS HB_IT_ALIAS @@ -80,12 +77,12 @@ typedef PHB_ITEM ITEM; #define MEMO HB_IT_MEMO /* NOTE: CA-Cl*pper bug: WORD will conflict with the typedef with the same name in clipdefs.h [vszakats] */ -#ifndef HB_OS_WIN_32 +#if !(defined(HB_OS_WIN_32) && defined(HB_OS_WIN_32_USED)) #define WORD ( HB_IT_INTEGER | HB_IT_LONG ) #endif #define ARRAY HB_IT_ARRAY #define BLOCK HB_IT_BLOCK -#ifndef HB_OS_WIN_32 +#if !(defined(HB_OS_WIN_32) && defined(HB_OS_WIN_32_USED)) #define DOUBLE HB_IT_DOUBLE #endif @@ -124,4 +121,4 @@ typedef PHB_ITEM ITEM; #define _storni hb_storni #define _stornl hb_stornl -#endif /* _EXTEND_API */ \ No newline at end of file +#endif /* _EXTEND_API */