commit | ea31cf0a5777f1c16b66d361ccb0104c1fc5f297 | [log] [tgz] |
---|---|---|
author | Francois Gouget <fgouget@free.fr> | Tue Nov 20 18:52:20 2001 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Tue Nov 20 18:52:20 2001 +0000 |
tree | 97d889911a5aad91a02dafeeeaaba4da782a1b8c | |
parent | 80eff975279a00e5724114433821d88b699eb5bc [diff] [blame] |
Fix LUID definition.
diff --git a/include/winnt.h b/include/winnt.h index 40a1ff1..4c12835 100644 --- a/include/winnt.h +++ b/include/winnt.h
@@ -3591,12 +3591,15 @@ * Locally Unique Identifier */ -typedef LARGE_INTEGER LUID,*PLUID; +typedef struct _LUID { + DWORD LowPart; + LONG HighPart; +} LUID, *PLUID; typedef struct _LUID_AND_ATTRIBUTES { - LUID Luid; - DWORD Attributes; -} LUID_AND_ATTRIBUTES; + LUID Luid; + DWORD Attributes; +} LUID_AND_ATTRIBUTES; /* * PRIVILEGE_SET