19990917-00:05 GMT+1

This commit is contained in:
Viktor Szakats
1999-09-16 22:21:29 +00:00
parent 84037dd9fe
commit ded1f1389e
8 changed files with 223 additions and 197 deletions

View File

@@ -76,9 +76,6 @@ typedef unsigned char BYTE; /* 1 byte unsigned */
#undef SHORT /* 2 bytes signed */
typedef short int SHORT;
#undef WORD /* 2 bytes unsigned */
typedef unsigned short int WORD;
#undef USHORT /* 2 bytes unsigned */
typedef unsigned short int USHORT;
@@ -88,6 +85,11 @@ typedef long LONG;
#undef ULONG /* 4 bytes unsigned */
typedef unsigned long ULONG;
/* TODO: Remove this */
#undef WORD /* 2 bytes unsigned */
typedef unsigned short int WORD;
/* TODO: Remove this */
#undef DWORD /* 4 bytes unsigned */
typedef unsigned long DWORD;
@@ -145,6 +147,9 @@ typedef unsigned long DWORD;
#define __HARBOUR__
typedef BYTE HB_CHAR;
typedef BYTE HB_ATTR;
typedef HARBOUR ( * PHB_FUNC )( void );
typedef PHB_FUNC HB_FUNC_PTR;