summaryrefslogtreecommitdiffstats
path: root/loader/wine/ntdef.h
diff options
context:
space:
mode:
Diffstat (limited to 'loader/wine/ntdef.h')
-rw-r--r--loader/wine/ntdef.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/loader/wine/ntdef.h b/loader/wine/ntdef.h
index 0ee20f5c59..734fb65b6d 100644
--- a/loader/wine/ntdef.h
+++ b/loader/wine/ntdef.h
@@ -40,19 +40,19 @@ typedef WCHAR * PWCHAR;
* If they are zero terminated, Length does not include the terminating 0.
*/
-typedef struct _STRING {
+typedef struct STRING {
USHORT Length;
USHORT MaximumLength;
PSTR Buffer;
} STRING,*PSTRING,ANSI_STRING,*PANSI_STRING;
-typedef struct _CSTRING {
+typedef struct CSTRING {
USHORT Length;
USHORT MaximumLength;
PCSTR Buffer;
} CSTRING,*PCSTRING;
-typedef struct _UNICODE_STRING {
+typedef struct UNICODE_STRING {
USHORT Length; /* bytes */
USHORT MaximumLength; /* bytes */
PWSTR Buffer;
@@ -71,7 +71,7 @@ typedef struct _UNICODE_STRING {
#define OBJ_KERNEL_HANDLE 0x00000200L
#define OBJ_VALID_ATTRIBUTES 0x000003F2L
-typedef struct _OBJECT_ATTRIBUTES
+typedef struct OBJECT_ATTRIBUTES
{ ULONG Length;
HANDLE RootDirectory;
PUNICODE_STRING ObjectName;