19990820-14:40 GMT+1

This commit is contained in:
Viktor Szakats
1999-08-20 12:52:19 +00:00
parent b5bdefa2f7
commit c00b47a67d
2 changed files with 14 additions and 1 deletions

View File

@@ -1,3 +1,12 @@
19990820-14:40 GMT+1 Victor Szel <info@szelvesz.hu>
* include/hbsetup.h
+ HARBOUR_USE_GTAPI is automatically #defined if any type of the GTAPIs
is #defined.
So from now on only one of these should be #defined to turn on the GT:
#define HARBOUR_USE_DOS_GTAPI
#define HARBOUR_USE_OS2_GTAPI
#define HARBOUR_USE_WIN_GTAPI
19990820-14:30 GMT+1 Victor Szel <info@szelvesz.hu>
* source/compiler/harbour.y
source/hbpp/hbpp.c

View File

@@ -109,11 +109,15 @@
*
* By default they are disabled (symbols are not defined)
*/
/*#define HARBOUR_USE_GTAPI*/
/*#define HARBOUR_USE_DOS_GTAPI*/
/*#define HARBOUR_USE_OS2_GTAPI*/
/*#define HARBOUR_USE_WIN_GTAPI*/
/* Indicate that one of the GTAPIs is defined */
#if defined(HARBOUR_USE_DOS_GTAPI) || defined(HARBOUR_USE_OS2_GTAPI) || defined(HARBOUR_USE_WIN_GTAPI)
#define HARBOUR_USE_GTAPI
#endif
/* ***********************************************************************
* Operating system specific definitions
*/