- removed SQWORD, there were only a handful of occurences.

This commit is contained in:
Christoph Oelckers 2017-03-08 19:02:50 +01:00
parent ba0f5a3f94
commit f341e7fb6a

View file

@ -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