See ChangeLog entry 2000-08-14 14:45 UTC-0400 David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
2000-08-14 18:51:31 +00:00
parent 05860b2a31
commit 970d2a85d9
4 changed files with 16 additions and 4 deletions

View File

@@ -1,3 +1,15 @@
2000-08-14 14:45 UTC-0400 David G. Holm <dholm@jsd-llc.com>
* contrib/rdd_ads/ace.h
+ Added separate test for RSXNT for definition of ENTRYPOINT.
* contrib/rdd_ads/ads1.c
+ Added #include <ctype.h> to eliminate implicit declaration of
function 'tolower' warning in function `strcmpNoCase'
* contrib/rdd_ads/adsfunc.c
- Eliminated unused variable 'ulRetVal' in functions
HB_FUN_ADSISENCRYPTIONENABLED, HB_FUN_ADSISRECORDENCRYPTED,
and HB_FUN_ADSISTABLEENCRYPTED.
2000-08-14 11:00 GMT+3 Alexander Kresin <alex@belacy.belgorod.su>
* source/rtl/gtwin/gtwin.c
* fixed handling of arrow keys for international keyboards

View File

@@ -31,7 +31,9 @@ typedef double DOUBLE;
#define EXTERN extern
#define STATIC static
#if defined( __GNUC__ )
#if defined( __RSXNT__ )
#define ENTRYPOINT _export WINAPI
#elif defined( __GNUC__ )
#define ENTRYPOINT __attribute__ (( dllexport ))
#elif defined( WIN32 ) && !defined( ASANT ) && !defined( __BORLANDC__ )
#define ENTRYPOINT _declspec( dllexport ) WINAPI

View File

@@ -38,6 +38,7 @@
#define HB_OS_WIN_32_USED
#define MAX_STR_LEN 255
#include <ctype.h>
#include "hbapi.h"
#include "hbinit.h"
#include "hbapiitm.h"

View File

@@ -534,7 +534,6 @@ HB_FUNC( ADSDECRYPTRECORD )
HB_FUNC( ADSISENCRYPTIONENABLED )
{
ADSAREAP pArea;
UNSIGNED32 ulRetVal;
UNSIGNED16 usIsEnabled;
pArea = (ADSAREAP) hb_rddGetCurrentWorkAreaPointer();
@@ -550,7 +549,6 @@ HB_FUNC( ADSISENCRYPTIONENABLED )
HB_FUNC( ADSISRECORDENCRYPTED )
{
ADSAREAP pArea;
UNSIGNED32 ulRetVal;
UNSIGNED16 usIsEnabled;
pArea = (ADSAREAP) hb_rddGetCurrentWorkAreaPointer();
@@ -566,7 +564,6 @@ HB_FUNC( ADSISRECORDENCRYPTED )
HB_FUNC( ADSISTABLEENCRYPTED )
{
ADSAREAP pArea;
UNSIGNED32 ulRetVal;
UNSIGNED16 usIsEnabled;
pArea = (ADSAREAP) hb_rddGetCurrentWorkAreaPointer();