2 * Win32 definitions for Windows NT
4 * Copyright 1996 Alexandre Julliard
19 /* On Windows winnt.h depends on a few windef.h types and macros and thus
20 * is not self-contained. Furthermore windef.h includes winnt.h so that it
21 * would be pointless to try to use winnt.h directly.
22 * But for Wine and Winelib I decided to make winnt.h self-contained by
23 * moving these definitions to winnt.h. It makes no difference to Winelib
24 * programs since they are not using winnt.h directly anyway, and it allows
25 * us to use winnt.h and get a minimal set of definitions.
28 /**** Some Wine specific definitions *****/
30 /* Architecture dependent settings. */
31 /* These are hardcoded to avoid dependencies on config.h in Winelib apps. */
33 # undef WORDS_BIGENDIAN
34 # undef BITFIELDS_BIGENDIAN
35 # define ALLOW_UNALIGNED_ACCESS
36 #elif defined(__sparc__)
37 # define WORDS_BIGENDIAN
38 # define BITFIELDS_BIGENDIAN
39 # undef ALLOW_UNALIGNED_ACCESS
40 #elif defined(__PPC__)
41 # define WORDS_BIGENDIAN
42 # define BITFIELDS_BIGENDIAN
43 # undef ALLOW_UNALIGNED_ACCESS
44 #elif !defined(RC_INVOKED)
45 # error Unknown CPU architecture!
49 /* Calling conventions definitions */
55 # if defined(__GNUC__) && ((__GNUC__ > 2) || ((__GNUC__ == 2) && (__GNUC_MINOR__ >= 7)))
56 # define __stdcall __attribute__((__stdcall__))
57 # define __cdecl __attribute__((__cdecl__))
59 # error You need gcc >= 2.7 to build Wine on a 386
60 # endif /* __GNUC__ */
67 #define pascal __stdcall
68 #define _pascal __stdcall
69 #define _stdcall __stdcall
70 #define _fastcall __stdcall
71 #define __fastcall __stdcall
72 #define __export __stdcall
74 #define _cdecl __cdecl
91 #define CALLBACK __stdcall
92 #define WINAPI __stdcall
93 #define APIPRIVATE __stdcall
94 #define PASCAL __stdcall
96 #define _CDECL __cdecl
97 #define WINAPIV __cdecl
98 #define APIENTRY WINAPI
101 /* Macro for structure packing and more. */
104 #define WINE_PACKED __attribute__((packed))
105 #define WINE_UNUSED __attribute__((unused))
106 #define WINE_NORETURN __attribute__((noreturn))
108 #define WINE_PACKED /* nothing */
109 #define WINE_UNUSED /* nothing */
110 #define WINE_NORETURN /* nothing */
113 /* Anonymous union/struct handling */
116 # define NONAMELESSSTRUCT
117 # define NONAMELESSUNION
119 /* Anonymous struct support starts with gcc/g++ 2.96 */
120 # if !defined(NONAMELESSSTRUCT) && defined(__GNUC__) && ((__GNUC__ < 2) || ((__GNUC__ == 2) && (__GNUC_MINOR__ < 96)))
121 # define NONAMELESSSTRUCT
123 /* Anonymous unions support starts with gcc 2.96/g++ 2.95 */
124 # if !defined(NONAMELESSUNION) && defined(__GNUC__) && ((__GNUC__ < 2) || ((__GNUC__ == 2) && ((__GNUC_MINOR__ < 95) || ((__GNUC_MINOR__ == 95) && !defined(__cplusplus)))))
125 # define NONAMELESSUNION
129 #ifndef NONAMELESSSTRUCT
130 #define DUMMYSTRUCTNAME
131 #define DUMMYSTRUCTNAME1
132 #define DUMMYSTRUCTNAME2
133 #define DUMMYSTRUCTNAME3
134 #define DUMMYSTRUCTNAME4
135 #define DUMMYSTRUCTNAME5
136 #else /* !defined(NONAMELESSSTRUCT) */
137 #define DUMMYSTRUCTNAME s
138 #define DUMMYSTRUCTNAME1 s1
139 #define DUMMYSTRUCTNAME2 s2
140 #define DUMMYSTRUCTNAME3 s3
141 #define DUMMYSTRUCTNAME4 s4
142 #define DUMMYSTRUCTNAME5 s5
143 #endif /* !defined(NONAMELESSSTRUCT) */
145 #ifndef NONAMELESSUNION
146 #define DUMMYUNIONNAME
147 #define DUMMYUNIONNAME1
148 #define DUMMYUNIONNAME2
149 #define DUMMYUNIONNAME3
150 #define DUMMYUNIONNAME4
151 #define DUMMYUNIONNAME5
152 #define DUMMYUNIONNAME6
153 #define DUMMYUNIONNAME7
154 #define DUMMYUNIONNAME8
155 #else /* !defined(NONAMELESSUNION) */
156 #define DUMMYUNIONNAME u
157 #define DUMMYUNIONNAME1 u1
158 #define DUMMYUNIONNAME2 u2
159 #define DUMMYUNIONNAME3 u3
160 #define DUMMYUNIONNAME4 u4
161 #define DUMMYUNIONNAME5 u5
162 #define DUMMYUNIONNAME6 u6
163 #define DUMMYUNIONNAME7 u7
164 #define DUMMYUNIONNAME8 u8
165 #endif /* !defined(NONAMELESSUNION) */
168 /**** Parts of windef.h that are needed here *****/
170 /* Misc. constants. */
176 #define NULL ((void*)0)
201 /* Standard data types */
202 typedef const void *PCVOID
, *LPCVOID
;
203 typedef int BOOL
, *PBOOL
, *LPBOOL
;
204 typedef unsigned char BYTE
, *PBYTE
, *LPBYTE
;
205 typedef unsigned char UCHAR
, *PUCHAR
;
206 typedef unsigned short USHORT
, *PUSHORT
, *LPUSHORT
;
207 typedef unsigned short WORD
, *PWORD
, *LPWORD
;
208 typedef int INT
, *PINT
, *LPINT
;
209 typedef unsigned int UINT
, *PUINT
, *LPUINT
;
210 typedef unsigned long DWORD
, *PDWORD
, *LPDWORD
;
211 typedef unsigned long ULONG
, *PULONG
, *LPULONG
;
212 typedef float FLOAT
, *PFLOAT
, *LPFLOAT
;
213 typedef double DOUBLE
, *PDOUBLE
, *LPDOUBLE
;
217 /**** winnt.h proper *****/
219 /* Microsoft's macros for declaring functions */
222 # define EXTERN_C extern "C"
224 # define EXTERN_C extern
228 #define STDMETHODCALLTYPE __stdcall
229 #define STDMETHODVCALLTYPE __cdecl
230 #define STDAPICALLTYPE __stdcall
231 #define STDAPIVCALLTYPE __cdecl
233 #define STDAPI EXTERN_C HRESULT STDAPICALLTYPE
234 #define STDAPI_(type) EXTERN_C type STDAPICALLTYPE
235 #define STDMETHODIMP HRESULT STDMETHODCALLTYPE
236 #define STDMETHODIMP_(type) type STDMETHODCALLTYPE
237 #define STDAPIV EXTERN_C HRESULT STDAPIVCALLTYPE
238 #define STDAPIV_(type) EXTERN_C type STDAPIVCALLTYPE
239 #define STDMETHODIMPV HRESULT STDMETHODVCALLTYPE
240 #define STDMETHODIMPV_(type) type STDMETHODVCALLTYPE
243 /* Define the basic types */
247 typedef VOID
*PVOID
, *LPVOID
;
248 typedef BYTE BOOLEAN
, *PBOOLEAN
;
249 typedef char CHAR
, *PCHAR
;
250 typedef short SHORT
, *PSHORT
;
251 typedef long LONG
, *PLONG
, *LPLONG
;
253 /* Some systems might have wchar_t, but we really need 16 bit characters */
254 #ifndef WINE_WCHAR_DEFINED
255 #ifdef WINE_UNICODE_NATIVE
256 typedef wchar_t WCHAR
, *PWCHAR
;
258 typedef unsigned short WCHAR
, *PWCHAR
;
260 #define WINE_WCHAR_DEFINED
263 /* 'Extended/Wide' numerical types */
266 typedef __int64 LONGLONG
, *PLONGLONG
;
267 typedef __uint64 ULONGLONG
, *PULONGLONG
;
272 typedef ULONGLONG DWORDLONG
, *PDWORDLONG
;
275 /* ANSI string types */
276 typedef CHAR
*PCH
, *LPCH
;
277 typedef const CHAR
*PCCH
, *LPCCH
;
278 typedef CHAR
*PSTR
, *LPSTR
;
279 typedef const CHAR
*PCSTR
, *LPCSTR
;
281 /* Unicode string types */
282 typedef WCHAR
*PWCH
, *LPWCH
;
283 typedef const WCHAR
*PCWCH
, *LPCWCH
;
284 typedef WCHAR
*PWSTR
, *LPWSTR
;
285 typedef const WCHAR
*PCWSTR
, *LPCWSTR
;
287 /* Neutral character and string types */
288 /* These are only defined for Winelib, i.e. _not_ defined for
289 * the emulator. The reason is they depend on the UNICODE
290 * macro which only exists in the user's code.
293 # ifdef WINE_UNICODE_REWRITE
295 /* Use this if your compiler does not provide a 16bit wchar_t type.
296 * Note that you will need to specify -fwritable-strings or an option
298 * In C++ both WINE_UNICODE_TEXT('c') and WINE_UNICODE_TEXT("str") are
299 * supported, but only the string form can be supported in C.
301 EXTERN_C
unsigned short* wine_rewrite_s4tos2(const wchar_t* str4
);
303 inline WCHAR
* wine_unicode_text(const wchar_t* str4
)
305 return (WCHAR
*)wine_rewrite_s4tos2(str4
);
307 inline WCHAR
wine_unicode_text(wchar_t chr4
)
311 # define WINE_UNICODE_TEXT(x) wine_unicode_text(L##x)
312 # else /* __cplusplus */
313 # define WINE_UNICODE_TEXT(x) ((WCHAR*)wine_rewrite_s4tos2(L##x))
314 # endif /* __cplusplus */
316 # else /* WINE_UNICODE_REWRITE */
318 /* Define WINE_UNICODE_NATIVE if:
319 * - your compiler provides a 16bit wchar_t type, e.g. gcc >= 2.96 with
320 * -fshort-wchar option
321 * - or if you decide to use the native 32bit Unix wchar_t type. Be aware
322 * though that the Wine APIs only support 16bit WCHAR characters for
323 * binary compatibility reasons.
324 * - or define nothing at all if you don't use Unicode, and blissfully
325 * ignore the issue :-)
327 # define WINE_UNICODE_TEXT(string) L##string
329 # endif /* WINE_UNICODE_REWRITE */
332 typedef WCHAR TCHAR
, *PTCHAR
;
333 typedef LPWSTR PTSTR
, LPTSTR
;
334 typedef LPCWSTR PCTSTR
, LPCTSTR
;
335 # define __TEXT(string) WINE_UNICODE_TEXT(string)
337 typedef CHAR TCHAR
, *PTCHAR
;
338 typedef LPSTR PTSTR
, LPTSTR
;
339 typedef LPCSTR PCTSTR
, LPCTSTR
;
340 # define __TEXT(string) string
341 # endif /* UNICODE */
342 # define TEXT(quote) __TEXT(quote)
343 #endif /* __WINE__ */
345 /* Misc common WIN32 types */
346 typedef LONG HRESULT
;
347 typedef DWORD LCID
, *PLCID
;
349 typedef DWORD EXECUTION_STATE
;
353 /* FIXME: Wine does not compile with strict on, therefore strict
354 * handles are presently only usable on machines where sizeof(UINT) ==
355 * sizeof(void*). HANDLEs are supposed to be void* but a large amount
356 * of WINE code operates on HANDLES as if they are UINTs. So to WINE
357 * they exist as UINTs but to the Winelib user who turns on strict,
358 * they exist as void*. If there is a size difference between UINT and
359 * void* then things get ugly.
361 * Here is the plan to convert Wine to STRICT:
363 * Types will be converted one at a time by volunteers who will compile
364 * Wine with STRICT turned on. Handles that have not been converted yet
365 * will be declared with DECLARE_OLD_HANDLE. Converted handles are
366 * declared with DECLARE_HANDLE.
367 * See the bug report 90 for more details:
368 * http://wine.codeweavers.com/bugzilla/show_bug.cgi?id=90
371 * when compiling Wine we always treat HANDLE as an UINT. Then when
372 * we're ready we'll remove the '!defined(__WINE__)' (the equivalent
373 * of converting it from DECLARE_OLD_HANDLE to DECLARE_HANDLE).
375 #if defined(STRICT) && !defined(__WINE__)
376 typedef VOID
* HANDLE
;
377 #define DECLARE_OLD_HANDLE(a) \
378 typedef struct a##__ { int unused; } *a; \
379 typedef a *P##a, *LP##a
383 #define DECLARE_OLD_HANDLE(a) \
385 typedef a *P##a, *LP##a
387 typedef HANDLE
*PHANDLE
, *LPHANDLE
;
390 #define DECLARE_HANDLE(a) \
391 typedef struct a##__ { int unused; } *a; \
392 typedef a *P##a, *LP##a
394 #define DECLARE_HANDLE(a) \
396 typedef a *P##a, *LP##a
400 #include "pshpack1.h"
403 /* Argument 1 passed to the DllEntryProc. */
404 #define DLL_PROCESS_DETACH 0 /* detach process (unload library) */
405 #define DLL_PROCESS_ATTACH 1 /* attach process (load library) */
406 #define DLL_THREAD_ATTACH 2 /* attach new thread */
407 #define DLL_THREAD_DETACH 3 /* detach thread */
410 /* u.x.wProcessorArchitecture (NT) */
411 #define PROCESSOR_ARCHITECTURE_INTEL 0
412 #define PROCESSOR_ARCHITECTURE_MIPS 1
413 #define PROCESSOR_ARCHITECTURE_ALPHA 2
414 #define PROCESSOR_ARCHITECTURE_PPC 3
415 #define PROCESSOR_ARCHITECTURE_SHX 4
416 #define PROCESSOR_ARCHITECTURE_ARM 5
417 #define PROCESSOR_ARCHITECTURE_UNKNOWN 0xFFFF
419 /* dwProcessorType */
420 #define PROCESSOR_INTEL_386 386
421 #define PROCESSOR_INTEL_486 486
422 #define PROCESSOR_INTEL_PENTIUM 586
423 #define PROCESSOR_INTEL_860 860
424 #define PROCESSOR_MIPS_R2000 2000
425 #define PROCESSOR_MIPS_R3000 3000
426 #define PROCESSOR_MIPS_R4000 4000
427 #define PROCESSOR_ALPHA_21064 21064
428 #define PROCESSOR_PPC_601 601
429 #define PROCESSOR_PPC_603 603
430 #define PROCESSOR_PPC_604 604
431 #define PROCESSOR_PPC_620 620
432 #define PROCESSOR_HITACHI_SH3 10003
433 #define PROCESSOR_HITACHI_SH3E 10004
434 #define PROCESSOR_HITACHI_SH4 10005
435 #define PROCESSOR_MOTOROLA_821 821
436 #define PROCESSOR_SHx_SH3 103
437 #define PROCESSOR_SHx_SH4 104
438 #define PROCESSOR_STRONGARM 2577
439 #define PROCESSOR_ARM720 1824 /* 0x720 */
440 #define PROCESSOR_ARM820 2080 /* 0x820 */
441 #define PROCESSOR_ARM920 2336 /* 0x920 */
442 #define PROCESSOR_ARM_7TDMI 70001
444 typedef struct _MEMORY_BASIC_INFORMATION
447 LPVOID AllocationBase
;
448 DWORD AllocationProtect
;
453 } MEMORY_BASIC_INFORMATION
,*LPMEMORY_BASIC_INFORMATION
,*PMEMORY_BASIC_INFORMATION
;
455 #define PAGE_NOACCESS 0x01
456 #define PAGE_READONLY 0x02
457 #define PAGE_READWRITE 0x04
458 #define PAGE_WRITECOPY 0x08
459 #define PAGE_EXECUTE 0x10
460 #define PAGE_EXECUTE_READ 0x20
461 #define PAGE_EXECUTE_READWRITE 0x40
462 #define PAGE_EXECUTE_WRITECOPY 0x80
463 #define PAGE_GUARD 0x100
464 #define PAGE_NOCACHE 0x200
466 #define MEM_COMMIT 0x00001000
467 #define MEM_RESERVE 0x00002000
468 #define MEM_DECOMMIT 0x00004000
469 #define MEM_RELEASE 0x00008000
470 #define MEM_FREE 0x00010000
471 #define MEM_PRIVATE 0x00020000
472 #define MEM_MAPPED 0x00040000
473 #define MEM_RESET 0x00080000
474 #define MEM_TOP_DOWN 0x00100000
476 #define MEM_SYSTEM 0x80000000
479 #define SEC_FILE 0x00800000
480 #define SEC_IMAGE 0x01000000
481 #define SEC_RESERVE 0x04000000
482 #define SEC_COMMIT 0x08000000
483 #define SEC_NOCACHE 0x10000000
484 #define MEM_IMAGE SEC_IMAGE
489 #define MINSHORT 0x8000
490 #define MAXSHORT 0x7fff
491 #define MINLONG 0x80000000
492 #define MAXLONG 0x7fffffff
494 #define MAXWORD 0xffff
495 #define MAXDWORD 0xffffffff
497 #define FIELD_OFFSET(type, field) \
498 ((LONG)(INT)&(((type *)0)->field))
500 #define CONTAINING_RECORD(address, type, field) \
501 ((type *)((PCHAR)(address) - (PCHAR)(&((type *)0)->field)))
505 typedef struct _LIST_ENTRY
{
506 struct _LIST_ENTRY
*Flink
;
507 struct _LIST_ENTRY
*Blink
;
508 } LIST_ENTRY
, *PLIST_ENTRY
;
510 typedef struct _SINGLE_LIST_ENTRY
{
511 struct _SINGLE_LIST_ENTRY
*Next
;
512 } SINGLE_LIST_ENTRY
, *PSINGLE_LIST_ENTRY
;
516 #define HEAP_NO_SERIALIZE 0x00000001
517 #define HEAP_GROWABLE 0x00000002
518 #define HEAP_GENERATE_EXCEPTIONS 0x00000004
519 #define HEAP_ZERO_MEMORY 0x00000008
520 #define HEAP_REALLOC_IN_PLACE_ONLY 0x00000010
521 #define HEAP_TAIL_CHECKING_ENABLED 0x00000020
522 #define HEAP_FREE_CHECKING_ENABLED 0x00000040
523 #define HEAP_DISABLE_COALESCE_ON_FREE 0x00000080
524 #define HEAP_CREATE_ALIGN_16 0x00010000
525 #define HEAP_CREATE_ENABLE_TRACING 0x00020000
527 /* This flag allows it to create heaps shared by all processes under win95,
528 FIXME: correct name */
529 #define HEAP_SHARED 0x04000000
531 #define HEAP_WINE_SEGPTR 0x10000000 /* Not a Win32 flag */
532 #define HEAP_WINE_CODESEG 0x20000000 /* Not a Win32 flag */
533 #define HEAP_WINE_CODE16SEG 0x40000000 /* Not a Win32 flag */
535 /* Processor feature flags. */
536 #define PF_FLOATING_POINT_PRECISION_ERRATA 0
537 #define PF_FLOATING_POINT_EMULATED 1
538 #define PF_COMPARE_EXCHANGE_DOUBLE 2
539 #define PF_MMX_INSTRUCTIONS_AVAILABLE 3
540 #define PF_PPC_MOVEMEM_64BIT_OK 4
541 #define PF_ALPHA_BYTE_INSTRUCTIONS 5
542 #define PF_XMMI_INSTRUCTIONS_AVAILABLE 6
543 #define PF_AMD3D_INSTRUCTIONS_AVAILABLE 7
544 #define PF_RDTSC_INSTRUCTION_AVAILABLE 8
547 /* Execution state flags */
548 #define ES_SYSTEM_REQUIRED 0x00000001
549 #define ES_DISPLAY_REQUIRED 0x00000002
550 #define ES_USER_PRESENT 0x00000004
551 #define ES_CONTINUOUS 0x80000000
553 /* The Win32 register context */
555 /* CONTEXT is the CPU-dependent context; it should be used */
556 /* wherever a platform-specific context is needed (e.g. exception */
557 /* handling, Win32 register functions). */
559 /* CONTEXT86 is the i386-specific context; it should be used */
560 /* wherever only a 386 context makes sense (e.g. DOS interrupts, */
561 /* Win16 register functions), so that this code can be compiled */
562 /* on all platforms. */
564 #define SIZE_OF_80387_REGISTERS 80
566 typedef struct _FLOATING_SAVE_AREA
575 BYTE RegisterArea
[SIZE_OF_80387_REGISTERS
];
577 } FLOATING_SAVE_AREA
, *PFLOATING_SAVE_AREA
;
579 typedef struct _CONTEXT86
583 /* These are selected by CONTEXT_DEBUG_REGISTERS */
591 /* These are selected by CONTEXT_FLOATING_POINT */
592 FLOATING_SAVE_AREA FloatSave
;
594 /* These are selected by CONTEXT_SEGMENTS */
600 /* These are selected by CONTEXT_INTEGER */
608 /* These are selected by CONTEXT_CONTROL */
617 #define CONTEXT_X86 0x00010000
618 #define CONTEXT_i386 CONTEXT_X86
619 #define CONTEXT_i486 CONTEXT_X86
621 #define CONTEXT86_CONTROL (CONTEXT_i386 | 0x0001) /* SS:SP, CS:IP, FLAGS, BP */
622 #define CONTEXT86_INTEGER (CONTEXT_i386 | 0x0002) /* AX, BX, CX, DX, SI, DI */
623 #define CONTEXT86_SEGMENTS (CONTEXT_i386 | 0x0004) /* DS, ES, FS, GS */
624 #define CONTEXT86_FLOATING_POINT (CONTEXT_i386 | 0x0008L) /* 387 state */
625 #define CONTEXT86_DEBUG_REGISTERS (CONTEXT_i386 | 0x0010L) /* DB 0-3,6,7 */
626 #define CONTEXT86_FULL (CONTEXT86_CONTROL | CONTEXT86_INTEGER | CONTEXT86_SEGMENTS)
628 /* i386 context definitions */
631 #define CONTEXT_CONTROL CONTEXT86_CONTROL
632 #define CONTEXT_INTEGER CONTEXT86_INTEGER
633 #define CONTEXT_SEGMENTS CONTEXT86_SEGMENTS
634 #define CONTEXT_FLOATING_POINT CONTEXT86_FLOATING_POINT
635 #define CONTEXT_DEBUG_REGISTERS CONTEXT86_DEBUG_REGISTERS
636 #define CONTEXT_FULL CONTEXT86_FULL
638 typedef CONTEXT86 CONTEXT
;
640 #endif /* __i386__ */
642 /* Alpha context definitions */
645 #define CONTEXT_ALPHA 0x00020000
647 #define CONTEXT_CONTROL (CONTEXT_ALPHA | 0x00000001L)
648 #define CONTEXT_FLOATING_POINT (CONTEXT_ALPHA | 0x00000002L)
649 #define CONTEXT_INTEGER (CONTEXT_ALPHA | 0x00000004L)
650 #define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_FLOATING_POINT | CONTEXT_INTEGER)
652 typedef struct _CONTEXT
654 /* selected by CONTEXT_FLOATING_POINT */
688 /* selected by CONTEXT_INTEGER */
722 /* selected by CONTEXT_FLOATING_POINT */
726 /* selected by CONTEXT_CONTROL */
733 #define _QUAD_PSR_OFFSET HighSoftFpcr
734 #define _QUAD_FLAGS_OFFSET HighFir
738 /* Mips context definitions */
741 #define CONTEXT_R4000 0x00010000
743 #define CONTEXT_CONTROL (CONTEXT_R4000 | 0x00000001)
744 #define CONTEXT_FLOATING_POINT (CONTEXT_R4000 | 0x00000002)
745 #define CONTEXT_INTEGER (CONTEXT_R4000 | 0x00000004)
747 #define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_FLOATING_POINT | CONTEXT_INTEGER)
749 typedef struct _CONTEXT
752 /* These are selected by CONTEXT_FLOATING_POINT */
786 /* These are selected by CONTEXT_INTEGER */
822 /* These are selected by CONTEXT_FLOATING_POINT */
825 /* These are selected by CONTEXT_CONTROL */
835 /* PowerPC context definitions */
838 #define CONTEXT_CONTROL 0x0001
839 #define CONTEXT_FLOATING_POINT 0x0002
840 #define CONTEXT_INTEGER 0x0004
841 #define CONTEXT_DEBUG_REGISTERS 0x0008
842 #define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_FLOATING_POINT | CONTEXT_INTEGER)
846 /* These are selected by CONTEXT_FLOATING_POINT */
881 /* These are selected by CONTEXT_INTEGER */
918 /* These are selected by CONTEXT_CONTROL */
927 /* These are selected by CONTEXT_DEBUG_REGISTERS */
938 typedef struct _STACK_FRAME_HEADER
955 } STACK_FRAME_HEADER
,*PSTACK_FRAME_HEADER
;
964 * There is no official CONTEXT structure defined for the SPARC
965 * architecture, so I just made one up.
967 * This structure is valid only for 32-bit SPARC architectures,
968 * not for 64-bit SPARC.
970 * Note that this structure contains only the 'top-level' registers;
971 * the rest of the register window chain is not visible.
973 * The layout follows the Solaris 'prgregset_t' structure.
977 #define CONTEXT_SPARC 0x10000000
979 #define CONTEXT_CONTROL (CONTEXT_SPARC | 0x00000001)
980 #define CONTEXT_FLOATING_POINT (CONTEXT_SPARC | 0x00000002)
981 #define CONTEXT_INTEGER (CONTEXT_SPARC | 0x00000004)
983 #define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_FLOATING_POINT | CONTEXT_INTEGER)
985 typedef struct _CONTEXT
989 /* These are selected by CONTEXT_INTEGER */
1023 /* These are selected by CONTEXT_CONTROL */
1031 /* FIXME: floating point registers missing */
1035 #endif /* __sparc__ */
1037 #if !defined(CONTEXT_FULL) && !defined(RC_INVOKED)
1038 #error You need to define a CONTEXT for your CPU
1041 typedef CONTEXT
*PCONTEXT
;
1045 /* Macros for easier access to i386 context registers */
1047 #define AX_reg(context) (*(WORD*)&(context)->Eax)
1048 #define BX_reg(context) (*(WORD*)&(context)->Ebx)
1049 #define CX_reg(context) (*(WORD*)&(context)->Ecx)
1050 #define DX_reg(context) (*(WORD*)&(context)->Edx)
1051 #define SI_reg(context) (*(WORD*)&(context)->Esi)
1052 #define DI_reg(context) (*(WORD*)&(context)->Edi)
1053 #define BP_reg(context) (*(WORD*)&(context)->Ebp)
1055 #define AL_reg(context) (*(BYTE*)&(context)->Eax)
1056 #define AH_reg(context) (*((BYTE*)&(context)->Eax + 1))
1057 #define BL_reg(context) (*(BYTE*)&(context)->Ebx)
1058 #define BH_reg(context) (*((BYTE*)&(context)->Ebx + 1))
1059 #define CL_reg(context) (*(BYTE*)&(context)->Ecx)
1060 #define CH_reg(context) (*((BYTE*)&(context)->Ecx + 1))
1061 #define DL_reg(context) (*(BYTE*)&(context)->Edx)
1062 #define DH_reg(context) (*((BYTE*)&(context)->Edx + 1))
1064 #define SET_CFLAG(context) ((context)->EFlags |= 0x0001)
1065 #define RESET_CFLAG(context) ((context)->EFlags &= ~0x0001)
1066 #define SET_ZFLAG(context) ((context)->EFlags |= 0x0040)
1067 #define RESET_ZFLAG(context) ((context)->EFlags &= ~0x0040)
1068 #define ISV86(context) ((context)->EFlags & 0x00020000)
1071 /* Macros to retrieve the current context */
1073 #ifdef NEED_UNDERSCORE_PREFIX
1074 # define __ASM_NAME(name) "_" name
1076 # define __ASM_NAME(name) name
1079 #ifdef NEED_TYPE_IN_DEF
1080 # define __ASM_FUNC(name) ".def " __ASM_NAME(name) "; .scl 2; .type 32; .endef"
1082 # define __ASM_FUNC(name) ".type " __ASM_NAME(name) ",@function"
1086 # define __ASM_GLOBAL_FUNC(name,code) \
1087 __asm__( ".align 4\n\t" \
1088 ".globl " __ASM_NAME(#name) "\n\t" \
1089 __ASM_FUNC(#name) "\n" \
1090 __ASM_NAME(#name) ":\n\t" \
1092 #else /* __GNUC__ */
1093 # define __ASM_GLOBAL_FUNC(name,code) \
1094 void __asm_dummy_##name(void) { \
1095 asm( ".align 4\n\t" \
1096 ".globl " __ASM_NAME(#name) "\n\t" \
1097 __ASM_FUNC(#name) "\n" \
1098 __ASM_NAME(#name) ":\n\t" \
1101 #endif /* __GNUC__ */
1105 #define _DEFINE_REGS_ENTRYPOINT( name, fn, args ) \
1106 __ASM_GLOBAL_FUNC( name, \
1107 "call " __ASM_NAME("CALL32_Regs") "\n\t" \
1108 ".long " __ASM_NAME(#fn) "\n\t" \
1109 ".byte " #args ", " #args )
1110 #define DEFINE_REGS_ENTRYPOINT_0( name, fn ) \
1111 extern void WINAPI name(void); \
1112 _DEFINE_REGS_ENTRYPOINT( name, fn, 0 )
1113 #define DEFINE_REGS_ENTRYPOINT_1( name, fn, t1 ) \
1114 extern void WINAPI name( t1 a1 ); \
1115 _DEFINE_REGS_ENTRYPOINT( name, fn, 4 )
1116 #define DEFINE_REGS_ENTRYPOINT_2( name, fn, t1, t2 ) \
1117 extern void WINAPI name( t1 a1, t2 a2 ); \
1118 _DEFINE_REGS_ENTRYPOINT( name, fn, 8 )
1119 #define DEFINE_REGS_ENTRYPOINT_3( name, fn, t1, t2, t3 ) \
1120 extern void WINAPI name( t1 a1, t2 a2, t3 a3 ); \
1121 _DEFINE_REGS_ENTRYPOINT( name, fn, 12 )
1122 #define DEFINE_REGS_ENTRYPOINT_4( name, fn, t1, t2, t3, t4 ) \
1123 extern void WINAPI name( t1 a1, t2 a2, t3 a3, t4 a4 ); \
1124 _DEFINE_REGS_ENTRYPOINT( name, fn, 16 )
1126 #endif /* __i386__ */
1129 /* FIXME: use getcontext() to retrieve full context */
1130 #define _GET_CONTEXT \
1132 do { memset(&context, 0, sizeof(CONTEXT)); \
1133 context.ContextFlags = CONTEXT_CONTROL; \
1134 context.pc = (DWORD)__builtin_return_address(0); \
1137 #define DEFINE_REGS_ENTRYPOINT_0( name, fn ) \
1138 void WINAPI name ( void ) \
1139 { _GET_CONTEXT; fn( &context ); }
1140 #define DEFINE_REGS_ENTRYPOINT_1( name, fn, t1 ) \
1141 void WINAPI name ( t1 a1 ) \
1142 { _GET_CONTEXT; fn( a1, &context ); }
1143 #define DEFINE_REGS_ENTRYPOINT_2( name, fn, t1, t2 ) \
1144 void WINAPI name ( t1 a1, t2 a2 ) \
1145 { _GET_CONTEXT; fn( a1, a2, &context ); }
1146 #define DEFINE_REGS_ENTRYPOINT_3( name, fn, t1, t2, t3 ) \
1147 void WINAPI name ( t1 a1, t2 a2, t3 a3 ) \
1148 { _GET_CONTEXT; fn( a1, a2, a3, &context ); }
1149 #define DEFINE_REGS_ENTRYPOINT_4( name, fn, t1, t2, t3, t4 ) \
1150 void WINAPI name ( t1 a1, t2 a2, t3 a3, t4 a4 ) \
1151 { _GET_CONTEXT; fn( a1, a2, a3, a4, &context ); }
1153 #endif /* __sparc__ */
1157 /* FIXME: use getcontext() to retrieve full context */
1158 #define _GET_CONTEXT \
1160 do { memset(&context, 0, sizeof(CONTEXT)); \
1161 context.ContextFlags = CONTEXT_CONTROL; \
1164 #define DEFINE_REGS_ENTRYPOINT_0( name, fn ) \
1165 void WINAPI name ( void ) \
1166 { _GET_CONTEXT; fn( &context ); }
1167 #define DEFINE_REGS_ENTRYPOINT_1( name, fn, t1 ) \
1168 void WINAPI name ( t1 a1 ) \
1169 { _GET_CONTEXT; fn( a1, &context ); }
1170 #define DEFINE_REGS_ENTRYPOINT_2( name, fn, t1, t2 ) \
1171 void WINAPI name ( t1 a1, t2 a2 ) \
1172 { _GET_CONTEXT; fn( a1, a2, &context ); }
1173 #define DEFINE_REGS_ENTRYPOINT_3( name, fn, t1, t2, t3 ) \
1174 void WINAPI name ( t1 a1, t2 a2, t3 a3 ) \
1175 { _GET_CONTEXT; fn( a1, a2, a3, &context ); }
1176 #define DEFINE_REGS_ENTRYPOINT_4( name, fn, t1, t2, t3, t4 ) \
1177 void WINAPI name ( t1 a1, t2 a2, t3 a3, t4 a4 ) \
1178 { _GET_CONTEXT; fn( a1, a2, a3, a4, &context ); }
1180 #endif /* __PPC__ */
1183 #ifndef DEFINE_REGS_ENTRYPOINT_0
1184 #error You need to define DEFINE_REGS_ENTRYPOINT macros for your CPU
1187 /* Constructor functions */
1190 # define DECL_GLOBAL_CONSTRUCTOR(func) \
1191 static void func(void) __attribute__((constructor)); \
1192 static void func(void)
1193 #else /* __GNUC__ */
1195 # define DECL_GLOBAL_CONSTRUCTOR(func) \
1196 static void __dummy_init_##func(void) { \
1197 asm(".section .init,\"ax\"\n\t" \
1198 "call " #func "\n\t" \
1200 static void func(void)
1201 # else /* __i386__ */
1202 # error You must define the DECL_GLOBAL_CONSTRUCTOR macro for your platform
1204 #endif /* __GNUC__ */
1206 /* Segment register access */
1210 # define __DEFINE_GET_SEG(seg) \
1211 extern inline unsigned short __get_##seg(void) \
1212 { unsigned short res; __asm__("movw %%" #seg ",%w0" : "=r"(res)); return res; }
1213 # define __DEFINE_SET_SEG(seg) \
1214 extern inline void __set_##seg(int val) { __asm__("movw %w0,%%" #seg : : "r" (val)); }
1215 # else /* __GNUC__ */
1216 # define __DEFINE_GET_SEG(seg) extern unsigned short __get_##seg(void);
1217 # define __DEFINE_SET_SEG(seg) extern void __set_##seg(unsigned int);
1218 # endif /* __GNUC__ */
1219 #else /* __i386__ */
1220 # define __DEFINE_GET_SEG(seg) inline static unsigned short __get_##seg(void) { return 0; }
1221 # define __DEFINE_SET_SEG(seg) /* nothing */
1222 #endif /* __i386__ */
1224 __DEFINE_GET_SEG(cs
)
1225 __DEFINE_GET_SEG(ds
)
1226 __DEFINE_GET_SEG(es
)
1227 __DEFINE_GET_SEG(fs
)
1228 __DEFINE_GET_SEG(gs
)
1229 __DEFINE_GET_SEG(ss
)
1230 __DEFINE_SET_SEG(fs
)
1231 __DEFINE_SET_SEG(gs
)
1232 #undef __DEFINE_GET_SEG
1233 #undef __DEFINE_SET_SEG
1235 #endif /* __WINE__ */
1243 #define MAKELCID(l, s) (MAKELONG(l, s))
1245 #define MAKELANGID(p, s) ((((WORD)(s))<<10) | (WORD)(p))
1246 #define PRIMARYLANGID(l) ((WORD)(l) & 0x3ff)
1247 #define SUBLANGID(l) ((WORD)(l) >> 10)
1249 #define LANGIDFROMLCID(lcid) ((WORD)(lcid))
1250 #define SORTIDFROMLCID(lcid) ((WORD)((((DWORD)(lcid)) >> 16) & 0x0f))
1252 #define LANG_SYSTEM_DEFAULT (MAKELANGID(LANG_NEUTRAL, SUBLANG_SYS_DEFAULT))
1253 #define LANG_USER_DEFAULT (MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT))
1254 #define LOCALE_SYSTEM_DEFAULT (MAKELCID(LANG_SYSTEM_DEFAULT, SORT_DEFAULT))
1255 #define LOCALE_USER_DEFAULT (MAKELCID(LANG_USER_DEFAULT, SORT_DEFAULT))
1256 #define LOCALE_NEUTRAL (MAKELCID(MAKELANGID(LANG_NEUTRAL,SUBLANG_NEUTRAL),SORT_DEFAULT))
1258 /* FIXME: are the symbolic names correct for LIDs: 0x17, 0x20, 0x28,
1259 * 0x2a, 0x2b, 0x2c, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35,
1260 * 0x37, 0x39, 0x3a, 0x3b, 0x3c, 0x3e, 0x3f, 0x41, 0x43, 0x44,
1261 * 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e,
1264 #define LANG_NEUTRAL 0x00
1265 #define LANG_AFRIKAANS 0x36
1266 #define LANG_ALBANIAN 0x1c
1267 #define LANG_ARABIC 0x01
1268 #define LANG_ARMENIAN 0x2b
1269 #define LANG_ASSAMESE 0x4d
1270 #define LANG_AZERI 0x2c
1271 #define LANG_BASQUE 0x2d
1272 #define LANG_BENGALI 0x45
1273 #define LANG_BULGARIAN 0x02
1274 #define LANG_BYELORUSSIAN 0x23
1275 #define LANG_CATALAN 0x03
1276 #define LANG_CHINESE 0x04
1277 #define LANG_SERBO_CROATIAN 0x1a
1278 #define LANG_CROATIAN LANG_SERBO_CROATIAN
1279 #define LANG_SERBIAN LANG_SERBO_CROATIAN
1280 #define LANG_CZECH 0x05
1281 #define LANG_DANISH 0x06
1282 #define LANG_DUTCH 0x13
1283 #define LANG_ENGLISH 0x09
1284 #define LANG_ESTONIAN 0x25
1285 #define LANG_FAEROESE 0x38
1286 #define LANG_FARSI 0x29
1287 #define LANG_FINNISH 0x0b
1288 #define LANG_FRENCH 0x0c
1289 #define LANG_GAELIC 0x3c
1290 #define LANG_GEORGIAN 0x37
1291 #define LANG_GERMAN 0x07
1292 #define LANG_GREEK 0x08
1293 #define LANG_GUJARATI 0x47
1294 #define LANG_HEBREW 0x0D
1295 #define LANG_HINDI 0x39
1296 #define LANG_HUNGARIAN 0x0e
1297 #define LANG_ICELANDIC 0x0f
1298 #define LANG_INDONESIAN 0x21
1299 #define LANG_ITALIAN 0x10
1300 #define LANG_JAPANESE 0x11
1301 #define LANG_KANNADA 0x4b
1302 #define LANG_KAZAKH 0x3f
1303 #define LANG_KONKANI 0x57
1304 #define LANG_KOREAN 0x12
1305 #define LANG_LATVIAN 0x26
1306 #define LANG_LITHUANIAN 0x27
1307 #define LANG_MACEDONIAN 0x2f
1308 #define LANG_MALAY 0x3e
1309 #define LANG_MALAYALAM 0x4c
1310 #define LANG_MALTESE 0x3a
1311 #define LANG_MAORI 0x28
1312 #define LANG_MARATHI 0x4e
1313 #define LANG_NORWEGIAN 0x14
1314 #define LANG_ORIYA 0x48
1315 #define LANG_POLISH 0x15
1316 #define LANG_PORTUGUESE 0x16
1317 #define LANG_PUNJABI 0x46
1318 #define LANG_RHAETO_ROMANCE 0x17
1319 #define LANG_ROMANIAN 0x18
1320 #define LANG_RUSSIAN 0x19
1321 #define LANG_SAAMI 0x3b
1322 #define LANG_SANSKRIT 0x4f
1323 #define LANG_SLOVAK 0x1b
1324 #define LANG_SLOVENIAN 0x24
1325 #define LANG_SORBIAN 0x2e
1326 #define LANG_SPANISH 0x0a
1327 #define LANG_SUTU 0x30
1328 #define LANG_SWAHILI 0x41
1329 #define LANG_SWEDISH 0x1d
1330 #define LANG_TAMIL 0x49
1331 #define LANG_TATAR 0x44
1332 #define LANG_TELUGU 0x4a
1333 #define LANG_THAI 0x1e
1334 #define LANG_TSONGA 0x31
1335 #define LANG_TSWANA 0x32
1336 #define LANG_TURKISH 0x1f
1337 #define LANG_UKRAINIAN 0x22
1338 #define LANG_URDU 0x20
1339 #define LANG_UZBEK 0x43
1340 #define LANG_VENDA 0x33
1341 #define LANG_VIETNAMESE 0x2a
1342 #define LANG_XHOSA 0x34
1343 #define LANG_ZULU 0x35
1344 /* non standard; keep the number high enough (but < 0xff) */
1345 #define LANG_ESPERANTO 0x8f
1346 #define LANG_WALON 0x90
1347 #define LANG_CORNISH 0x91
1348 #define LANG_WELSH 0x92
1349 #define LANG_BRETON 0x93
1351 /* Sublanguage definitions */
1352 #define SUBLANG_NEUTRAL 0x00 /* language neutral */
1353 #define SUBLANG_DEFAULT 0x01 /* user default */
1354 #define SUBLANG_SYS_DEFAULT 0x02 /* system default */
1356 #define SUBLANG_ARABIC 0x01
1357 #define SUBLANG_ARABIC_SAUDI_ARABIA 0x01
1358 #define SUBLANG_ARABIC_IRAQ 0x02
1359 #define SUBLANG_ARABIC_EGYPT 0x03
1360 #define SUBLANG_ARABIC_LIBYA 0x04
1361 #define SUBLANG_ARABIC_ALGERIA 0x05
1362 #define SUBLANG_ARABIC_MOROCCO 0x06
1363 #define SUBLANG_ARABIC_TUNISIA 0x07
1364 #define SUBLANG_ARABIC_OMAN 0x08
1365 #define SUBLANG_ARABIC_YEMEN 0x09
1366 #define SUBLANG_ARABIC_SYRIA 0x0a
1367 #define SUBLANG_ARABIC_JORDAN 0x0b
1368 #define SUBLANG_ARABIC_LEBANON 0x0c
1369 #define SUBLANG_ARABIC_KUWAIT 0x0d
1370 #define SUBLANG_ARABIC_UAE 0x0e
1371 #define SUBLANG_ARABIC_BAHRAIN 0x0f
1372 #define SUBLANG_ARABIC_QATAR 0x10
1373 #define SUBLANG_CHINESE_TRADITIONAL 0x01
1374 #define SUBLANG_CHINESE_SIMPLIFIED 0x02
1375 #define SUBLANG_CHINESE_HONGKONG 0x03
1376 #define SUBLANG_CHINESE_SINGAPORE 0x04
1377 #define SUBLANG_CHINESE_MACAU 0x05
1378 #define SUBLANG_DUTCH 0x01
1379 #define SUBLANG_DUTCH_BELGIAN 0x02
1380 #define SUBLANG_DUTCH_SURINAM 0x03
1381 #define SUBLANG_ENGLISH_US 0x01
1382 #define SUBLANG_ENGLISH_UK 0x02
1383 #define SUBLANG_ENGLISH_AUS 0x03
1384 #define SUBLANG_ENGLISH_CAN 0x04
1385 #define SUBLANG_ENGLISH_NZ 0x05
1386 #define SUBLANG_ENGLISH_EIRE 0x06
1387 #define SUBLANG_ENGLISH_SAFRICA 0x07
1388 #define SUBLANG_ENGLISH_JAMAICA 0x08
1389 #define SUBLANG_ENGLISH_CARRIBEAN 0x09
1390 #define SUBLANG_ENGLISH_BELIZE 0x0a
1391 #define SUBLANG_ENGLISH_TRINIDAD 0x0b
1392 #define SUBLANG_ENGLISH_ZIMBABWE 0x0c
1393 #define SUBLANG_ENGLISH_PHILIPPINES 0x0d
1394 #define SUBLANG_FRENCH 0x01
1395 #define SUBLANG_FRENCH_BELGIAN 0x02
1396 #define SUBLANG_FRENCH_CANADIAN 0x03
1397 #define SUBLANG_FRENCH_SWISS 0x04
1398 #define SUBLANG_FRENCH_LUXEMBOURG 0x05
1399 #define SUBLANG_FRENCH_MONACO 0x06
1400 #define SUBLANG_GERMAN 0x01
1401 #define SUBLANG_GERMAN_SWISS 0x02
1402 #define SUBLANG_GERMAN_AUSTRIAN 0x03
1403 #define SUBLANG_GERMAN_LUXEMBOURG 0x04
1404 #define SUBLANG_GERMAN_LIECHTENSTEIN 0x05
1405 #define SUBLANG_ITALIAN 0x01
1406 #define SUBLANG_ITALIAN_SWISS 0x02
1407 #define SUBLANG_KOREAN 0x01
1408 #define SUBLANG_KOREAN_JOHAB 0x02
1409 #define SUBLANG_NORWEGIAN_BOKMAL 0x01
1410 #define SUBLANG_NORWEGIAN_NYNORSK 0x02
1411 #define SUBLANG_PORTUGUESE 0x02
1412 #define SUBLANG_PORTUGUESE_BRAZILIAN 0x01
1413 #define SUBLANG_SPANISH 0x01
1414 #define SUBLANG_SPANISH_MEXICAN 0x02
1415 #define SUBLANG_SPANISH_MODERN 0x03
1416 #define SUBLANG_SPANISH_GUATEMALA 0x04
1417 #define SUBLANG_SPANISH_COSTARICA 0x05
1418 #define SUBLANG_SPANISH_PANAMA 0x06
1419 #define SUBLANG_SPANISH_DOMINICAN 0x07
1420 #define SUBLANG_SPANISH_VENEZUELA 0x08
1421 #define SUBLANG_SPANISH_COLOMBIA 0x09
1422 #define SUBLANG_SPANISH_PERU 0x0a
1423 #define SUBLANG_SPANISH_ARGENTINA 0x0b
1424 #define SUBLANG_SPANISH_ECUADOR 0x0c
1425 #define SUBLANG_SPANISH_CHILE 0x0d
1426 #define SUBLANG_SPANISH_URUGUAY 0x0e
1427 #define SUBLANG_SPANISH_PARAGUAY 0x0f
1428 #define SUBLANG_SPANISH_BOLIVIA 0x10
1429 #define SUBLANG_SPANISH_EL_SALVADOR 0x11
1430 #define SUBLANG_SPANISH_HONDURAS 0x12
1431 #define SUBLANG_SPANISH_NICARAGUA 0x13
1432 #define SUBLANG_SPANISH_PUERTO_RICO 0x14
1433 /* FIXME: I don't know the symbolic names for those */
1434 #define SUBLANG_ROMANIAN 0x01
1435 #define SUBLANG_ROMANIAN_MOLDAVIA 0x02
1436 #define SUBLANG_RUSSIAN 0x01
1437 #define SUBLANG_RUSSIAN_MOLDAVIA 0x02
1438 #define SUBLANG_CROATIAN 0x01
1439 #define SUBLANG_SERBIAN 0x02
1440 #define SUBLANG_SERBIAN_LATIN 0x03
1441 #define SUBLANG_SWEDISH 0x01
1442 #define SUBLANG_SWEDISH_FINLAND 0x02
1443 #define SUBLANG_LITHUANIAN 0x01
1444 #define SUBLANG_LITHUANIAN_CLASSIC 0x02
1445 #define SUBLANG_AZERI 0x01
1446 #define SUBLANG_AZERI_CYRILLIC 0x02
1447 #define SUBLANG_GAELIC 0x01
1448 #define SUBLANG_GAELIC_SCOTTISH 0x02
1449 #define SUBLANG_GAELIC_MANX 0x03
1450 #define SUBLANG_MALAY 0x01
1451 #define SUBLANG_MALAY_BRUNEI_DARUSSALAM 0x02
1452 #define SUBLANG_UZBEK 0x01
1453 #define SUBLANG_UZBEK_CYRILLIC 0x02
1454 #define SUBLANG_URDU_PAKISTAN 0x01
1462 #define SORT_DEFAULT 0x0
1463 #define SORT_JAPANESE_XJIS 0x0
1464 #define SORT_JAPANESE_UNICODE 0x1
1465 #define SORT_CHINESE_BIG5 0x0
1466 #define SORT_CHINESE_UNICODE 0x1
1467 #define SORT_KOREAN_KSC 0x0
1468 #define SORT_KOREAN_UNICODE 0x1
1473 * Definitions for IsTextUnicode()
1476 #define IS_TEXT_UNICODE_ASCII16 0x0001
1477 #define IS_TEXT_UNICODE_STATISTICS 0x0002
1478 #define IS_TEXT_UNICODE_CONTROLS 0x0004
1479 #define IS_TEXT_UNICODE_SIGNATURE 0x0008
1480 #define IS_TEXT_UNICODE_UNICODE_MASK 0x000F
1481 #define IS_TEXT_UNICODE_REVERSE_ASCII16 0x0010
1482 #define IS_TEXT_UNICODE_REVERSE_STATISTICS 0x0020
1483 #define IS_TEXT_UNICODE_REVERSE_CONTROLS 0x0040
1484 #define IS_TEXT_UNICODE_REVERSE_SIGNATURE 0x0080
1485 #define IS_TEXT_UNICODE_REVERSE_MASK 0x00F0
1486 #define IS_TEXT_UNICODE_ILLEGAL_CHARS 0x0100
1487 #define IS_TEXT_UNICODE_ODD_LENGTH 0x0200
1488 #define IS_TEXT_UNICODE_DBCS_LEADBYTE 0x0400
1489 #define IS_TEXT_UNICODE_NOT_UNICODE_MASK 0x0F00
1490 #define IS_TEXT_UNICODE_NULL_BYTES 0x1000
1491 #define IS_TEXT_UNICODE_NOT_ASCII_MASK 0xF000
1499 #define STATUS_SUCCESS 0x00000000
1500 #define STATUS_WAIT_0 0x00000000
1501 #define STATUS_ABANDONED_WAIT_0 0x00000080
1502 #define STATUS_USER_APC 0x000000C0
1503 #define STATUS_TIMEOUT 0x00000102
1504 #define STATUS_PENDING 0x00000103
1506 #define STATUS_GUARD_PAGE_VIOLATION 0x80000001
1507 #define STATUS_DATATYPE_MISALIGNMENT 0x80000002
1508 #define STATUS_BREAKPOINT 0x80000003
1509 #define STATUS_SINGLE_STEP 0x80000004
1510 #define STATUS_BUFFER_OVERFLOW 0x80000005
1511 #define STATUS_NO_MORE_FILES 0x80000006
1512 #define STATUS_WAKE_SYSTEM_DEBUGGER 0x80000007
1514 #define STATUS_HANDLES_CLOSED 0x8000000A
1515 #define STATUS_NO_INHERITANCE 0x8000000B
1516 #define STATUS_GUID_SUBSTITUTION_MADE 0x8000000C
1517 #define STATUS_PARTIAL_COPY 0x8000000D
1518 #define STATUS_DEVICE_PAPER_EMPTY 0x8000000E
1519 #define STATUS_DEVICE_POWERED_OFF 0x8000000F
1520 #define STATUS_DEVICE_OFF_LINE 0x80000010
1521 #define STATUS_DEVICE_BUSY 0x80000011
1522 #define STATUS_NO_MORE_EAS 0x80000012
1523 #define STATUS_INVALID_EA_NAME 0x80000013
1524 #define STATUS_EA_LIST_INCONSISTENT 0x80000014
1525 #define STATUS_INVALID_EA_FLAG 0x80000015
1526 #define STATUS_VERIFY_REQUIRED 0x80000016
1527 #define STATUS_EXTRANEOUS_INFORMATION 0x80000017
1528 #define STATUS_RXACT_COMMIT_NECESSARY 0x80000018
1529 #define STATUS_NO_MORE_ENTRIES 0x8000001A
1530 #define STATUS_FILEMARK_DETECTED 0x8000001B
1531 #define STATUS_MEDIA_CHANGED 0x8000001C
1532 #define STATUS_BUS_RESET 0x8000001D
1533 #define STATUS_END_OF_MEDIA 0x8000001E
1534 #define STATUS_BEGINNING_OF_MEDIA 0x8000001F
1535 #define STATUS_MEDIA_CHECK 0x80000020
1536 #define STATUS_SETMARK_DETECTED 0x80000021
1537 #define STATUS_NO_DATA_DETECTED 0x80000022
1538 #define STATUS_REDIRECTOR_HAS_OPEN_HANDLES 0x80000023
1539 #define STATUS_SERVER_HAS_OPEN_HANDLES 0x80000024
1540 #define STATUS_ALREADY_DISCONNECTED 0x80000025
1541 #define STATUS_LONGJUMP 0x80000026
1543 #define STATUS_UNSUCCESSFUL 0xC0000001
1544 #define STATUS_NOT_IMPLEMENTED 0xC0000002
1545 #define STATUS_INVALID_INFO_CLASS 0xC0000003
1546 #define STATUS_INFO_LENGTH_MISMATCH 0xC0000004
1547 #define STATUS_ACCESS_VIOLATION 0xC0000005
1548 #define STATUS_IN_PAGE_ERROR 0xC0000006
1549 #define STATUS_PAGEFILE_QUOTA 0xC0000007
1550 #define STATUS_INVALID_HANDLE 0xC0000008
1551 #define STATUS_BAD_INITIAL_STACK 0xC0000009
1552 #define STATUS_BAD_INITIAL_PC 0xC000000A
1553 #define STATUS_INVALID_CID 0xC000000B
1554 #define STATUS_TIMER_NOT_CANCELED 0xC000000C
1555 #define STATUS_INVALID_PARAMETER 0xC000000D
1556 #define STATUS_NO_SUCH_DEVICE 0xC000000E
1557 #define STATUS_NO_SUCH_FILE 0xC000000F
1558 #define STATUS_INVALID_DEVICE_REQUEST 0xC0000010
1559 #define STATUS_END_OF_FILE 0xC0000011
1560 #define STATUS_WRONG_VOLUME 0xC0000012
1561 #define STATUS_NO_MEDIA_IN_DEVICE 0xC0000013
1562 #define STATUS_UNRECOGNIZED_MEDIA 0xC0000014
1563 #define STATUS_NONEXISTENT_SECTOR 0xC0000015
1564 #define STATUS_MORE_PROCESSING_REQUIRED 0xC0000016
1565 #define STATUS_NO_MEMORY 0xC0000017
1566 #define STATUS_CONFLICTING_ADDRESSES 0xC0000018
1567 #define STATUS_NOT_MAPPED_VIEW 0xC0000019
1568 #define STATUS_UNABLE_TO_FREE_VM 0xC000001A
1569 #define STATUS_UNABLE_TO_DELETE_SECTION 0xC000001B
1570 #define STATUS_INVALID_SYSTEM_SERVICE 0xC000001C
1571 #define STATUS_ILLEGAL_INSTRUCTION 0xC000001D
1572 #define STATUS_INVALID_LOCK_SEQUENCE 0xC000001E
1573 #define STATUS_INVALID_VIEW_SIZE 0xC000001F
1574 #define STATUS_INVALID_FILE_FOR_SECTION 0xC0000020
1575 #define STATUS_ALREADY_COMMITTED 0xC0000021
1576 #define STATUS_ACCESS_DENIED 0xC0000022
1577 #define STATUS_BUFFER_TOO_SMALL 0xC0000023
1578 #define STATUS_OBJECT_TYPE_MISMATCH 0xC0000024
1579 #define STATUS_NONCONTINUABLE_EXCEPTION 0xC0000025
1580 #define STATUS_INVALID_DISPOSITION 0xC0000026
1581 #define STATUS_UNWIND 0xC0000027
1582 #define STATUS_BAD_STACK 0xC0000028
1583 #define STATUS_INVALID_UNWIND_TARGET 0xC0000029
1584 #define STATUS_NOT_LOCKED 0xC000002A
1585 #define STATUS_PARITY_ERROR 0xC000002B
1586 #define STATUS_UNABLE_TO_DECOMMIT_VM 0xC000002C
1587 #define STATUS_NOT_COMMITTED 0xC000002D
1588 #define STATUS_INVALID_PORT_ATTRIBUTES 0xC000002E
1589 #define STATUS_PORT_MESSAGE_TOO_LONG 0xC000002F
1590 #define STATUS_INVALID_PARAMETER_MIX 0xC0000030
1591 #define STATUS_INVALID_QUOTA_LOWER 0xC0000031
1592 #define STATUS_DISK_CORRUPT_ERROR 0xC0000032
1593 #define STATUS_OBJECT_NAME_INVALID 0xC0000033
1594 #define STATUS_OBJECT_NAME_NOT_FOUND 0xC0000034
1595 #define STATUS_OBJECT_NAME_COLLISION 0xC0000035
1596 #define STATUS_PORT_DISCONNECTED 0xC0000037
1597 #define STATUS_DEVICE_ALREADY_ATTACHED 0xC0000038
1598 #define STATUS_OBJECT_PATH_INVALID 0xC0000039
1599 #define STATUS_OBJECT_PATH_NOT_FOUND 0xC000003A
1600 #define STATUS_PATH_SYNTAX_BAD 0xC000003B
1601 #define STATUS_DATA_OVERRUN 0xC000003C
1602 #define STATUS_DATA_LATE_ERROR 0xC000003D
1603 #define STATUS_DATA_ERROR 0xC000003E
1604 #define STATUS_CRC_ERROR 0xC000003F
1605 #define STATUS_SECTION_TOO_BIG 0xC0000040
1606 #define STATUS_PORT_CONNECTION_REFUSED 0xC0000041
1607 #define STATUS_INVALID_PORT_HANDLE 0xC0000042
1608 #define STATUS_SHARING_VIOLATION 0xC0000043
1609 #define STATUS_QUOTA_EXCEEDED 0xC0000044
1610 #define STATUS_INVALID_PAGE_PROTECTION 0xC0000045
1611 #define STATUS_MUTANT_NOT_OWNED 0xC0000046
1612 #define STATUS_SEMAPHORE_LIMIT_EXCEEDED 0xC0000047
1613 #define STATUS_PORT_ALREADY_SET 0xC0000048
1614 #define STATUS_SUSPEND_COUNT_EXCEEDED 0xC000004A
1615 #define STATUS_LOCK_NOT_GRANTED 0xC0000054 /* FIXME: not sure */
1616 #define STATUS_FILE_LOCK_CONFLICT 0xC0000055 /* FIXME: not sure */
1617 #define STATUS_UNKNOWN_REVISION 0xC0000058
1618 #define STATUS_INVALID_SECURITY_DESCR 0xC0000079
1619 #define STATUS_DISK_FULL 0xC000007F
1620 #define STATUS_SECTION_NOT_EXTENDED 0xC0000087
1621 #define STATUS_ARRAY_BOUNDS_EXCEEDED 0xC000008C
1622 #define STATUS_FLOAT_DENORMAL_OPERAND 0xC000008D
1623 #define STATUS_FLOAT_DIVIDE_BY_ZERO 0xC000008E
1624 #define STATUS_FLOAT_INEXACT_RESULT 0xC000008F
1625 #define STATUS_FLOAT_INVALID_OPERATION 0xC0000090
1626 #define STATUS_FLOAT_OVERFLOW 0xC0000091
1627 #define STATUS_FLOAT_STACK_CHECK 0xC0000092
1628 #define STATUS_FLOAT_UNDERFLOW 0xC0000093
1629 #define STATUS_INTEGER_DIVIDE_BY_ZERO 0xC0000094
1630 #define STATUS_INTEGER_OVERFLOW 0xC0000095
1631 #define STATUS_PRIVILEGED_INSTRUCTION 0xC0000096
1632 #define STATUS_MEDIA_WRITE_PROTECTED 0xC00000A2
1633 #define STATUS_INSTANCE_NOT_AVAILABLE 0xC00000AB
1634 #define STATUS_PIPE_NOT_AVAILABLE 0xC00000AC
1635 #define STATUS_INVALID_PIPE_STATE 0xC00000AD
1636 #define STATUS_PIPE_BUSY 0xC00000AE
1637 #define STATUS_ILLEGAL_FUNCTION 0xC00000AF
1638 #define STATUS_PIPE_DISCONNECTED 0xC00000B0
1639 #define STATUS_PIPE_CLOSING 0xC00000B1
1640 #define STATUS_PIPE_CONNECTED 0xC00000B2
1641 #define STATUS_PIPE_LISTENING 0xC00000B3
1642 #define STATUS_INVALID_READ_MODE 0xC00000B4
1643 #define STATUS_INVALID_PARAMETER_2 0xC00000F0
1644 #define STATUS_STACK_OVERFLOW 0xC00000FD
1645 #define STATUS_DIRECTORY_NOT_EMPTY 0xC0000101
1646 #define STATUS_TOO_MANY_OPENED_FILES 0xC000011F
1647 #define STATUS_CONTROL_C_EXIT 0xC000013A
1648 #define STATUS_PIPE_BROKEN 0xC000014B
1649 #define STATUS_NOT_REGISTRY_FILE 0xC000015C
1650 #define STATUS_PARTITION_FAILURE 0xC0000172
1651 #define STATUS_INVALID_BLOCK_LENGTH 0xC0000173
1652 #define STATUS_DEVICE_NOT_PARTITIONED 0xC0000174
1653 #define STATUS_UNABLE_TO_LOCK_MEDIA 0xC0000175
1654 #define STATUS_UNABLE_TO_UNLOAD_MEDIA 0xC0000176
1655 #define STATUS_EOM_OVERFLOW 0xC0000177
1656 #define STATUS_NO_MEDIA 0xC0000178
1657 #define STATUS_NO_SUCH_MEMBER 0xC000017A
1658 #define STATUS_INVALID_MEMBER 0xC000017B
1659 #define STATUS_KEY_DELETED 0xC000017C
1660 #define STATUS_NO_LOG_SPACE 0xC000017D
1661 #define STATUS_TOO_MANY_SIDS 0xC000017E
1662 #define STATUS_LM_CROSS_ENCRYPTION_REQUIRED 0xC000017F
1663 #define STATUS_KEY_HAS_CHILDREN 0xC0000180
1664 #define STATUS_CHILD_MUST_BE_VOLATILE 0xC0000181
1665 #define STATUS_DEVICE_CONFIGURATION_ERROR0xC0000182
1666 #define STATUS_DRIVER_INTERNAL_ERROR 0xC0000183
1667 #define STATUS_INVALID_DEVICE_STATE 0xC0000184
1668 #define STATUS_IO_DEVICE_ERROR 0xC0000185
1669 #define STATUS_DEVICE_PROTOCOL_ERROR 0xC0000186
1670 #define STATUS_BACKUP_CONTROLLER 0xC0000187
1671 #define STATUS_LOG_FILE_FULL 0xC0000188
1672 #define STATUS_TOO_LATE 0xC0000189
1673 #define STATUS_NO_TRUST_LSA_SECRET 0xC000018A
1674 #define STATUS_NO_TRUST_SAM_ACCOUNT 0xC000018B
1675 #define STATUS_TRUSTED_DOMAIN_FAILURE 0xC000018C
1676 #define STATUS_TRUSTED_RELATIONSHIP_FAILURE 0xC000018D
1677 #define STATUS_EVENTLOG_FILE_CORRUPT 0xC000018E
1678 #define STATUS_EVENTLOG_CANT_START 0xC000018F
1679 #define STATUS_TRUST_FAILURE 0xC0000190
1680 #define STATUS_MUTANT_LIMIT_EXCEEDED 0xC0000191
1681 #define STATUS_NETLOGON_NOT_STARTED 0xC0000192
1682 #define STATUS_ACCOUNT_EXPIRED 0xC0000193
1683 #define STATUS_POSSIBLE_DEADLOCK 0xC0000194
1684 #define STATUS_NETWORK_CREDENTIAL_CONFLICT 0xC0000195
1685 #define STATUS_REMOTE_SESSION_LIMIT 0xC0000196
1686 #define STATUS_EVENTLOG_FILE_CHANGED 0xC0000197
1687 #define STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT 0xC0000198
1688 #define STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT 0xC0000199
1689 #define STATUS_NOLOGON_SERVER_TRUST_ACCOUNT 0xC000019A
1690 #define STATUS_DOMAIN_TRUST_INCONSISTENT 0xC000019B
1691 #define STATUS_FS_DRIVER_REQUIRED 0xC000019C
1693 #define STATUS_RESOURCE_LANG_NOT_FOUND 0xC0000204
1695 #define MAXIMUM_WAIT_OBJECTS 64
1696 #define MAXIMUM_SUSPEND_COUNT 127
1700 * Return values from the actual exception handlers
1703 #define ExceptionContinueExecution 0
1704 #define ExceptionContinueSearch 1
1705 #define ExceptionNestedException 2
1706 #define ExceptionCollidedUnwind 3
1709 * Return values from filters in except() and from UnhandledExceptionFilter
1712 #define EXCEPTION_EXECUTE_HANDLER 1
1713 #define EXCEPTION_CONTINUE_SEARCH 0
1714 #define EXCEPTION_CONTINUE_EXECUTION -1
1717 * From OS/2 2.0 exception handling
1718 * Win32 seems to use the same flags as ExceptionFlags in an EXCEPTION_RECORD
1721 #define EH_NONCONTINUABLE 0x01
1722 #define EH_UNWINDING 0x02
1723 #define EH_EXIT_UNWIND 0x04
1724 #define EH_STACK_INVALID 0x08
1725 #define EH_NESTED_CALL 0x10
1727 #define EXCEPTION_CONTINUABLE 0
1728 #define EXCEPTION_NONCONTINUABLE EH_NONCONTINUABLE
1731 * The exception record used by Win32 to give additional information
1732 * about exception to exception handlers.
1735 #define EXCEPTION_MAXIMUM_PARAMETERS 15
1737 typedef struct __EXCEPTION_RECORD
1739 DWORD ExceptionCode
;
1740 DWORD ExceptionFlags
;
1741 struct __EXCEPTION_RECORD
*ExceptionRecord
;
1743 LPVOID ExceptionAddress
;
1744 DWORD NumberParameters
;
1745 DWORD ExceptionInformation
[EXCEPTION_MAXIMUM_PARAMETERS
];
1746 } EXCEPTION_RECORD
, *PEXCEPTION_RECORD
;
1749 * The exception pointers structure passed to exception filters
1750 * in except() and the UnhandledExceptionFilter().
1753 typedef struct _EXCEPTION_POINTERS
1755 PEXCEPTION_RECORD ExceptionRecord
;
1756 PCONTEXT ContextRecord
;
1757 } EXCEPTION_POINTERS
, *PEXCEPTION_POINTERS
;
1761 * The exception frame, used for registering exception handlers
1762 * Win32 cares only about this, but compilers generally emit
1763 * larger exception frames for their own use.
1766 struct __EXCEPTION_FRAME
;
1768 typedef DWORD (*PEXCEPTION_HANDLER
)(PEXCEPTION_RECORD
,struct __EXCEPTION_FRAME
*,
1769 PCONTEXT
,struct __EXCEPTION_FRAME
**);
1771 typedef struct __EXCEPTION_FRAME
1773 struct __EXCEPTION_FRAME
*Prev
;
1774 PEXCEPTION_HANDLER Handler
;
1775 } EXCEPTION_FRAME
, *PEXCEPTION_FRAME
;
1777 #include "poppack.h"
1780 * function pointer to a exception filter
1783 typedef LONG
CALLBACK (*PTOP_LEVEL_EXCEPTION_FILTER
)(PEXCEPTION_POINTERS ExceptionInfo
);
1784 typedef PTOP_LEVEL_EXCEPTION_FILTER LPTOP_LEVEL_EXCEPTION_FILTER
;
1786 DWORD WINAPI
UnhandledExceptionFilter( PEXCEPTION_POINTERS epointers
);
1787 LPTOP_LEVEL_EXCEPTION_FILTER
1788 WINAPI
SetUnhandledExceptionFilter( LPTOP_LEVEL_EXCEPTION_FILTER filter
);
1790 /* status values for ContinueDebugEvent */
1791 #define DBG_CONTINUE 0x00010002
1792 #define DBG_TERMINATE_THREAD 0x40010003
1793 #define DBG_TERMINATE_PROCESS 0x40010004
1794 #define DBG_CONTROL_C 0x40010005
1795 #define DBG_CONTROL_BREAK 0x40010008
1796 #define DBG_EXCEPTION_NOT_HANDLED 0x80010001
1798 typedef struct _NT_TIB
1800 struct _EXCEPTION_REGISTRATION_RECORD
*ExceptionList
;
1808 PVOID ArbitraryUserPointer
;
1809 struct _NT_TIB
*Self
;
1814 #if defined(__i386__) && defined(__GNUC__)
1815 extern inline struct _TEB WINAPI
*NtCurrentTeb(void);
1816 extern inline struct _TEB WINAPI
*NtCurrentTeb(void)
1819 __asm__(".byte 0x64\n\tmovl (0x18),%0" : "=r" (teb
));
1823 extern struct _TEB WINAPI
*NtCurrentTeb(void);
1828 * File formats definitions
1831 typedef struct _IMAGE_DOS_HEADER
{
1832 WORD e_magic
; /* 00: MZ Header signature */
1833 WORD e_cblp
; /* 02: Bytes on last page of file */
1834 WORD e_cp
; /* 04: Pages in file */
1835 WORD e_crlc
; /* 06: Relocations */
1836 WORD e_cparhdr
; /* 08: Size of header in paragraphs */
1837 WORD e_minalloc
; /* 0a: Minimum extra paragraphs needed */
1838 WORD e_maxalloc
; /* 0c: Maximum extra paragraphs needed */
1839 WORD e_ss
; /* 0e: Initial (relative) SS value */
1840 WORD e_sp
; /* 10: Initial SP value */
1841 WORD e_csum
; /* 12: Checksum */
1842 WORD e_ip
; /* 14: Initial IP value */
1843 WORD e_cs
; /* 16: Initial (relative) CS value */
1844 WORD e_lfarlc
; /* 18: File address of relocation table */
1845 WORD e_ovno
; /* 1a: Overlay number */
1846 WORD e_res
[4]; /* 1c: Reserved words */
1847 WORD e_oemid
; /* 24: OEM identifier (for e_oeminfo) */
1848 WORD e_oeminfo
; /* 26: OEM information; e_oemid specific */
1849 WORD e_res2
[10]; /* 28: Reserved words */
1850 DWORD e_lfanew
; /* 3c: Offset to extended header */
1851 } IMAGE_DOS_HEADER
, *PIMAGE_DOS_HEADER
;
1853 #define IMAGE_DOS_SIGNATURE 0x5A4D /* MZ */
1854 #define IMAGE_OS2_SIGNATURE 0x454E /* NE */
1855 #define IMAGE_OS2_SIGNATURE_LE 0x454C /* LE */
1856 #define IMAGE_OS2_SIGNATURE_LX 0x584C /* LX */
1857 #define IMAGE_VXD_SIGNATURE 0x454C /* LE */
1858 #define IMAGE_NT_SIGNATURE 0x00004550 /* PE00 */
1861 * This is the Windows executable (NE) header.
1862 * the name IMAGE_OS2_HEADER is misleading, but in the SDK this way.
1866 WORD ne_magic
; /* 00 NE signature 'NE' */
1867 BYTE ne_ver
; /* 02 Linker version number */
1868 BYTE ne_rev
; /* 03 Linker revision number */
1869 WORD ne_enttab
; /* 04 Offset to entry table relative to NE */
1870 WORD ne_cbenttab
; /* 06 Length of entry table in bytes */
1871 LONG ne_crc
; /* 08 Checksum */
1872 WORD ne_flags
; /* 0c Flags about segments in this file */
1873 WORD ne_autodata
; /* 0e Automatic data segment number */
1874 WORD ne_heap
; /* 10 Initial size of local heap */
1875 WORD ne_stack
; /* 12 Initial size of stack */
1876 DWORD ne_csip
; /* 14 Initial CS:IP */
1877 DWORD ne_sssp
; /* 18 Initial SS:SP */
1878 WORD ne_cseg
; /* 1c # of entries in segment table */
1879 WORD ne_cmod
; /* 1e # of entries in module reference tab. */
1880 WORD ne_cbnrestab
; /* 20 Length of nonresident-name table */
1881 WORD ne_segtab
; /* 22 Offset to segment table */
1882 WORD ne_rsrctab
; /* 24 Offset to resource table */
1883 WORD ne_restab
; /* 26 Offset to resident-name table */
1884 WORD ne_modtab
; /* 28 Offset to module reference table */
1885 WORD ne_imptab
; /* 2a Offset to imported name table */
1886 DWORD ne_nrestab
; /* 2c Offset to nonresident-name table */
1887 WORD ne_cmovent
; /* 30 # of movable entry points */
1888 WORD ne_align
; /* 32 Logical sector alignment shift count */
1889 WORD ne_cres
; /* 34 # of resource segments */
1890 BYTE ne_exetyp
; /* 36 Flags indicating target OS */
1891 BYTE ne_flagsothers
; /* 37 Additional information flags */
1892 WORD fastload_offset
; /* 38 Offset to fast load area (should be ne_pretthunks)*/
1893 WORD fastload_length
; /* 3a Length of fast load area (should be ne_psegrefbytes) */
1894 WORD ne_swaparea
; /* 3c Reserved by Microsoft */
1895 WORD ne_expver
; /* 3e Expected Windows version number */
1896 } IMAGE_OS2_HEADER
,*PIMAGE_OS2_HEADER
;
1898 typedef struct _IMAGE_VXD_HEADER
{
1913 DWORD e32_lastpagesize
;
1914 DWORD e32_fixupsize
;
1931 DWORD e32_impmodcnt
;
1937 DWORD e32_cbnrestab
;
1940 DWORD e32_debuginfo
;
1942 DWORD e32_instpreload
;
1943 DWORD e32_instdemand
;
1946 DWORD e32_winresoff
;
1947 DWORD e32_winreslen
;
1950 } IMAGE_VXD_HEADER
, *PIMAGE_VXD_HEADER
;
1953 /* These defines describe the meanings of the bits in the Characteristics
1956 #define IMAGE_FILE_RELOCS_STRIPPED 0x0001 /* No relocation info */
1957 #define IMAGE_FILE_EXECUTABLE_IMAGE 0x0002
1958 #define IMAGE_FILE_LINE_NUMS_STRIPPED 0x0004
1959 #define IMAGE_FILE_LOCAL_SYMS_STRIPPED 0x0008
1960 #define IMAGE_FILE_16BIT_MACHINE 0x0040
1961 #define IMAGE_FILE_BYTES_REVERSED_LO 0x0080
1962 #define IMAGE_FILE_32BIT_MACHINE 0x0100
1963 #define IMAGE_FILE_DEBUG_STRIPPED 0x0200
1964 #define IMAGE_FILE_SYSTEM 0x1000
1965 #define IMAGE_FILE_DLL 0x2000
1966 #define IMAGE_FILE_BYTES_REVERSED_HI 0x8000
1968 /* These are the settings of the Machine field. */
1969 #define IMAGE_FILE_MACHINE_UNKNOWN 0
1970 #define IMAGE_FILE_MACHINE_I860 0x14d
1971 #define IMAGE_FILE_MACHINE_I386 0x14c
1972 #define IMAGE_FILE_MACHINE_R3000 0x162
1973 #define IMAGE_FILE_MACHINE_R4000 0x166
1974 #define IMAGE_FILE_MACHINE_R10000 0x168
1975 #define IMAGE_FILE_MACHINE_ALPHA 0x184
1976 #define IMAGE_FILE_MACHINE_POWERPC 0x1F0
1978 #define IMAGE_SIZEOF_FILE_HEADER 20
1980 /* Possible Magic values */
1981 #define IMAGE_NT_OPTIONAL_HDR_MAGIC 0x10b
1982 #define IMAGE_ROM_OPTIONAL_HDR_MAGIC 0x107
1984 /* These are indexes into the DataDirectory array */
1985 #define IMAGE_FILE_EXPORT_DIRECTORY 0
1986 #define IMAGE_FILE_IMPORT_DIRECTORY 1
1987 #define IMAGE_FILE_RESOURCE_DIRECTORY 2
1988 #define IMAGE_FILE_EXCEPTION_DIRECTORY 3
1989 #define IMAGE_FILE_SECURITY_DIRECTORY 4
1990 #define IMAGE_FILE_BASE_RELOCATION_TABLE 5
1991 #define IMAGE_FILE_DEBUG_DIRECTORY 6
1992 #define IMAGE_FILE_DESCRIPTION_STRING 7
1993 #define IMAGE_FILE_MACHINE_VALUE 8 /* Mips */
1994 #define IMAGE_FILE_THREAD_LOCAL_STORAGE 9
1995 #define IMAGE_FILE_CALLBACK_DIRECTORY 10
1997 /* Directory Entries, indices into the DataDirectory array */
1999 #define IMAGE_DIRECTORY_ENTRY_EXPORT 0
2000 #define IMAGE_DIRECTORY_ENTRY_IMPORT 1
2001 #define IMAGE_DIRECTORY_ENTRY_RESOURCE 2
2002 #define IMAGE_DIRECTORY_ENTRY_EXCEPTION 3
2003 #define IMAGE_DIRECTORY_ENTRY_SECURITY 4
2004 #define IMAGE_DIRECTORY_ENTRY_BASERELOC 5
2005 #define IMAGE_DIRECTORY_ENTRY_DEBUG 6
2006 #define IMAGE_DIRECTORY_ENTRY_COPYRIGHT 7
2007 #define IMAGE_DIRECTORY_ENTRY_GLOBALPTR 8 /* (MIPS GP) */
2008 #define IMAGE_DIRECTORY_ENTRY_TLS 9
2009 #define IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG 10
2010 #define IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT 11
2011 #define IMAGE_DIRECTORY_ENTRY_IAT 12 /* Import Address Table */
2012 #define IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT 13
2013 #define IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR 14
2015 /* Subsystem Values */
2017 #define IMAGE_SUBSYSTEM_UNKNOWN 0
2018 #define IMAGE_SUBSYSTEM_NATIVE 1
2019 #define IMAGE_SUBSYSTEM_WINDOWS_GUI 2 /* Windows GUI subsystem */
2020 #define IMAGE_SUBSYSTEM_WINDOWS_CUI 3 /* Windows character subsystem*/
2021 #define IMAGE_SUBSYSTEM_OS2_CUI 5
2022 #define IMAGE_SUBSYSTEM_POSIX_CUI 7
2024 typedef struct _IMAGE_FILE_HEADER
{
2026 WORD NumberOfSections
;
2027 DWORD TimeDateStamp
;
2028 DWORD PointerToSymbolTable
;
2029 DWORD NumberOfSymbols
;
2030 WORD SizeOfOptionalHeader
;
2031 WORD Characteristics
;
2032 } IMAGE_FILE_HEADER
, *PIMAGE_FILE_HEADER
;
2034 typedef struct _IMAGE_DATA_DIRECTORY
{
2035 DWORD VirtualAddress
;
2037 } IMAGE_DATA_DIRECTORY
, *PIMAGE_DATA_DIRECTORY
;
2039 #define IMAGE_NUMBEROF_DIRECTORY_ENTRIES 16
2041 typedef struct _IMAGE_OPTIONAL_HEADER
{
2043 /* Standard fields */
2045 WORD Magic
; /* 0x10b or 0x107 */ /* 0x00 */
2046 BYTE MajorLinkerVersion
;
2047 BYTE MinorLinkerVersion
;
2049 DWORD SizeOfInitializedData
;
2050 DWORD SizeOfUninitializedData
;
2051 DWORD AddressOfEntryPoint
; /* 0x10 */
2055 /* NT additional fields */
2058 DWORD SectionAlignment
; /* 0x20 */
2059 DWORD FileAlignment
;
2060 WORD MajorOperatingSystemVersion
;
2061 WORD MinorOperatingSystemVersion
;
2062 WORD MajorImageVersion
;
2063 WORD MinorImageVersion
;
2064 WORD MajorSubsystemVersion
; /* 0x30 */
2065 WORD MinorSubsystemVersion
;
2066 DWORD Win32VersionValue
;
2068 DWORD SizeOfHeaders
;
2069 DWORD CheckSum
; /* 0x40 */
2071 WORD DllCharacteristics
;
2072 DWORD SizeOfStackReserve
;
2073 DWORD SizeOfStackCommit
;
2074 DWORD SizeOfHeapReserve
; /* 0x50 */
2075 DWORD SizeOfHeapCommit
;
2077 DWORD NumberOfRvaAndSizes
;
2078 IMAGE_DATA_DIRECTORY DataDirectory
[IMAGE_NUMBEROF_DIRECTORY_ENTRIES
]; /* 0x60 */
2079 } IMAGE_OPTIONAL_HEADER
, *PIMAGE_OPTIONAL_HEADER
;
2081 typedef struct _IMAGE_NT_HEADERS
{
2082 DWORD Signature
; /* "PE"\0\0 */
2083 IMAGE_FILE_HEADER FileHeader
;
2084 IMAGE_OPTIONAL_HEADER OptionalHeader
;
2085 } IMAGE_NT_HEADERS
, *PIMAGE_NT_HEADERS
;
2087 #define IMAGE_SIZEOF_SHORT_NAME 8
2089 typedef struct _IMAGE_SECTION_HEADER
{
2090 BYTE Name
[IMAGE_SIZEOF_SHORT_NAME
];
2092 DWORD PhysicalAddress
;
2095 DWORD VirtualAddress
;
2096 DWORD SizeOfRawData
;
2097 DWORD PointerToRawData
;
2098 DWORD PointerToRelocations
;
2099 DWORD PointerToLinenumbers
;
2100 WORD NumberOfRelocations
;
2101 WORD NumberOfLinenumbers
;
2102 DWORD Characteristics
;
2103 } IMAGE_SECTION_HEADER
, *PIMAGE_SECTION_HEADER
;
2105 #define IMAGE_SIZEOF_SECTION_HEADER 40
2107 #define IMAGE_FIRST_SECTION(ntheader) \
2108 ((PIMAGE_SECTION_HEADER)((LPBYTE)&((PIMAGE_NT_HEADERS)(ntheader))->OptionalHeader + \
2109 ((PIMAGE_NT_HEADERS)(ntheader))->FileHeader.SizeOfOptionalHeader))
2111 /* These defines are for the Characteristics bitfield. */
2112 /* #define IMAGE_SCN_TYPE_REG 0x00000000 - Reserved */
2113 /* #define IMAGE_SCN_TYPE_DSECT 0x00000001 - Reserved */
2114 /* #define IMAGE_SCN_TYPE_NOLOAD 0x00000002 - Reserved */
2115 /* #define IMAGE_SCN_TYPE_GROUP 0x00000004 - Reserved */
2116 /* #define IMAGE_SCN_TYPE_NO_PAD 0x00000008 - Reserved */
2117 /* #define IMAGE_SCN_TYPE_COPY 0x00000010 - Reserved */
2119 #define IMAGE_SCN_CNT_CODE 0x00000020
2120 #define IMAGE_SCN_CNT_INITIALIZED_DATA 0x00000040
2121 #define IMAGE_SCN_CNT_UNINITIALIZED_DATA 0x00000080
2123 #define IMAGE_SCN_LNK_OTHER 0x00000100
2124 #define IMAGE_SCN_LNK_INFO 0x00000200
2125 /* #define IMAGE_SCN_TYPE_OVER 0x00000400 - Reserved */
2126 #define IMAGE_SCN_LNK_REMOVE 0x00000800
2127 #define IMAGE_SCN_LNK_COMDAT 0x00001000
2129 /* 0x00002000 - Reserved */
2130 /* #define IMAGE_SCN_MEM_PROTECTED 0x00004000 - Obsolete */
2131 #define IMAGE_SCN_MEM_FARDATA 0x00008000
2133 /* #define IMAGE_SCN_MEM_SYSHEAP 0x00010000 - Obsolete */
2134 #define IMAGE_SCN_MEM_PURGEABLE 0x00020000
2135 #define IMAGE_SCN_MEM_16BIT 0x00020000
2136 #define IMAGE_SCN_MEM_LOCKED 0x00040000
2137 #define IMAGE_SCN_MEM_PRELOAD 0x00080000
2139 #define IMAGE_SCN_ALIGN_1BYTES 0x00100000
2140 #define IMAGE_SCN_ALIGN_2BYTES 0x00200000
2141 #define IMAGE_SCN_ALIGN_4BYTES 0x00300000
2142 #define IMAGE_SCN_ALIGN_8BYTES 0x00400000
2143 #define IMAGE_SCN_ALIGN_16BYTES 0x00500000 /* Default */
2144 #define IMAGE_SCN_ALIGN_32BYTES 0x00600000
2145 #define IMAGE_SCN_ALIGN_64BYTES 0x00700000
2146 /* 0x00800000 - Unused */
2148 #define IMAGE_SCN_LNK_NRELOC_OVFL 0x01000000
2151 #define IMAGE_SCN_MEM_DISCARDABLE 0x02000000
2152 #define IMAGE_SCN_MEM_NOT_CACHED 0x04000000
2153 #define IMAGE_SCN_MEM_NOT_PAGED 0x08000000
2154 #define IMAGE_SCN_MEM_SHARED 0x10000000
2155 #define IMAGE_SCN_MEM_EXECUTE 0x20000000
2156 #define IMAGE_SCN_MEM_READ 0x40000000
2157 #define IMAGE_SCN_MEM_WRITE 0x80000000
2159 #include "pshpack2.h"
2161 typedef struct _IMAGE_SYMBOL
{
2171 SHORT SectionNumber
;
2174 BYTE NumberOfAuxSymbols
;
2176 typedef IMAGE_SYMBOL
*PIMAGE_SYMBOL
;
2178 #define IMAGE_SIZEOF_SYMBOL 18
2180 typedef struct _IMAGE_LINENUMBER
{
2182 DWORD SymbolTableIndex
;
2183 DWORD VirtualAddress
;
2187 typedef IMAGE_LINENUMBER
*PIMAGE_LINENUMBER
;
2189 #define IMAGE_SIZEOF_LINENUMBER 6
2191 typedef union _IMAGE_AUX_SYMBOL
{
2203 DWORD PointerToLinenumber
;
2204 DWORD PointerToNextFunction
;
2213 BYTE Name
[IMAGE_SIZEOF_SYMBOL
];
2217 WORD NumberOfRelocations
;
2218 WORD NumberOfLinenumbers
;
2224 typedef IMAGE_AUX_SYMBOL
*PIMAGE_AUX_SYMBOL
;
2226 #define IMAGE_SIZEOF_AUX_SYMBOL 18
2228 #include "poppack.h"
2230 #define IMAGE_SYM_UNDEFINED (SHORT)0
2231 #define IMAGE_SYM_ABSOLUTE (SHORT)-1
2232 #define IMAGE_SYM_DEBUG (SHORT)-2
2234 #define IMAGE_SYM_TYPE_NULL 0x0000
2235 #define IMAGE_SYM_TYPE_VOID 0x0001
2236 #define IMAGE_SYM_TYPE_CHAR 0x0002
2237 #define IMAGE_SYM_TYPE_SHORT 0x0003
2238 #define IMAGE_SYM_TYPE_INT 0x0004
2239 #define IMAGE_SYM_TYPE_LONG 0x0005
2240 #define IMAGE_SYM_TYPE_FLOAT 0x0006
2241 #define IMAGE_SYM_TYPE_DOUBLE 0x0007
2242 #define IMAGE_SYM_TYPE_STRUCT 0x0008
2243 #define IMAGE_SYM_TYPE_UNION 0x0009
2244 #define IMAGE_SYM_TYPE_ENUM 0x000A
2245 #define IMAGE_SYM_TYPE_MOE 0x000B
2246 #define IMAGE_SYM_TYPE_BYTE 0x000C
2247 #define IMAGE_SYM_TYPE_WORD 0x000D
2248 #define IMAGE_SYM_TYPE_UINT 0x000E
2249 #define IMAGE_SYM_TYPE_DWORD 0x000F
2250 #define IMAGE_SYM_TYPE_PCODE 0x8000
2252 #define IMAGE_SYM_DTYPE_NULL 0
2253 #define IMAGE_SYM_DTYPE_POINTER 1
2254 #define IMAGE_SYM_DTYPE_FUNCTION 2
2255 #define IMAGE_SYM_DTYPE_ARRAY 3
2257 #define IMAGE_SYM_CLASS_END_OF_FUNCTION (BYTE )-1
2258 #define IMAGE_SYM_CLASS_NULL 0x0000
2259 #define IMAGE_SYM_CLASS_AUTOMATIC 0x0001
2260 #define IMAGE_SYM_CLASS_EXTERNAL 0x0002
2261 #define IMAGE_SYM_CLASS_STATIC 0x0003
2262 #define IMAGE_SYM_CLASS_REGISTER 0x0004
2263 #define IMAGE_SYM_CLASS_EXTERNAL_DEF 0x0005
2264 #define IMAGE_SYM_CLASS_LABEL 0x0006
2265 #define IMAGE_SYM_CLASS_UNDEFINED_LABEL 0x0007
2266 #define IMAGE_SYM_CLASS_MEMBER_OF_STRUCT 0x0008
2267 #define IMAGE_SYM_CLASS_ARGUMENT 0x0009
2268 #define IMAGE_SYM_CLASS_STRUCT_TAG 0x000A
2269 #define IMAGE_SYM_CLASS_MEMBER_OF_UNION 0x000B
2270 #define IMAGE_SYM_CLASS_UNION_TAG 0x000C
2271 #define IMAGE_SYM_CLASS_TYPE_DEFINITION 0x000D
2272 #define IMAGE_SYM_CLASS_UNDEFINED_STATIC 0x000E
2273 #define IMAGE_SYM_CLASS_ENUM_TAG 0x000F
2274 #define IMAGE_SYM_CLASS_MEMBER_OF_ENUM 0x0010
2275 #define IMAGE_SYM_CLASS_REGISTER_PARAM 0x0011
2276 #define IMAGE_SYM_CLASS_BIT_FIELD 0x0012
2278 #define IMAGE_SYM_CLASS_FAR_EXTERNAL 0x0044
2279 #define IMAGE_SYM_CLASS_BLOCK 0x0064
2280 #define IMAGE_SYM_CLASS_FUNCTION 0x0065
2281 #define IMAGE_SYM_CLASS_END_OF_STRUCT 0x0066
2282 #define IMAGE_SYM_CLASS_FILE 0x0067
2283 #define IMAGE_SYM_CLASS_SECTION 0x0068
2284 #define IMAGE_SYM_CLASS_WEAK_EXTERNAL 0x0069
2286 #define N_BTMASK 0x000F
2287 #define N_TMASK 0x0030
2288 #define N_TMASK1 0x00C0
2289 #define N_TMASK2 0x00F0
2293 #define BTYPE(x) ((x) & N_BTMASK)
2296 #define ISPTR(x) (((x) & N_TMASK) == (IMAGE_SYM_DTYPE_POINTER << N_BTSHFT))
2300 #define ISFCN(x) (((x) & N_TMASK) == (IMAGE_SYM_DTYPE_FUNCTION << N_BTSHFT))
2304 #define ISARY(x) (((x) & N_TMASK) == (IMAGE_SYM_DTYPE_ARRAY << N_BTSHFT))
2308 #define ISTAG(x) ((x)==IMAGE_SYM_CLASS_STRUCT_TAG || (x)==IMAGE_SYM_CLASS_UNION_TAG || (x)==IMAGE_SYM_CLASS_ENUM_TAG)
2312 #define INCREF(x) ((((x)&~N_BTMASK)<<N_TSHIFT)|(IMAGE_SYM_DTYPE_POINTER<<N_BTSHFT)|((x)&N_BTMASK))
2315 #define DECREF(x) ((((x)>>N_TSHIFT)&~N_BTMASK)|((x)&N_BTMASK))
2318 #define IMAGE_COMDAT_SELECT_NODUPLICATES 1
2319 #define IMAGE_COMDAT_SELECT_ANY 2
2320 #define IMAGE_COMDAT_SELECT_SAME_SIZE 3
2321 #define IMAGE_COMDAT_SELECT_EXACT_MATCH 4
2322 #define IMAGE_COMDAT_SELECT_ASSOCIATIVE 5
2323 #define IMAGE_COMDAT_SELECT_LARGEST 6
2324 #define IMAGE_COMDAT_SELECT_NEWEST 7
2326 #define IMAGE_WEAK_EXTERN_SEARCH_NOLIBRARY 1
2327 #define IMAGE_WEAK_EXTERN_SEARCH_LIBRARY 2
2328 #define IMAGE_WEAK_EXTERN_SEARCH_ALIAS 3
2330 /* Export module directory */
2332 typedef struct _IMAGE_EXPORT_DIRECTORY
{
2333 DWORD Characteristics
;
2334 DWORD TimeDateStamp
;
2339 DWORD NumberOfFunctions
;
2340 DWORD NumberOfNames
;
2341 DWORD AddressOfFunctions
;
2342 DWORD AddressOfNames
;
2343 DWORD AddressOfNameOrdinals
;
2344 } IMAGE_EXPORT_DIRECTORY
,*PIMAGE_EXPORT_DIRECTORY
;
2346 /* Import name entry */
2347 typedef struct _IMAGE_IMPORT_BY_NAME
{
2350 } IMAGE_IMPORT_BY_NAME
,*PIMAGE_IMPORT_BY_NAME
;
2353 typedef struct _IMAGE_THUNK_DATA
{
2355 LPBYTE ForwarderString
;
2358 PIMAGE_IMPORT_BY_NAME AddressOfData
;
2360 } IMAGE_THUNK_DATA
,*PIMAGE_THUNK_DATA
;
2362 /* Import module directory */
2364 typedef struct _IMAGE_IMPORT_DESCRIPTOR
{
2366 DWORD Characteristics
; /* 0 for terminating null import descriptor */
2367 PIMAGE_THUNK_DATA OriginalFirstThunk
; /* RVA to original unbound IAT */
2369 DWORD TimeDateStamp
; /* 0 if not bound,
2370 * -1 if bound, and real date\time stamp
2371 * in IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT
2373 * otherwise date/time stamp of DLL bound to
2376 DWORD ForwarderChain
; /* -1 if no forwarders */
2378 /* RVA to IAT (if bound this IAT has actual addresses) */
2379 PIMAGE_THUNK_DATA FirstThunk
;
2380 } IMAGE_IMPORT_DESCRIPTOR
,*PIMAGE_IMPORT_DESCRIPTOR
;
2382 #define IMAGE_ORDINAL_FLAG 0x80000000
2383 #define IMAGE_SNAP_BY_ORDINAL(Ordinal) ((Ordinal & IMAGE_ORDINAL_FLAG) != 0)
2384 #define IMAGE_ORDINAL(Ordinal) (Ordinal & 0xffff)
2386 typedef struct _IMAGE_BOUND_IMPORT_DESCRIPTOR
2388 DWORD TimeDateStamp
;
2389 WORD OffsetModuleName
;
2390 WORD NumberOfModuleForwarderRefs
;
2391 /* Array of zero or more IMAGE_BOUND_FORWARDER_REF follows */
2392 } IMAGE_BOUND_IMPORT_DESCRIPTOR
, *PIMAGE_BOUND_IMPORT_DESCRIPTOR
;
2394 typedef struct _IMAGE_BOUND_FORWARDER_REF
2396 DWORD TimeDateStamp
;
2397 WORD OffsetModuleName
;
2399 } IMAGE_BOUND_FORWARDER_REF
, *PIMAGE_BOUND_FORWARDER_REF
;
2401 typedef struct _IMAGE_BASE_RELOCATION
2403 DWORD VirtualAddress
;
2406 } IMAGE_BASE_RELOCATION
,*PIMAGE_BASE_RELOCATION
;
2408 typedef struct _IMAGE_RELOCATION
2411 DWORD VirtualAddress
;
2414 DWORD SymbolTableIndex
;
2417 typedef IMAGE_RELOCATION
*PIMAGE_RELOCATION
;
2419 #define IMAGE_SIZEOF_RELOCATION 10
2421 /* generic relocation types */
2422 #define IMAGE_REL_BASED_ABSOLUTE 0
2423 #define IMAGE_REL_BASED_HIGH 1
2424 #define IMAGE_REL_BASED_LOW 2
2425 #define IMAGE_REL_BASED_HIGHLOW 3
2426 #define IMAGE_REL_BASED_HIGHADJ 4
2427 #define IMAGE_REL_BASED_MIPS_JMPADDR 5
2428 #define IMAGE_REL_BASED_SECTION 6
2429 #define IMAGE_REL_BASED_REL 7
2430 #define IMAGE_REL_BASED_MIPS_JMPADDR16 9
2431 #define IMAGE_REL_BASED_IA64_IMM64 9 /* yes, 9 too */
2432 #define IMAGE_REL_BASED_DIR64 10
2433 #define IMAGE_REL_BASED_HIGH3ADJ 11
2435 /* I386 relocation types */
2436 #define IMAGE_REL_I386_ABSOLUTE 0
2437 #define IMAGE_REL_I386_DIR16 1
2438 #define IMAGE_REL_I386_REL16 2
2439 #define IMAGE_REL_I386_DIR32 6
2440 #define IMAGE_REL_I386_DIR32NB 7
2441 #define IMAGE_REL_I386_SEG12 9
2442 #define IMAGE_REL_I386_SECTION 10
2443 #define IMAGE_REL_I386_SECREL 11
2444 #define IMAGE_REL_I386_REL32 20
2446 /* MIPS relocation types */
2447 #define IMAGE_REL_MIPS_ABSOLUTE 0x0000
2448 #define IMAGE_REL_MIPS_REFHALF 0x0001
2449 #define IMAGE_REL_MIPS_REFWORD 0x0002
2450 #define IMAGE_REL_MIPS_JMPADDR 0x0003
2451 #define IMAGE_REL_MIPS_REFHI 0x0004
2452 #define IMAGE_REL_MIPS_REFLO 0x0005
2453 #define IMAGE_REL_MIPS_GPREL 0x0006
2454 #define IMAGE_REL_MIPS_LITERAL 0x0007
2455 #define IMAGE_REL_MIPS_SECTION 0x000A
2456 #define IMAGE_REL_MIPS_SECREL 0x000B
2457 #define IMAGE_REL_MIPS_SECRELLO 0x000C
2458 #define IMAGE_REL_MIPS_SECRELHI 0x000D
2459 #define IMAGE_REL_MIPS_JMPADDR16 0x0010
2460 #define IMAGE_REL_MIPS_REFWORDNB 0x0022
2461 #define IMAGE_REL_MIPS_PAIR 0x0025
2463 /* ALPHA relocation types */
2464 #define IMAGE_REL_ALPHA_ABSOLUTE 0x0000
2465 #define IMAGE_REL_ALPHA_REFLONG 0x0001
2466 #define IMAGE_REL_ALPHA_REFQUAD 0x0002
2467 #define IMAGE_REL_ALPHA_GPREL 0x0003
2468 #define IMAGE_REL_ALPHA_LITERAL 0x0004
2469 #define IMAGE_REL_ALPHA_LITUSE 0x0005
2470 #define IMAGE_REL_ALPHA_GPDISP 0x0006
2471 #define IMAGE_REL_ALPHA_BRADDR 0x0007
2472 #define IMAGE_REL_ALPHA_HINT 0x0008
2473 #define IMAGE_REL_ALPHA_INLINE_REFLONG 0x0009
2474 #define IMAGE_REL_ALPHA_REFHI 0x000A
2475 #define IMAGE_REL_ALPHA_REFLO 0x000B
2476 #define IMAGE_REL_ALPHA_PAIR 0x000C
2477 #define IMAGE_REL_ALPHA_MATCH 0x000D
2478 #define IMAGE_REL_ALPHA_SECTION 0x000E
2479 #define IMAGE_REL_ALPHA_SECREL 0x000F
2480 #define IMAGE_REL_ALPHA_REFLONGNB 0x0010
2481 #define IMAGE_REL_ALPHA_SECRELLO 0x0011
2482 #define IMAGE_REL_ALPHA_SECRELHI 0x0012
2483 #define IMAGE_REL_ALPHA_REFQ3 0x0013
2484 #define IMAGE_REL_ALPHA_REFQ2 0x0014
2485 #define IMAGE_REL_ALPHA_REFQ1 0x0015
2486 #define IMAGE_REL_ALPHA_GPRELLO 0x0016
2487 #define IMAGE_REL_ALPHA_GPRELHI 0x0017
2489 /* PowerPC relocation types */
2490 #define IMAGE_REL_PPC_ABSOLUTE 0x0000
2491 #define IMAGE_REL_PPC_ADDR64 0x0001
2492 #define IMAGE_REL_PPC_ADDR 0x0002
2493 #define IMAGE_REL_PPC_ADDR24 0x0003
2494 #define IMAGE_REL_PPC_ADDR16 0x0004
2495 #define IMAGE_REL_PPC_ADDR14 0x0005
2496 #define IMAGE_REL_PPC_REL24 0x0006
2497 #define IMAGE_REL_PPC_REL14 0x0007
2498 #define IMAGE_REL_PPC_TOCREL16 0x0008
2499 #define IMAGE_REL_PPC_TOCREL14 0x0009
2500 #define IMAGE_REL_PPC_ADDR32NB 0x000A
2501 #define IMAGE_REL_PPC_SECREL 0x000B
2502 #define IMAGE_REL_PPC_SECTION 0x000C
2503 #define IMAGE_REL_PPC_IFGLUE 0x000D
2504 #define IMAGE_REL_PPC_IMGLUE 0x000E
2505 #define IMAGE_REL_PPC_SECREL16 0x000F
2506 #define IMAGE_REL_PPC_REFHI 0x0010
2507 #define IMAGE_REL_PPC_REFLO 0x0011
2508 #define IMAGE_REL_PPC_PAIR 0x0012
2509 #define IMAGE_REL_PPC_SECRELLO 0x0013
2510 #define IMAGE_REL_PPC_SECRELHI 0x0014
2511 #define IMAGE_REL_PPC_GPREL 0x0015
2512 #define IMAGE_REL_PPC_TYPEMASK 0x00FF
2514 #define IMAGE_REL_PPC_NEG 0x0100
2515 #define IMAGE_REL_PPC_BRTAKEN 0x0200
2516 #define IMAGE_REL_PPC_BRNTAKEN 0x0400
2517 #define IMAGE_REL_PPC_TOCDEFN 0x0800
2519 /* SH3 ? relocation type */
2520 #define IMAGE_REL_SH3_ABSOLUTE 0x0000
2521 #define IMAGE_REL_SH3_DIRECT16 0x0001
2522 #define IMAGE_REL_SH3_DIRECT 0x0002
2523 #define IMAGE_REL_SH3_DIRECT8 0x0003
2524 #define IMAGE_REL_SH3_DIRECT8_WORD 0x0004
2525 #define IMAGE_REL_SH3_DIRECT8_LONG 0x0005
2526 #define IMAGE_REL_SH3_DIRECT4 0x0006
2527 #define IMAGE_REL_SH3_DIRECT4_WORD 0x0007
2528 #define IMAGE_REL_SH3_DIRECT4_LONG 0x0008
2529 #define IMAGE_REL_SH3_PCREL8_WORD 0x0009
2530 #define IMAGE_REL_SH3_PCREL8_LONG 0x000A
2531 #define IMAGE_REL_SH3_PCREL12_WORD 0x000B
2532 #define IMAGE_REL_SH3_STARTOF_SECTION 0x000C
2533 #define IMAGE_REL_SH3_SIZEOF_SECTION 0x000D
2534 #define IMAGE_REL_SH3_SECTION 0x000E
2535 #define IMAGE_REL_SH3_SECREL 0x000F
2536 #define IMAGE_REL_SH3_DIRECT32_NB 0x0010
2538 /* ARM (Archimedes?) relocation types */
2539 #define IMAGE_REL_ARM_ABSOLUTE 0x0000
2540 #define IMAGE_REL_ARM_ADDR 0x0001
2541 #define IMAGE_REL_ARM_ADDR32NB 0x0002
2542 #define IMAGE_REL_ARM_BRANCH24 0x0003
2543 #define IMAGE_REL_ARM_BRANCH11 0x0004
2544 #define IMAGE_REL_ARM_SECTION 0x000E
2545 #define IMAGE_REL_ARM_SECREL 0x000F
2547 /* IA64 relocation types */
2548 #define IMAGE_REL_IA64_ABSOLUTE 0x0000
2549 #define IMAGE_REL_IA64_IMM14 0x0001
2550 #define IMAGE_REL_IA64_IMM22 0x0002
2551 #define IMAGE_REL_IA64_IMM64 0x0003
2552 #define IMAGE_REL_IA64_DIR 0x0004
2553 #define IMAGE_REL_IA64_DIR64 0x0005
2554 #define IMAGE_REL_IA64_PCREL21B 0x0006
2555 #define IMAGE_REL_IA64_PCREL21M 0x0007
2556 #define IMAGE_REL_IA64_PCREL21F 0x0008
2557 #define IMAGE_REL_IA64_GPREL22 0x0009
2558 #define IMAGE_REL_IA64_LTOFF22 0x000A
2559 #define IMAGE_REL_IA64_SECTION 0x000B
2560 #define IMAGE_REL_IA64_SECREL22 0x000C
2561 #define IMAGE_REL_IA64_SECREL64I 0x000D
2562 #define IMAGE_REL_IA64_SECREL 0x000E
2563 #define IMAGE_REL_IA64_LTOFF64 0x000F
2564 #define IMAGE_REL_IA64_DIR32NB 0x0010
2565 #define IMAGE_REL_IA64_RESERVED_11 0x0011
2566 #define IMAGE_REL_IA64_RESERVED_12 0x0012
2567 #define IMAGE_REL_IA64_RESERVED_13 0x0013
2568 #define IMAGE_REL_IA64_RESERVED_14 0x0014
2569 #define IMAGE_REL_IA64_RESERVED_15 0x0015
2570 #define IMAGE_REL_IA64_RESERVED_16 0x0016
2571 #define IMAGE_REL_IA64_ADDEND 0x001F
2573 /* archive format */
2575 #define IMAGE_ARCHIVE_START_SIZE 8
2576 #define IMAGE_ARCHIVE_START "!<arch>\n"
2577 #define IMAGE_ARCHIVE_END "`\n"
2578 #define IMAGE_ARCHIVE_PAD "\n"
2579 #define IMAGE_ARCHIVE_LINKER_MEMBER "/ "
2580 #define IMAGE_ARCHIVE_LONGNAMES_MEMBER "// "
2582 typedef struct _IMAGE_ARCHIVE_MEMBER_HEADER
2591 } IMAGE_ARCHIVE_MEMBER_HEADER
, *PIMAGE_ARCHIVE_MEMBER_HEADER
;
2593 #define IMAGE_SIZEOF_ARCHIVE_MEMBER_HDR 60
2596 * Resource directory stuff
2598 typedef struct _IMAGE_RESOURCE_DIRECTORY
{
2599 DWORD Characteristics
;
2600 DWORD TimeDateStamp
;
2603 WORD NumberOfNamedEntries
;
2604 WORD NumberOfIdEntries
;
2605 /* IMAGE_RESOURCE_DIRECTORY_ENTRY DirectoryEntries[]; */
2606 } IMAGE_RESOURCE_DIRECTORY
,*PIMAGE_RESOURCE_DIRECTORY
;
2608 #define IMAGE_RESOURCE_NAME_IS_STRING 0x80000000
2609 #define IMAGE_RESOURCE_DATA_IS_DIRECTORY 0x80000000
2611 typedef struct _IMAGE_RESOURCE_DIRECTORY_ENTRY
{
2614 #ifdef BITFIELDS_BIGENDIAN
2615 unsigned NameIsString
:1;
2616 unsigned NameOffset
:31;
2618 unsigned NameOffset
:31;
2619 unsigned NameIsString
:1;
2624 #ifdef WORDS_BIGENDIAN
2636 #ifdef BITFIELDS_BIGENDIAN
2637 unsigned DataIsDirectory
:1;
2638 unsigned OffsetToDirectory
:31;
2640 unsigned OffsetToDirectory
:31;
2641 unsigned DataIsDirectory
:1;
2645 } IMAGE_RESOURCE_DIRECTORY_ENTRY
,*PIMAGE_RESOURCE_DIRECTORY_ENTRY
;
2648 typedef struct _IMAGE_RESOURCE_DIRECTORY_STRING
{
2650 CHAR NameString
[ 1 ];
2651 } IMAGE_RESOURCE_DIRECTORY_STRING
,*PIMAGE_RESOURCE_DIRECTORY_STRING
;
2653 typedef struct _IMAGE_RESOURCE_DIR_STRING_U
{
2655 WCHAR NameString
[ 1 ];
2656 } IMAGE_RESOURCE_DIR_STRING_U
,*PIMAGE_RESOURCE_DIR_STRING_U
;
2658 typedef struct _IMAGE_RESOURCE_DATA_ENTRY
{
2662 DWORD ResourceHandle
;
2663 } IMAGE_RESOURCE_DATA_ENTRY
,*PIMAGE_RESOURCE_DATA_ENTRY
;
2666 typedef VOID
CALLBACK (*PIMAGE_TLS_CALLBACK
)(
2667 LPVOID DllHandle
,DWORD Reason
,LPVOID Reserved
2670 typedef struct _IMAGE_TLS_DIRECTORY
{
2671 DWORD StartAddressOfRawData
;
2672 DWORD EndAddressOfRawData
;
2673 LPDWORD AddressOfIndex
;
2674 PIMAGE_TLS_CALLBACK
*AddressOfCallBacks
;
2675 DWORD SizeOfZeroFill
;
2676 DWORD Characteristics
;
2677 } IMAGE_TLS_DIRECTORY
,*PIMAGE_TLS_DIRECTORY
;
2679 typedef struct _IMAGE_DEBUG_DIRECTORY
{
2680 DWORD Characteristics
;
2681 DWORD TimeDateStamp
;
2686 DWORD AddressOfRawData
;
2687 DWORD PointerToRawData
;
2688 } IMAGE_DEBUG_DIRECTORY
, *PIMAGE_DEBUG_DIRECTORY
;
2690 #define IMAGE_DEBUG_TYPE_UNKNOWN 0
2691 #define IMAGE_DEBUG_TYPE_COFF 1
2692 #define IMAGE_DEBUG_TYPE_CODEVIEW 2
2693 #define IMAGE_DEBUG_TYPE_FPO 3
2694 #define IMAGE_DEBUG_TYPE_MISC 4
2695 #define IMAGE_DEBUG_TYPE_EXCEPTION 5
2696 #define IMAGE_DEBUG_TYPE_FIXUP 6
2697 #define IMAGE_DEBUG_TYPE_OMAP_TO_SRC 7
2698 #define IMAGE_DEBUG_TYPE_OMAP_FROM_SRC 8
2699 #define IMAGE_DEBUG_TYPE_BORLAND 9
2700 #define IMAGE_DEBUG_TYPE_RESERVED10 10
2702 typedef struct _IMAGE_COFF_SYMBOLS_HEADER
{
2703 DWORD NumberOfSymbols
;
2704 DWORD LvaToFirstSymbol
;
2705 DWORD NumberOfLinenumbers
;
2706 DWORD LvaToFirstLinenumber
;
2707 DWORD RvaToFirstByteOfCode
;
2708 DWORD RvaToLastByteOfCode
;
2709 DWORD RvaToFirstByteOfData
;
2710 DWORD RvaToLastByteOfData
;
2711 } IMAGE_COFF_SYMBOLS_HEADER
, *PIMAGE_COFF_SYMBOLS_HEADER
;
2714 #define FRAME_TRAP 1
2716 #define FRAME_NONFPO 3
2718 typedef struct _FPO_DATA
{
2723 unsigned cbProlog
: 8;
2724 unsigned cbRegs
: 3;
2725 unsigned fHasSEH
: 1;
2726 unsigned fUseBP
: 1;
2727 unsigned reserved
: 1;
2728 unsigned cbFrame
: 2;
2729 } FPO_DATA
, *PFPO_DATA
;
2731 typedef struct _IMAGE_LOAD_CONFIG_DIRECTORY
{
2732 DWORD Characteristics
;
2733 DWORD TimeDateStamp
;
2736 DWORD GlobalFlagsClear
;
2737 DWORD GlobalFlagsSet
;
2738 DWORD CriticalSectionDefaultTimeout
;
2739 DWORD DeCommitFreeBlockThreshold
;
2740 DWORD DeCommitTotalFreeThreshold
;
2741 PVOID LockPrefixTable
;
2742 DWORD MaximumAllocationSize
;
2743 DWORD VirtualMemoryThreshold
;
2744 DWORD ProcessHeapFlags
;
2745 DWORD ProcessAffinityMask
;
2750 } IMAGE_LOAD_CONFIG_DIRECTORY
, *PIMAGE_LOAD_CONFIG_DIRECTORY
;
2752 typedef struct _IMAGE_FUNCTION_ENTRY
{
2753 DWORD StartingAddress
;
2754 DWORD EndingAddress
;
2755 DWORD EndOfPrologue
;
2756 } IMAGE_FUNCTION_ENTRY
, *PIMAGE_FUNCTION_ENTRY
;
2758 #define IMAGE_DEBUG_MISC_EXENAME 1
2760 typedef struct _IMAGE_DEBUG_MISC
{
2766 } IMAGE_DEBUG_MISC
, *PIMAGE_DEBUG_MISC
;
2768 /* This is the structure that appears at the very start of a .DBG file. */
2770 typedef struct _IMAGE_SEPARATE_DEBUG_HEADER
{
2774 WORD Characteristics
;
2775 DWORD TimeDateStamp
;
2779 DWORD NumberOfSections
;
2780 DWORD ExportedNamesSize
;
2781 DWORD DebugDirectorySize
;
2782 DWORD SectionAlignment
;
2783 DWORD Reserved
[ 2 ];
2784 } IMAGE_SEPARATE_DEBUG_HEADER
,*PIMAGE_SEPARATE_DEBUG_HEADER
;
2786 #define IMAGE_SEPARATE_DEBUG_SIGNATURE 0x4944
2789 typedef struct tagMESSAGE_RESOURCE_ENTRY
{
2793 } MESSAGE_RESOURCE_ENTRY
,*PMESSAGE_RESOURCE_ENTRY
;
2794 #define MESSAGE_RESOURCE_UNICODE 0x0001
2796 typedef struct tagMESSAGE_RESOURCE_BLOCK
{
2799 DWORD OffsetToEntries
;
2800 } MESSAGE_RESOURCE_BLOCK
,*PMESSAGE_RESOURCE_BLOCK
;
2802 typedef struct tagMESSAGE_RESOURCE_DATA
{
2803 DWORD NumberOfBlocks
;
2804 MESSAGE_RESOURCE_BLOCK Blocks
[ 1 ];
2805 } MESSAGE_RESOURCE_DATA
,*PMESSAGE_RESOURCE_DATA
;
2808 * Here follows typedefs for security and tokens.
2812 * First a constant for the following typdefs.
2815 #define ANYSIZE_ARRAY 1
2817 /* FIXME: Orphan. What does it point to? */
2818 typedef PVOID PACCESS_TOKEN
;
2821 * TOKEN_INFORMATION_CLASS
2824 typedef enum _TOKEN_INFORMATION_CLASS
{
2833 TokenImpersonationLevel
,
2835 } TOKEN_INFORMATION_CLASS
;
2837 #define TOKEN_TOKEN_ADJUST_DEFAULT 0x0080
2838 #define TOKEN_ADJUST_GROUPS 0x0040
2839 #define TOKEN_ADJUST_PRIVILEGES 0x0020
2840 #define TOKEN_ADJUST_SESSIONID 0x0100
2841 #define TOKEN_ASSIGN_PRIMARY 0x0001
2842 #define TOKEN_DUPLICATE 0x0002
2843 #define TOKEN_EXECUTE STANDARD_RIGHTS_EXECUTE
2844 #define TOKEN_IMPERSONATE 0x0004
2845 #define TOKEN_QUERY 0x0008
2846 #define TOKEN_QUERY_SOURCE 0x0010
2847 #define TOKEN_ADJUST_DEFAULT 0x0080
2848 #define TOKEN_READ (STANDARD_RIGHTS_READ|TOKEN_QUERY)
2849 #define TOKEN_WRITE (STANDARD_RIGHTS_WRITE | \
2850 TOKEN_ADJUST_PRIVILEGES | \
2851 TOKEN_ADJUST_GROUPS | \
2852 TOKEN_ADJUST_DEFAULT )
2853 #define TOKEN_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED | \
2854 TOKEN_ASSIGN_PRIMARY | \
2856 TOKEN_IMPERSONATE | \
2858 TOKEN_QUERY_SOURCE | \
2859 TOKEN_ADJUST_PRIVILEGES | \
2860 TOKEN_ADJUST_GROUPS | \
2861 TOKEN_ADJUST_SESSIONID | \
2862 TOKEN_ADJUST_DEFAULT )
2864 #ifndef _SECURITY_DEFINED
2865 #define _SECURITY_DEFINED
2867 #include "pshpack1.h"
2869 typedef DWORD ACCESS_MASK
, *PACCESS_MASK
;
2871 typedef struct _GENERIC_MAPPING
{
2872 ACCESS_MASK GenericRead
;
2873 ACCESS_MASK GenericWrite
;
2874 ACCESS_MASK GenericExecute
;
2875 ACCESS_MASK GenericAll
;
2876 } GENERIC_MAPPING
, *PGENERIC_MAPPING
;
2878 #ifndef SID_IDENTIFIER_AUTHORITY_DEFINED
2879 #define SID_IDENTIFIER_AUTHORITY_DEFINED
2882 } SID_IDENTIFIER_AUTHORITY
,*PSID_IDENTIFIER_AUTHORITY
,*LPSID_IDENTIFIER_AUTHORITY
;
2883 #endif /* !defined(SID_IDENTIFIER_AUTHORITY_DEFINED) */
2887 typedef struct _SID
{
2889 BYTE SubAuthorityCount
;
2890 SID_IDENTIFIER_AUTHORITY IdentifierAuthority
;
2891 DWORD SubAuthority
[1];
2893 #endif /* !defined(SID_DEFINED) */
2895 #define SID_REVISION (1) /* Current revision */
2896 #define SID_MAX_SUB_AUTHORITIES (15) /* current max subauths */
2897 #define SID_RECOMMENDED_SUB_AUTHORITIES (1) /* recommended subauths */
2904 #define ACL_REVISION1 1
2905 #define ACL_REVISION2 2
2906 #define ACL_REVISION3 3
2907 #define ACL_REVISION4 4
2909 #define MIN_ACL_REVISION ACL_REVISION2
2910 #define MAX_ACL_REVISION ACL_REVISION4
2912 typedef struct _ACL
{
2920 /* SECURITY_DESCRIPTOR */
2921 #define SECURITY_DESCRIPTOR_REVISION 1
2922 #define SECURITY_DESCRIPTOR_REVISION1 1
2925 #define SE_OWNER_DEFAULTED 0x0001
2926 #define SE_GROUP_DEFAULTED 0x0002
2927 #define SE_DACL_PRESENT 0x0004
2928 #define SE_DACL_DEFAULTED 0x0008
2929 #define SE_SACL_PRESENT 0x0010
2930 #define SE_SACL_DEFAULTED 0x0020
2931 #define SE_SELF_RELATIVE 0x8000
2933 typedef DWORD SECURITY_INFORMATION
, *PSECURITY_INFORMATION
;
2934 typedef WORD SECURITY_DESCRIPTOR_CONTROL
, *PSECURITY_DESCRIPTOR_CONTROL
;
2936 /* The security descriptor structure */
2940 SECURITY_DESCRIPTOR_CONTROL Control
;
2945 } SECURITY_DESCRIPTOR_RELATIVE
, *PISECURITY_DESCRIPTOR_RELATIVE
;
2950 SECURITY_DESCRIPTOR_CONTROL Control
;
2955 } SECURITY_DESCRIPTOR
, *PSECURITY_DESCRIPTOR
;
2957 #define SECURITY_DESCRIPTOR_MIN_LENGTH (sizeof(SECURITY_DESCRIPTOR))
2959 #include "poppack.h"
2961 #endif /* _SECURITY_DEFINED */
2963 #include "pshpack1.h"
2966 * SID_AND_ATTRIBUTES
2969 typedef struct _SID_AND_ATTRIBUTES
{
2972 } SID_AND_ATTRIBUTES
;
2974 /* security entities */
2975 #define SECURITY_NULL_RID (0x00000000L)
2976 #define SECURITY_WORLD_RID (0x00000000L)
2977 #define SECURITY_LOCAL_RID (0X00000000L)
2979 #define SECURITY_NULL_SID_AUTHORITY {0,0,0,0,0,0}
2982 #define SECURITY_WORLD_SID_AUTHORITY {0,0,0,0,0,1}
2985 #define SECURITY_LOCAL_SID_AUTHORITY {0,0,0,0,0,2}
2988 #define SECURITY_CREATOR_SID_AUTHORITY {0,0,0,0,0,3}
2989 #define SECURITY_CREATOR_OWNER_RID (0x00000000L)
2990 #define SECURITY_CREATOR_GROUP_RID (0x00000001L)
2991 #define SECURITY_CREATOR_OWNER_SERVER_RID (0x00000002L)
2992 #define SECURITY_CREATOR_GROUP_SERVER_RID (0x00000003L)
2995 #define SECURITY_NON_UNIQUE_AUTHORITY {0,0,0,0,0,4}
2998 #define SECURITY_NT_AUTHORITY {0,0,0,0,0,5}
2999 #define SECURITY_DIALUP_RID 0x00000001L
3000 #define SECURITY_NETWORK_RID 0x00000002L
3001 #define SECURITY_BATCH_RID 0x00000003L
3002 #define SECURITY_INTERACTIVE_RID 0x00000004L
3003 #define SECURITY_LOGON_IDS_RID 0x00000005L
3004 #define SECURITY_SERVICE_RID 0x00000006L
3005 #define SECURITY_ANONYMOUS_LOGON_RID 0x00000007L
3006 #define SECURITY_PROXY_RID 0x00000008L
3007 #define SECURITY_ENTERPRISE_CONTROLLERS_RID 0x00000009L
3008 #define SECURITY_PRINCIPAL_SELF_RID 0x0000000AL
3009 #define SECURITY_AUTHENTICATED_USER_RID 0x0000000BL
3010 #define SECURITY_RESTRICTED_CODE_RID 0x0000000CL
3011 #define SECURITY_TERMINAL_SERVER_RID 0x0000000DL
3012 #define SECURITY_LOCAL_SYSTEM_RID 0x00000012L
3013 #define SECURITY_NT_NON_UNIQUE 0x00000015L
3014 #define SECURITY_BUILTIN_DOMAIN_RID 0x00000020L
3016 #define DOMAIN_GROUP_RID_ADMINS 0x00000200L
3017 #define DOMAIN_GROUP_RID_USERS 0x00000201L
3018 #define DOMAIN_GROUP_RID_GUESTS 0x00000202L
3020 #define DOMAIN_ALIAS_RID_ADMINS 0x00000220L
3021 #define DOMAIN_ALIAS_RID_USERS 0x00000221L
3022 #define DOMAIN_ALIAS_RID_GUESTS 0x00000222L
3024 #define SECURITY_SERVER_LOGON_RID SECURITY_ENTERPRISE_CONTROLLERS_RID
3026 #define SECURITY_LOGON_IDS_RID_COUNT (3L)
3032 typedef struct _TOKEN_USER
{
3033 SID_AND_ATTRIBUTES User
;
3040 typedef struct _TOKEN_GROUPS
{
3042 SID_AND_ATTRIBUTES Groups
[ANYSIZE_ARRAY
];
3046 * LUID_AND_ATTRIBUTES
3049 typedef union _LARGE_INTEGER
{
3055 } LARGE_INTEGER
, *LPLARGE_INTEGER
, *PLARGE_INTEGER
;
3057 typedef union _ULARGE_INTEGER
{
3063 } ULARGE_INTEGER
, *LPULARGE_INTEGER
, *PULARGE_INTEGER
;
3066 * Locally Unique Identifier
3069 typedef LARGE_INTEGER LUID
,*PLUID
;
3071 typedef struct _LUID_AND_ATTRIBUTES
{
3074 } LUID_AND_ATTRIBUTES
;
3080 typedef struct _PRIVILEGE_SET
{
3081 DWORD PrivilegeCount
;
3083 LUID_AND_ATTRIBUTES Privilege
[ANYSIZE_ARRAY
];
3084 } PRIVILEGE_SET
, *PPRIVILEGE_SET
;
3090 typedef struct _TOKEN_PRIVILEGES
{
3091 DWORD PrivilegeCount
;
3092 LUID_AND_ATTRIBUTES Privileges
[ANYSIZE_ARRAY
];
3093 } TOKEN_PRIVILEGES
, *PTOKEN_PRIVILEGES
;
3099 typedef struct _TOKEN_OWNER
{
3104 * TOKEN_PRIMARY_GROUP
3107 typedef struct _TOKEN_PRIMARY_GROUP
{
3109 } TOKEN_PRIMARY_GROUP
;
3113 * TOKEN_DEFAULT_DACL
3116 typedef struct _TOKEN_DEFAULT_DACL
{
3118 } TOKEN_DEFAULT_DACL
;
3124 typedef struct _TOKEN_SOURCE
{
3126 LUID SourceIdentifier
;
3133 typedef enum tagTOKEN_TYPE
{
3139 * SECURITY_IMPERSONATION_LEVEL
3142 typedef enum _SECURITY_IMPERSONATION_LEVEL
{
3144 SecurityIdentification
,
3145 SecurityImpersonation
,
3147 } SECURITY_IMPERSONATION_LEVEL
, *PSECURITY_IMPERSONATION_LEVEL
;
3150 typedef BOOLEAN SECURITY_CONTEXT_TRACKING_MODE
,
3151 * PSECURITY_CONTEXT_TRACKING_MODE
;
3153 * Quality of Service
3156 typedef struct _SECURITY_QUALITY_OF_SERVICE
{
3158 SECURITY_IMPERSONATION_LEVEL ImpersonationLevel
;
3159 SECURITY_CONTEXT_TRACKING_MODE ContextTrackingMode
;
3161 } SECURITY_QUALITY_OF_SERVICE
, *PSECURITY_QUALITY_OF_SERVICE
;
3167 typedef struct _TOKEN_STATISTICS
{
3169 LUID AuthenticationId
;
3170 LARGE_INTEGER ExpirationTime
;
3171 TOKEN_TYPE TokenType
;
3172 SECURITY_IMPERSONATION_LEVEL ImpersonationLevel
;
3173 DWORD DynamicCharged
;
3174 DWORD DynamicAvailable
;
3176 DWORD PrivilegeCount
;
3184 #define ACL_REVISION 2
3186 #define ACL_REVISION1 1
3187 #define ACL_REVISION2 2
3189 /* ACEs, directly starting after an ACL */
3190 typedef struct _ACE_HEADER
{
3194 } ACE_HEADER
,*PACE_HEADER
;
3197 #define ACCESS_ALLOWED_ACE_TYPE 0
3198 #define ACCESS_DENIED_ACE_TYPE 1
3199 #define SYSTEM_AUDIT_ACE_TYPE 2
3200 #define SYSTEM_ALARM_ACE_TYPE 3
3202 /* inherit AceFlags */
3203 #define OBJECT_INHERIT_ACE 0x01
3204 #define CONTAINER_INHERIT_ACE 0x02
3205 #define NO_PROPAGATE_INHERIT_ACE 0x04
3206 #define INHERIT_ONLY_ACE 0x08
3207 #define VALID_INHERIT_FLAGS 0x0F
3209 /* AceFlags mask for what events we (should) audit */
3210 #define SUCCESSFUL_ACCESS_ACE_FLAG 0x40
3211 #define FAILED_ACCESS_ACE_FLAG 0x80
3213 /* different ACEs depending on AceType
3214 * SidStart marks the begin of a SID
3215 * so the thing finally looks like this:
3220 typedef struct _ACCESS_ALLOWED_ACE
{
3224 } ACCESS_ALLOWED_ACE
,*PACCESS_ALLOWED_ACE
;
3226 typedef struct _ACCESS_DENIED_ACE
{
3230 } ACCESS_DENIED_ACE
,*PACCESS_DENIED_ACE
;
3232 typedef struct _SYSTEM_AUDIT_ACE
{
3236 } SYSTEM_AUDIT_ACE
,*PSYSTEM_AUDIT_ACE
;
3238 typedef struct _SYSTEM_ALARM_ACE
{
3242 } SYSTEM_ALARM_ACE
,*PSYSTEM_ALARM_ACE
;
3244 typedef enum tagSID_NAME_USE
{
3249 SidTypeWellKnownGroup
,
3250 SidTypeDeletedAccount
,
3253 } SID_NAME_USE
,*PSID_NAME_USE
;
3257 /* DELETE may be already defined via /usr/include/arpa/nameser_compat.h */
3259 #define DELETE 0x00010000
3260 #define READ_CONTROL 0x00020000
3261 #define WRITE_DAC 0x00040000
3262 #define WRITE_OWNER 0x00080000
3263 #define SYNCHRONIZE 0x00100000
3264 #define STANDARD_RIGHTS_REQUIRED 0x000f0000
3266 #define STANDARD_RIGHTS_READ READ_CONTROL
3267 #define STANDARD_RIGHTS_WRITE READ_CONTROL
3268 #define STANDARD_RIGHTS_EXECUTE READ_CONTROL
3270 #define STANDARD_RIGHTS_ALL 0x001f0000
3272 #define SPECIFIC_RIGHTS_ALL 0x0000ffff
3274 #define GENERIC_READ 0x80000000
3275 #define GENERIC_WRITE 0x40000000
3276 #define GENERIC_EXECUTE 0x20000000
3277 #define GENERIC_ALL 0x10000000
3279 #define MAXIMUM_ALLOWED 0x02000000
3280 #define ACCESS_SYSTEM_SECURITY 0x01000000
3282 #define EVENT_MODIFY_STATE 0x0002
3283 #define EVENT_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0x3)
3285 #define SEMAPHORE_MODIFY_STATE 0x0002
3286 #define SEMAPHORE_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0x3)
3288 #define MUTEX_MODIFY_STATE 0x0001
3289 #define MUTEX_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0x1)
3291 #define TIMER_QUERY_STATE 0x0001
3292 #define TIMER_MODIFY_STATE 0x0002
3293 #define TIMER_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0x3)
3295 #define PROCESS_TERMINATE 0x0001
3296 #define PROCESS_CREATE_THREAD 0x0002
3297 #define PROCESS_VM_OPERATION 0x0008
3298 #define PROCESS_VM_READ 0x0010
3299 #define PROCESS_VM_WRITE 0x0020
3300 #define PROCESS_DUP_HANDLE 0x0040
3301 #define PROCESS_CREATE_PROCESS 0x0080
3302 #define PROCESS_SET_QUOTA 0x0100
3303 #define PROCESS_SET_INFORMATION 0x0200
3304 #define PROCESS_QUERY_INFORMATION 0x0400
3305 #define PROCESS_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0xfff)
3307 #define THREAD_TERMINATE 0x0001
3308 #define THREAD_SUSPEND_RESUME 0x0002
3309 #define THREAD_GET_CONTEXT 0x0008
3310 #define THREAD_SET_CONTEXT 0x0010
3311 #define THREAD_SET_INFORMATION 0x0020
3312 #define THREAD_QUERY_INFORMATION 0x0040
3313 #define THREAD_SET_THREAD_TOKEN 0x0080
3314 #define THREAD_IMPERSONATE 0x0100
3315 #define THREAD_DIRECT_IMPERSONATION 0x0200
3316 #define THREAD_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0x3ff)
3318 #define THREAD_BASE_PRIORITY_LOWRT 15
3319 #define THREAD_BASE_PRIORITY_MAX 2
3320 #define THREAD_BASE_PRIORITY_MIN -2
3321 #define THREAD_BASE_PRIORITY_IDLE -15
3323 #define FILE_READ_DATA 0x0001 /* file & pipe */
3324 #define FILE_LIST_DIRECTORY 0x0001 /* directory */
3325 #define FILE_WRITE_DATA 0x0002 /* file & pipe */
3326 #define FILE_ADD_FILE 0x0002 /* directory */
3327 #define FILE_APPEND_DATA 0x0004 /* file */
3328 #define FILE_ADD_SUBDIRECTORY 0x0004 /* directory */
3329 #define FILE_CREATE_PIPE_INSTANCE 0x0004 /* named pipe */
3330 #define FILE_READ_EA 0x0008 /* file & directory */
3331 #define FILE_READ_PROPERTIES FILE_READ_EA
3332 #define FILE_WRITE_EA 0x0010 /* file & directory */
3333 #define FILE_WRITE_PROPERTIES FILE_WRITE_EA
3334 #define FILE_EXECUTE 0x0020 /* file */
3335 #define FILE_TRAVERSE 0x0020 /* directory */
3336 #define FILE_DELETE_CHILD 0x0040 /* directory */
3337 #define FILE_READ_ATTRIBUTES 0x0080 /* all */
3338 #define FILE_WRITE_ATTRIBUTES 0x0100 /* all */
3339 #define FILE_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0x1ff)
3341 #define FILE_GENERIC_READ (STANDARD_RIGHTS_READ | FILE_READ_DATA | \
3342 FILE_READ_ATTRIBUTES | FILE_READ_EA | \
3344 #define FILE_GENERIC_WRITE (STANDARD_RIGHTS_WRITE | FILE_WRITE_DATA | \
3345 FILE_WRITE_ATTRIBUTES | FILE_WRITE_EA | \
3346 FILE_APPEND_DATA | SYNCHRONIZE)
3347 #define FILE_GENERIC_EXECUTE (STANDARD_RIGHTS_EXECUTE | FILE_EXECUTE | \
3348 FILE_READ_ATTRIBUTES | SYNCHRONIZE)
3351 /* File attribute flags */
3352 #define FILE_SHARE_READ 0x00000001L
3353 #define FILE_SHARE_WRITE 0x00000002L
3354 #define FILE_SHARE_DELETE 0x00000004L
3355 #define FILE_ATTRIBUTE_READONLY 0x00000001L
3356 #define FILE_ATTRIBUTE_HIDDEN 0x00000002L
3357 #define FILE_ATTRIBUTE_SYSTEM 0x00000004L
3358 #define FILE_ATTRIBUTE_LABEL 0x00000008L /* Not in Windows API */
3359 #define FILE_ATTRIBUTE_DIRECTORY 0x00000010L
3360 #define FILE_ATTRIBUTE_ARCHIVE 0x00000020L
3361 #define FILE_ATTRIBUTE_NORMAL 0x00000080L
3362 #define FILE_ATTRIBUTE_TEMPORARY 0x00000100L
3363 #define FILE_ATTRIBUTE_ATOMIC_WRITE 0x00000200L
3364 #define FILE_ATTRIBUTE_XACTION_WRITE 0x00000400L
3365 #define FILE_ATTRIBUTE_COMPRESSED 0x00000800L
3366 #define FILE_ATTRIBUTE_OFFLINE 0x00001000L
3367 #define FILE_ATTRIBUTE_SYMLINK 0x80000000L /* Not in Windows API */
3369 /* File notification flags */
3370 #define FILE_NOTIFY_CHANGE_FILE_NAME 0x00000001
3371 #define FILE_NOTIFY_CHANGE_DIR_NAME 0x00000002
3372 #define FILE_NOTIFY_CHANGE_ATTRIBUTES 0x00000004
3373 #define FILE_NOTIFY_CHANGE_SIZE 0x00000008
3374 #define FILE_NOTIFY_CHANGE_LAST_WRITE 0x00000010
3375 #define FILE_NOTIFY_CHANGE_LAST_ACCESS 0x00000020
3376 #define FILE_NOTIFY_CHANGE_CREATION 0x00000040
3377 #define FILE_NOTIFY_CHANGE_SECURITY 0x00000100
3379 #define FILE_ACTION_ADDED 0x00000001
3380 #define FILE_ACTION_REMOVED 0x00000002
3381 #define FILE_ACTION_MODIFIED 0x00000003
3382 #define FILE_ACTION_RENAMED_OLD_NAME 0x00000004
3383 #define FILE_ACTION_RENAMED_NEW_NAME 0x00000005
3386 #define FILE_CASE_SENSITIVE_SEARCH 0x00000001
3387 #define FILE_CASE_PRESERVED_NAMES 0x00000002
3388 #define FILE_UNICODE_ON_DISK 0x00000004
3389 #define FILE_PERSISTENT_ACLS 0x00000008
3390 #define FILE_FILE_COMPRESSION 0x00000010
3391 #define FILE_VOLUME_IS_COMPRESSED 0x00008000
3393 /* File alignments (NT) */
3394 #define FILE_BYTE_ALIGNMENT 0x00000000
3395 #define FILE_WORD_ALIGNMENT 0x00000001
3396 #define FILE_LONG_ALIGNMENT 0x00000003
3397 #define FILE_QUAD_ALIGNMENT 0x00000007
3398 #define FILE_OCTA_ALIGNMENT 0x0000000f
3399 #define FILE_32_BYTE_ALIGNMENT 0x0000001f
3400 #define FILE_64_BYTE_ALIGNMENT 0x0000003f
3401 #define FILE_128_BYTE_ALIGNMENT 0x0000007f
3402 #define FILE_256_BYTE_ALIGNMENT 0x000000ff
3403 #define FILE_512_BYTE_ALIGNMENT 0x000001ff
3405 #define REG_NONE 0 /* no type */
3406 #define REG_SZ 1 /* string type (ASCII) */
3407 #define REG_EXPAND_SZ 2 /* string, includes %ENVVAR% (expanded by caller) (ASCII) */
3408 #define REG_BINARY 3 /* binary format, callerspecific */
3409 /* YES, REG_DWORD == REG_DWORD_LITTLE_ENDIAN */
3410 #define REG_DWORD 4 /* DWORD in little endian format */
3411 #define REG_DWORD_LITTLE_ENDIAN 4 /* DWORD in little endian format */
3412 #define REG_DWORD_BIG_ENDIAN 5 /* DWORD in big endian format */
3413 #define REG_LINK 6 /* symbolic link (UNICODE) */
3414 #define REG_MULTI_SZ 7 /* multiple strings, delimited by \0, terminated by \0\0 (ASCII) */
3415 #define REG_RESOURCE_LIST 8 /* resource list? huh? */
3416 #define REG_FULL_RESOURCE_DESCRIPTOR 9 /* full resource descriptor? huh? */
3417 #define REG_RESOURCE_REQUIREMENTS_LIST 10
3419 /* ----------------------------- begin registry ----------------------------- */
3421 /* Registry security values */
3422 #define OWNER_SECURITY_INFORMATION 0x00000001
3423 #define GROUP_SECURITY_INFORMATION 0x00000002
3424 #define DACL_SECURITY_INFORMATION 0x00000004
3425 #define SACL_SECURITY_INFORMATION 0x00000008
3427 #define REG_OPTION_RESERVED 0x00000000
3428 #define REG_OPTION_NON_VOLATILE 0x00000000
3429 #define REG_OPTION_VOLATILE 0x00000001
3430 #define REG_OPTION_CREATE_LINK 0x00000002
3431 #define REG_OPTION_BACKUP_RESTORE 0x00000004 /* FIXME */
3432 #define REG_OPTION_OPEN_LINK 0x00000008
3433 #define REG_LEGAL_OPTION (REG_OPTION_RESERVED| \
3434 REG_OPTION_NON_VOLATILE| \
3435 REG_OPTION_VOLATILE| \
3436 REG_OPTION_CREATE_LINK| \
3437 REG_OPTION_BACKUP_RESTORE| \
3438 REG_OPTION_OPEN_LINK)
3441 #define REG_CREATED_NEW_KEY 0x00000001
3442 #define REG_OPENED_EXISTING_KEY 0x00000002
3444 /* For RegNotifyChangeKeyValue */
3445 #define REG_NOTIFY_CHANGE_NAME 0x1
3447 #define KEY_QUERY_VALUE 0x00000001
3448 #define KEY_SET_VALUE 0x00000002
3449 #define KEY_CREATE_SUB_KEY 0x00000004
3450 #define KEY_ENUMERATE_SUB_KEYS 0x00000008
3451 #define KEY_NOTIFY 0x00000010
3452 #define KEY_CREATE_LINK 0x00000020
3454 #define KEY_READ ((STANDARD_RIGHTS_READ| \
3456 KEY_ENUMERATE_SUB_KEYS| \
3460 #define KEY_WRITE ((STANDARD_RIGHTS_WRITE| \
3462 KEY_CREATE_SUB_KEY) \
3465 #define KEY_EXECUTE ((KEY_READ) \
3468 #define KEY_ALL_ACCESS ((STANDARD_RIGHTS_ALL| \
3471 KEY_CREATE_SUB_KEY| \
3472 KEY_ENUMERATE_SUB_KEYS| \
3477 /* ------------------------------ end registry ------------------------------ */
3480 #define EVENTLOG_SUCCESS 0x0000
3481 #define EVENTLOG_ERROR_TYPE 0x0001
3482 #define EVENTLOG_WARNING_TYPE 0x0002
3483 #define EVENTLOG_INFORMATION_TYPE 0x0004
3484 #define EVENTLOG_AUDIT_SUCCESS 0x0008
3485 #define EVENTLOG_AUDIT_FAILURE 0x0010
3487 #define SERVICE_BOOT_START 0x00000000
3488 #define SERVICE_SYSTEM_START 0x00000001
3489 #define SERVICE_AUTO_START 0x00000002
3490 #define SERVICE_DEMAND_START 0x00000003
3491 #define SERVICE_DISABLED 0x00000004
3493 #define SERVICE_ERROR_IGNORE 0x00000000
3494 #define SERVICE_ERROR_NORMAL 0x00000001
3495 #define SERVICE_ERROR_SEVERE 0x00000002
3496 #define SERVICE_ERROR_CRITICAL 0x00000003
3499 #define SERVICE_KERNEL_DRIVER 0x00000001
3500 #define SERVICE_FILE_SYSTEM_DRIVER 0x00000002
3501 #define SERVICE_ADAPTER 0x00000004
3502 #define SERVICE_RECOGNIZER_DRIVER 0x00000008
3504 #define SERVICE_DRIVER ( SERVICE_KERNEL_DRIVER | SERVICE_FILE_SYSTEM_DRIVER | \
3505 SERVICE_RECOGNIZER_DRIVER )
3507 #define SERVICE_WIN32_OWN_PROCESS 0x00000010
3508 #define SERVICE_WIN32_SHARE_PROCESS 0x00000020
3509 #define SERVICE_WIN32 (SERVICE_WIN32_OWN_PROCESS | SERVICE_WIN32_SHARE_PROCESS)
3511 #define SERVICE_INTERACTIVE_PROCESS 0x00000100
3513 #define SERVICE_TYPE_ALL ( SERVICE_WIN32 | SERVICE_ADAPTER | \
3514 SERVICE_DRIVER | SERVICE_INTERACTIVE_PROCESS )
3517 typedef enum _CM_SERVICE_NODE_TYPE
3519 DriverType
= SERVICE_KERNEL_DRIVER
,
3520 FileSystemType
= SERVICE_FILE_SYSTEM_DRIVER
,
3521 Win32ServiceOwnProcess
= SERVICE_WIN32_OWN_PROCESS
,
3522 Win32ServiceShareProcess
= SERVICE_WIN32_SHARE_PROCESS
,
3523 AdapterType
= SERVICE_ADAPTER
,
3524 RecognizerType
= SERVICE_RECOGNIZER_DRIVER
3525 } SERVICE_NODE_TYPE
;
3527 typedef enum _CM_SERVICE_LOAD_TYPE
3529 BootLoad
= SERVICE_BOOT_START
,
3530 SystemLoad
= SERVICE_SYSTEM_START
,
3531 AutoLoad
= SERVICE_AUTO_START
,
3532 DemandLoad
= SERVICE_DEMAND_START
,
3533 DisableLoad
= SERVICE_DISABLED
3534 } SERVICE_LOAD_TYPE
;
3536 typedef enum _CM_ERROR_CONTROL_TYPE
3538 IgnoreError
= SERVICE_ERROR_IGNORE
,
3539 NormalError
= SERVICE_ERROR_NORMAL
,
3540 SevereError
= SERVICE_ERROR_SEVERE
,
3541 CriticalError
= SERVICE_ERROR_CRITICAL
3542 } SERVICE_ERROR_TYPE
;
3546 #define RtlEqualMemory(Destination, Source, Length) (!memcmp((Destination),(Source),(Length)))
3547 #define RtlMoveMemory(Destination, Source, Length) memmove((Destination),(Source),(Length))
3548 #define RtlCopyMemory(Destination, Source, Length) memcpy((Destination),(Source),(Length))
3549 #define RtlFillMemory(Destination, Length, Fill) memset((Destination),(Fill),(Length))
3550 #define RtlZeroMemory(Destination, Length) memset((Destination),0,(Length))
3552 #include "guiddef.h"
3554 #include "poppack.h"
3556 typedef struct _RTL_CRITICAL_SECTION_DEBUG
3559 WORD CreatorBackTraceIndex
;
3560 struct _RTL_CRITICAL_SECTION
*CriticalSection
;
3561 LIST_ENTRY ProcessLocksList
;
3563 DWORD ContentionCount
;
3565 } RTL_CRITICAL_SECTION_DEBUG
, *PRTL_CRITICAL_SECTION_DEBUG
, RTL_RESOURCE_DEBUG
, *PRTL_RESOURCE_DEBUG
;
3567 typedef struct _RTL_CRITICAL_SECTION
{
3568 PRTL_CRITICAL_SECTION_DEBUG DebugInfo
;
3570 LONG RecursionCount
;
3571 HANDLE OwningThread
;
3572 HANDLE LockSemaphore
;
3573 ULONG_PTR SpinCount
;
3574 } RTL_CRITICAL_SECTION
, *PRTL_CRITICAL_SECTION
;
3576 #endif /* __WINE_WINNT_H */