Commit d442b41e authored by Alexandre Julliard's avatar Alexandre Julliard

include: Avoid redefining base types in ntdef.h.

parent 675adf01
...@@ -50,6 +50,7 @@ typedef enum _WAIT_TYPE { ...@@ -50,6 +50,7 @@ typedef enum _WAIT_TYPE {
#define NT_WARNING(status) ((((NTSTATUS)(status)) & 0xc0000000) == 0x80000000) #define NT_WARNING(status) ((((NTSTATUS)(status)) & 0xc0000000) == 0x80000000)
#define NT_ERROR(status) ((((NTSTATUS)(status)) & 0xc0000000) == 0xc0000000) #define NT_ERROR(status) ((((NTSTATUS)(status)) & 0xc0000000) == 0xc0000000)
#ifndef BASETYPES
#define BASETYPES #define BASETYPES
typedef unsigned char UCHAR, *PUCHAR; typedef unsigned char UCHAR, *PUCHAR;
typedef unsigned short USHORT, *PUSHORT; typedef unsigned short USHORT, *PUSHORT;
...@@ -58,6 +59,7 @@ typedef unsigned long ULONG, *PULONG; ...@@ -58,6 +59,7 @@ typedef unsigned long ULONG, *PULONG;
#else #else
typedef unsigned int ULONG, *PULONG; typedef unsigned int ULONG, *PULONG;
#endif #endif
#endif
typedef struct _RTL_BALANCED_NODE typedef struct _RTL_BALANCED_NODE
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment