mirror of
https://github.com/ZDoom/qzdoom-gpl.git
synced 2025-03-12 21:28:17 +00:00
- removed SQWORD, there were only a handful of occurences.
This commit is contained in:
parent
ba0f5a3f94
commit
f341e7fb6a
1 changed files with 0 additions and 10 deletions
|
@ -8,7 +8,6 @@ typedef uint8_t BYTE;
|
|||
typedef int16_t SWORD;
|
||||
typedef uint16_t WORD;
|
||||
typedef uint32_t uint32;
|
||||
typedef int64_t SQWORD;
|
||||
typedef uint64_t QWORD;
|
||||
|
||||
// windef.h, included by windows.h, has its own incompatible definition
|
||||
|
@ -23,15 +22,6 @@ typedef uint32 DWORD;
|
|||
typedef uint32 BITFIELD;
|
||||
typedef int INTBOOL;
|
||||
|
||||
// a 64-bit constant
|
||||
#ifdef __GNUC__
|
||||
#define CONST64(v) (v##LL)
|
||||
#define UCONST64(v) (v##ULL)
|
||||
#else
|
||||
#define CONST64(v) ((SQWORD)(v))
|
||||
#define UCONST64(v) ((QWORD)(v))
|
||||
#endif
|
||||
|
||||
#if !defined(GUID_DEFINED)
|
||||
#define GUID_DEFINED
|
||||
typedef struct _GUID
|
||||
|
|
Loading…
Reference in a new issue