include: Avoid redefining base types in ntdef.h.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=49106 Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
675adf0163
commit
d442b41ec6
|
@ -50,6 +50,7 @@ typedef enum _WAIT_TYPE {
|
|||
#define NT_WARNING(status) ((((NTSTATUS)(status)) & 0xc0000000) == 0x80000000)
|
||||
#define NT_ERROR(status) ((((NTSTATUS)(status)) & 0xc0000000) == 0xc0000000)
|
||||
|
||||
#ifndef BASETYPES
|
||||
#define BASETYPES
|
||||
typedef unsigned char UCHAR, *PUCHAR;
|
||||
typedef unsigned short USHORT, *PUSHORT;
|
||||
|
@ -58,6 +59,7 @@ typedef unsigned long ULONG, *PULONG;
|
|||
#else
|
||||
typedef unsigned int ULONG, *PULONG;
|
||||
#endif
|
||||
#endif
|
||||
|
||||
typedef struct _RTL_BALANCED_NODE
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue