mirror of
https://git.code.sf.net/p/newrpl/sources
synced 2024-11-16 19:51:25 +01:00
Changed more type definitions to work better on different platforms.
This commit is contained in:
parent
f8dd0694d5
commit
a3418ad4cf
1 changed files with 6 additions and 7 deletions
13
newrpl.h
13
newrpl.h
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue