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:
Alexandre Julliard 2020-12-10 21:42:59 +01:00
parent 675adf0163
commit d442b41ec6
1 changed files with 2 additions and 0 deletions

View File

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