20000331-10:45

This commit is contained in:
Paul Tucker
2000-03-31 15:46:22 +00:00
parent f3c381e0bf
commit b38095a89b
2 changed files with 21 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
20000331-10:45 EST Paul Tucker <ptucker@sympatico.ca>
* contrib/rdd_ads/ads1.c
* updated initSymbols handling
20000331-09:50 EST Paul Tucker <ptucker@sympatico.ca>
* source/rdd/dbf1.c
* source/rdd/sdf1.c

View File

@@ -62,8 +62,23 @@ HB_INIT_SYMBOLS_BEGIN( ads1__InitSymbols )
{ "_ADS", HB_FS_PUBLIC, HB_FUNCNAME( _ADS ), NULL },
{ "ADS_GETFUNCTABLE", HB_FS_PUBLIC, HB_FUNCNAME( ADS_GETFUNCTABLE ), NULL }
HB_INIT_SYMBOLS_END( ads1__InitSymbols )
#if ! defined(__GNUC__) && ! defined(_MSC_VER)
#pragma startup ads1__InitSymbols
#if defined(_MSC_VER)
#if _MSC_VER >= 1010
#pragma data_seg( ".CRT$XIY" )
#pragma comment( linker, "/Merge:.CRT=.data" )
#else
#pragma data_seg( "XIY" )
#endif
#pragma warning( disable: 4152 )
static void *hb_vm_auto_ads1__InitSymbols = &ads1__InitSymbols;
#pragma warning( default: 4152 )
#pragma data_seg()
#else
#if ! defined(__GNUC__)
#pragma startup ads1__InitSymbols
#endif
#endif
static RDDFUNCS adsSuper = { 0 };