Changed more type definitions to work better on different platforms.

This commit is contained in:
claudiobsd 2014-06-06 14:42:13 -04:00
parent f8dd0694d5
commit a3418ad4cf

View file

@ -20,15 +20,14 @@
typedef void (*LIBHANDLER)(void);
typedef unsigned int WORD;
typedef unsigned char BYTE;
typedef uint32_t WORD;
typedef uint8_t BYTE;
typedef WORD *WORDPTR;
typedef BYTE *BYTEPTR;
typedef int BINT;
typedef unsigned int UBINT;
typedef long long BINT64;
typedef unsigned long long UBINT64;
typedef int OFFSET;
typedef int32_t BINT;
typedef uint32_t UBINT;
typedef int64_t BINT64;
typedef uint64_t UBINT64;
#ifdef __cplusplus