Mercurial > mplayer.hg
annotate loader/wine/ntdef.h @ 30320:90c417401f02
Remove stray '\' at the end of macro definitions.
author | stefano |
---|---|
date | Sun, 17 Jan 2010 23:29:31 +0000 |
parents | 0f1b5b68af32 |
children | 26f673ba0675 |
rev | line source |
---|---|
26045 | 1 #ifndef MPLAYER_NTDEF_H |
2 #define MPLAYER_NTDEF_H | |
1 | 3 |
4 #include "basetsd.h" | |
5 #include "windef.h" | |
6 | |
7 #include "pshpack1.h" | |
8 | |
9 #ifdef __cplusplus | |
10 extern "C" { | |
11 #endif | |
12 | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
26045
diff
changeset
|
13 #define NTAPI __stdcall |
1 | 14 |
15 #ifndef IN | |
16 #define IN | |
17 #endif | |
18 | |
19 #ifndef OUT | |
20 #define OUT | |
21 #endif | |
22 | |
23 #ifndef OPTIONAL | |
24 #define OPTIONAL | |
25 #endif | |
26 | |
27 #ifndef VOID | |
28 #define VOID void | |
29 #endif | |
30 | |
31 typedef LONG NTSTATUS; | |
32 typedef NTSTATUS *PNTSTATUS; | |
33 | |
34 typedef short CSHORT; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
26045
diff
changeset
|
35 typedef CSHORT *PCSHORT; |
1 | 36 |
37 typedef WCHAR * PWCHAR; | |
38 | |
39 /* NT lowlevel Strings (handled by Rtl* functions in NTDLL) | |
40 * If they are zero terminated, Length does not include the terminating 0. | |
41 */ | |
42 | |
25794
2c8cdb9123b8
Fix a ton of illegal identifiers. Identifiers starting with __ or _ and a
diego
parents:
24422
diff
changeset
|
43 typedef struct STRING { |
1 | 44 USHORT Length; |
45 USHORT MaximumLength; | |
46 PSTR Buffer; | |
47 } STRING,*PSTRING,ANSI_STRING,*PANSI_STRING; | |
48 | |
25794
2c8cdb9123b8
Fix a ton of illegal identifiers. Identifiers starting with __ or _ and a
diego
parents:
24422
diff
changeset
|
49 typedef struct CSTRING { |
1 | 50 USHORT Length; |
51 USHORT MaximumLength; | |
52 PCSTR Buffer; | |
53 } CSTRING,*PCSTRING; | |
54 | |
25794
2c8cdb9123b8
Fix a ton of illegal identifiers. Identifiers starting with __ or _ and a
diego
parents:
24422
diff
changeset
|
55 typedef struct UNICODE_STRING { |
1 | 56 USHORT Length; /* bytes */ |
57 USHORT MaximumLength; /* bytes */ | |
58 PWSTR Buffer; | |
59 } UNICODE_STRING,*PUNICODE_STRING; | |
60 | |
61 /* | |
62 Objects | |
63 */ | |
64 | |
65 #define OBJ_INHERIT 0x00000002L | |
66 #define OBJ_PERMANENT 0x00000010L | |
67 #define OBJ_EXCLUSIVE 0x00000020L | |
68 #define OBJ_CASE_INSENSITIVE 0x00000040L | |
69 #define OBJ_OPENIF 0x00000080L | |
70 #define OBJ_OPENLINK 0x00000100L | |
71 #define OBJ_KERNEL_HANDLE 0x00000200L | |
72 #define OBJ_VALID_ATTRIBUTES 0x000003F2L | |
73 | |
25794
2c8cdb9123b8
Fix a ton of illegal identifiers. Identifiers starting with __ or _ and a
diego
parents:
24422
diff
changeset
|
74 typedef struct OBJECT_ATTRIBUTES |
1 | 75 { ULONG Length; |
76 HANDLE RootDirectory; | |
77 PUNICODE_STRING ObjectName; | |
78 ULONG Attributes; | |
79 PVOID SecurityDescriptor; /* type SECURITY_DESCRIPTOR */ | |
80 PVOID SecurityQualityOfService; /* type SECURITY_QUALITY_OF_SERVICE */ | |
81 } OBJECT_ATTRIBUTES; | |
82 | |
83 typedef OBJECT_ATTRIBUTES *POBJECT_ATTRIBUTES; | |
84 | |
85 #define InitializeObjectAttributes(p,n,a,r,s) \ | |
86 { (p)->Length = sizeof(OBJECT_ATTRIBUTES); \ | |
87 (p)->RootDirectory = r; \ | |
88 (p)->Attributes = a; \ | |
89 (p)->ObjectName = n; \ | |
90 (p)->SecurityDescriptor = s; \ | |
91 (p)->SecurityQualityOfService = NULL; \ | |
92 } | |
93 | |
94 | |
95 #ifdef __cplusplus | |
96 } | |
97 #endif | |
98 | |
99 #include "poppack.h" | |
100 | |
26045 | 101 #endif /* MPLAYER_NTDEF_H */ |