Added AddAccessAllowdAceEx, AddAccessDeniedAceEx, GetAclInformation.
[wine] / include / winnt.h
1 /*
2  * Win32 definitions for Windows NT
3  *
4  * Copyright 1996 Alexandre Julliard
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #ifndef __WINE_WINNT_H
22 #define __WINE_WINNT_H
23
24 #include "basetsd.h"
25
26 #ifndef RC_INVOKED
27 #include <ctype.h>
28 #include <stddef.h>
29 #include <string.h>
30 #endif
31
32 #define NTAPI __stdcall
33
34 /* Macro for structure packing and more. */
35
36 #ifdef __GNUC__
37 #define WINE_PACKED   __attribute__((packed))
38 #define WINE_UNUSED   __attribute__((unused))
39 #else
40 #define WINE_PACKED    /* nothing */
41 #define WINE_UNUSED    /* nothing */
42 #endif
43
44 #if defined(_MSC_VER) && (defined(_M_IX86) || defined(_M_IA64) || defined(_M_AMD64)) && !defined(MIDL_PASS)
45 # define DECLSPEC_IMPORT __declspec(dllimport)
46 #else
47 # define DECLSPEC_IMPORT
48 #endif
49
50 #ifndef DECLSPEC_NORETURN
51 # if (_MSC_VER >= 1200) && !defined(MIDL_PASS)
52 #  define DECLSPEC_NORETURN __declspec(noreturn)
53 # elif defined(__GNUC__)
54 #  define DECLSPEC_NORETURN __attribute__((noreturn))
55 # else
56 #  define DECLSPEC_NORETURN
57 # endif
58 #endif
59
60 #ifndef DECLSPEC_ALIGN
61 # if (_MSC_VER >= 1300) && !defined(MIDL_PASS)
62 #  define DECLSPEC_ALIGN(x) __declspec(align(x))
63 # elif defined(__GNUC__)
64 #  define DECLSPEC_ALIGN(x) __attribute__((aligned(x)))
65 # else
66 #  define DECLSPEC_ALIGN(x)
67 # endif
68 #endif
69
70 #ifndef DECLSPEC_CACHEALIGN
71 # define DECLSPEC_CACHEALIGN DECLSPEC_ALIGN(128)
72 #endif
73
74 #ifndef DECLSPEC_UUID
75 # if (_MSC_VER >= 1100) && defined (__cplusplus)
76 #  define DECLSPEC_UUID(x) __declspec(uuid(x))
77 # else
78 #  define DECLSPEC_UUID(x)
79 # endif
80 #endif
81
82 #ifndef DECLSPEC_NOVTABLE
83 # if (_MSC_VER >= 1100) && defined(__cplusplus)
84 #  define DECLSPEC_NOVTABLE __declspec(novtable)
85 # else
86 #  define DECLSPEC_NOVTABLE
87 # endif
88 #endif
89
90 #ifndef DECLSPEC_SELECTANY
91 #if (_MSC_VER >= 1100)
92 #define DECLSPEC_SELECTANY __declspec(selectany)
93 #else
94 #define DECLSPEC_SELECTANY
95 #endif
96 #endif
97
98 #ifndef NOP_FUNCTION
99 # if (_MSC_VER >= 1210)
100 #  define NOP_FUNCTION __noop
101 # else
102 #  define NOP_FUNCTION (void)0
103 # endif
104 #endif
105
106 #ifndef DECLSPEC_ADDRSAFE
107 # if (_MSC_VER >= 1200) && (defined(_M_ALPHA) || defined(_M_AXP64))
108 #  define DECLSPEC_ADDRSAFE __declspec(address_safe)
109 # else
110 #  define DECLSPEC_ADDRSAFE
111 # endif
112 #endif
113
114 #ifndef FORCEINLINE
115 # if (_MSC_VER >= 1200)
116 #  define FORCEINLINE __forceinline
117 # elif defined(__GNUC__) && ((__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 2)))
118 #  define FORCEINLINE __attribute__((always_inline))
119 # else
120 #  define FORCEINLINE inline
121 # endif
122 #endif
123
124 #ifndef DECLSPEC_DEPRECATED
125 # if (_MSC_VER >= 1300) && !defined(MIDL_PASS)
126 #  define DECLSPEC_DEPRECATED __declspec(deprecated)
127 #  define DEPRECATE_SUPPORTED
128 # elif defined(__GNUC__) && ((__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 2)))
129 #  define DECLSPEC_DEPRECATED __attribute__((deprecated))
130 #  define DEPRECATE_SUPPORTED
131 # else
132 #  define DECLSPEC_DEPRECATED
133 #  undef  DEPRECATE_SUPPORTED
134 # endif
135 #endif
136
137 /* Anonymous union/struct handling */
138
139 #ifndef NONAMELESSSTRUCT
140 # ifdef __GNUC__
141    /* Anonymous struct support starts with gcc 2.96 or gcc/g++ 3.x */
142 #  if (__GNUC__ < 2) || ((__GNUC__ == 2) && (defined(__cplusplus) || (__GNUC_MINOR__ < 96)))
143 #   define NONAMELESSSTRUCT
144 #  endif
145 # elif defined(__SUNPRO_C) || defined(__SUNPRO_CC)
146 #  define NONAMELESSSTRUCT
147 # endif
148 #endif  /* NONAMELESSSTRUCT */
149
150 #ifndef NONAMELESSUNION
151 # ifdef __GNUC__
152    /* Anonymous unions support starts with gcc 2.96/g++ 2.95 */
153 #  if (__GNUC__ < 2) || ((__GNUC__ == 2) && ((__GNUC_MINOR__ < 95) || ((__GNUC_MINOR__ == 95) && !defined(__cplusplus))))
154 #   define NONAMELESSUNION
155 #  endif
156 # elif defined(__SUNPRO_C) || defined(__SUNPRO_CC)
157 #  define NONAMELESSUNION
158 # endif
159 #endif  /* NONAMELESSUNION */
160
161 #ifndef NONAMELESSSTRUCT
162 #define DUMMYSTRUCTNAME
163 #define DUMMYSTRUCTNAME1
164 #define DUMMYSTRUCTNAME2
165 #define DUMMYSTRUCTNAME3
166 #define DUMMYSTRUCTNAME4
167 #define DUMMYSTRUCTNAME5
168 #else /* !defined(NONAMELESSSTRUCT) */
169 #define DUMMYSTRUCTNAME   s
170 #define DUMMYSTRUCTNAME1  s1
171 #define DUMMYSTRUCTNAME2  s2
172 #define DUMMYSTRUCTNAME3  s3
173 #define DUMMYSTRUCTNAME4  s4
174 #define DUMMYSTRUCTNAME5  s5
175 #endif /* !defined(NONAMELESSSTRUCT) */
176
177 #ifndef NONAMELESSUNION
178 #define DUMMYUNIONNAME
179 #define DUMMYUNIONNAME1
180 #define DUMMYUNIONNAME2
181 #define DUMMYUNIONNAME3
182 #define DUMMYUNIONNAME4
183 #define DUMMYUNIONNAME5
184 #define DUMMYUNIONNAME6
185 #define DUMMYUNIONNAME7
186 #define DUMMYUNIONNAME8
187 #else /* !defined(NONAMELESSUNION) */
188 #define DUMMYUNIONNAME   u
189 #define DUMMYUNIONNAME1  u1
190 #define DUMMYUNIONNAME2  u2
191 #define DUMMYUNIONNAME3  u3
192 #define DUMMYUNIONNAME4  u4
193 #define DUMMYUNIONNAME5  u5
194 #define DUMMYUNIONNAME6  u6
195 #define DUMMYUNIONNAME7  u7
196 #define DUMMYUNIONNAME8  u8
197 #endif /* !defined(NONAMELESSUNION) */
198
199 /* C99 restrict support */
200
201 #if defined(ENABLE_RESTRICTED) && !defined(MIDL_PASS) && !defined(RC_INVOKED)
202 # if defined(_MSC_VER) && defined(_M_MRX000)
203 #  define RESTRICTED_POINTER __restrict
204 # elif defined(__GNUC__) && ((__GNUC__ > 2) || ((__GNUC__ == 2) && (__GNUC_MINOR__ >= 95)))
205 #  define RESTRICTED_POINTER __restrict
206 # else
207 #  define RESTRICTED_POINTER
208 # endif
209 #else
210 # define RESTRICTED_POINTER
211 #endif
212
213 /* C99 unaligned support */
214
215 #if defined(_MSC_VER) && (defined(_M_MRX000) || defined(_M_ALPHA) || defined(_M_PPC) || defined(_M_IA64) || defined(_M_AMD64))
216 # define UNALIGNED __unaligned
217 # ifdef _WIN64
218 #  define UNALIGNED64 __unaligned
219 # else
220 #  define UNALIGNED64
221 # endif
222 #else
223 # define UNALIGNED
224 # define UNALIGNED64
225 #endif
226
227 /* Alignment macros */
228
229 #if defined(_WIN64) || (defined(_MSC_VER) && defined(_M_ALPHA)) || defined(__alpha__)
230 #define MAX_NATURAL_ALIGNMENT sizeof(ULONGLONG)
231 #define MEMORY_ALLOCATION_ALIGNMENT 16
232 #else
233 #define MAX_NATURAL_ALIGNMENT sizeof(DWORD)
234 #define MEMORY_ALLOCATION_ALIGNMENT 8
235 #endif
236
237 #if (_MSC_VER >= 1300) && defined(__cplusplus)
238 # define TYPE_ALIGNMENT(t) __alignof(t)
239 #elif defined(__GNUC__)
240 # define TYPE_ALIGNMENT(t) __alignof__(t)
241 #else
242 # define TYPE_ALIGNMENT(t) FIELD_OFFSET(struct { char x; t test; }, test)
243 #endif
244
245 #ifdef _WIN64
246 # define PROBE_ALIGNMENT(_s) \
247     (TYPE_ALIGNMENT(_s) > TYPE_ALIGNMENT(DWORD) ? \
248     TYPE_ALIGNMENT(_s) : TYPE_ALIGNMENT(DWORD))
249 # define PROBE_ALIGNMENT32(_s) TYPE_ALIGNMENT(DWORD)
250 #else
251 # define PROBE_ALIGNMENT(_s) TYPE_ALIGNMENT(DWORD)
252 #endif
253
254 /* Compile time assertion */
255
256 #if defined(_MSC_VER)
257 # define C_ASSERT(e) typedef char __C_ASSERT__[(e)?1:-1]
258 #elif defined(__GNUC__) 
259 # define C_ASSERT(e) extern char __C_ASSERT__[(e)?1:-1]
260 #endif
261
262 /* Error Masks */
263 #define APPLICATION_ERROR_MASK       0x20000000
264 #define ERROR_SEVERITY_SUCCESS       0x00000000
265 #define ERROR_SEVERITY_INFORMATIONAL 0x40000000
266 #define ERROR_SEVERITY_WARNING       0x80000000
267 #define ERROR_SEVERITY_ERROR         0xC0000000
268
269 /* Microsoft's macros for declaring functions */
270
271 #ifdef __cplusplus
272 # define EXTERN_C    extern "C"
273 #else
274 # define EXTERN_C    extern
275 #endif
276
277 #define STDMETHODCALLTYPE       __stdcall
278 #define STDMETHODVCALLTYPE      __cdecl
279 #define STDAPICALLTYPE          __stdcall
280 #define STDAPIVCALLTYPE         __cdecl
281
282 #define STDAPI                  EXTERN_C HRESULT STDAPICALLTYPE
283 #define STDAPI_(type)           EXTERN_C type STDAPICALLTYPE
284 #define STDMETHODIMP            HRESULT STDMETHODCALLTYPE
285 #define STDMETHODIMP_(type)     type STDMETHODCALLTYPE
286 #define STDAPIV                 EXTERN_C HRESULT STDAPIVCALLTYPE
287 #define STDAPIV_(type)          EXTERN_C type STDAPIVCALLTYPE
288 #define STDMETHODIMPV           HRESULT STDMETHODVCALLTYPE
289 #define STDMETHODIMPV_(type)    type STDMETHODVCALLTYPE
290
291 /* Define the basic types */
292 #ifndef VOID
293 #define VOID void
294 #endif
295 typedef VOID           *PVOID;
296 typedef BYTE            BOOLEAN,    *PBOOLEAN;
297 typedef char            CHAR,       *PCHAR;
298 typedef short           SHORT,      *PSHORT;
299 typedef long            LONG,       *PLONG;
300
301 /* Some systems might have wchar_t, but we really need 16 bit characters */
302 #ifdef WINE_UNICODE_NATIVE
303 typedef wchar_t         WCHAR,      *PWCHAR;
304 #else
305 typedef unsigned short  WCHAR,      *PWCHAR;
306 #endif
307
308 /* 'Extended/Wide' numerical types */
309 #ifndef _ULONGLONG_
310 #define _ULONGLONG_
311 typedef signed __int64   LONGLONG,   *PLONGLONG;
312 typedef unsigned __int64 ULONGLONG,  *PULONGLONG;
313 #endif
314
315 #ifndef _DWORDLONG_
316 #define _DWORDLONG_
317 typedef ULONGLONG       DWORDLONG,  *PDWORDLONG;
318 #endif
319
320 /* ANSI string types */
321 typedef CHAR           *PCH,        *LPCH;
322 typedef const CHAR     *PCCH,       *LPCCH;
323 typedef CHAR           *PSTR,       *LPSTR,     *NPSTR;
324 typedef const CHAR     *PCSTR,      *LPCSTR;
325
326 /* Unicode string types */
327 typedef WCHAR          *PWCH,       *LPWCH;
328 typedef const WCHAR    *PCWCH,      *LPCWCH;
329 typedef WCHAR          *PWSTR,      *LPWSTR,    *NWPSTR;
330 typedef const WCHAR    *PCWSTR,     *LPCWSTR;
331
332 /* Neutral character and string types */
333 /* These are only defined for Winelib, i.e. _not_ defined for
334  * the emulator. The reason is they depend on the UNICODE
335  * macro which only exists in the user's code.
336  */
337 #ifndef __WINESRC__
338 # ifdef UNICODE
339 typedef WCHAR           TCHAR,      *PTCHAR;
340 typedef LPWSTR          PTSTR,       LPTSTR;
341 typedef LPCWSTR         PCTSTR,      LPCTSTR;
342 #  define __TEXT(string) L##string
343 # else  /* UNICODE */
344 typedef CHAR            TCHAR,      *PTCHAR;
345 typedef LPSTR           PTSTR,       LPTSTR;
346 typedef LPCSTR          PCTSTR,      LPCTSTR;
347 #  define __TEXT(string) string
348 # endif /* UNICODE */
349 # define TEXT(quote) __TEXT(quote)
350 #endif   /* __WINESRC__ */
351
352 /* Misc common WIN32 types */
353 typedef char            CCHAR;
354 typedef LONG            HRESULT;
355 typedef DWORD           LCID,       *PLCID;
356 typedef WORD            LANGID;
357 typedef DWORD           EXECUTION_STATE;
358
359 /* Handle type */
360
361 typedef void *HANDLE;
362 typedef HANDLE *PHANDLE, *LPHANDLE;
363
364 #ifdef STRICT
365 #define DECLARE_HANDLE(a) typedef struct a##__ { int unused; } *a
366 #else /*STRICT*/
367 #define DECLARE_HANDLE(a) typedef HANDLE a
368 #endif /*STRICT*/
369
370 /* Defines */
371
372 /* Argument 1 passed to the DllEntryProc. */
373 #define DLL_PROCESS_DETACH      0       /* detach process (unload library) */
374 #define DLL_PROCESS_ATTACH      1       /* attach process (load library) */
375 #define DLL_THREAD_ATTACH       2       /* attach new thread */
376 #define DLL_THREAD_DETACH       3       /* detach thread */
377
378
379 /* u.x.wProcessorArchitecture (NT) */
380 #define PROCESSOR_ARCHITECTURE_INTEL    0
381 #define PROCESSOR_ARCHITECTURE_MIPS     1
382 #define PROCESSOR_ARCHITECTURE_ALPHA    2
383 #define PROCESSOR_ARCHITECTURE_PPC      3
384 #define PROCESSOR_ARCHITECTURE_SHX      4
385 #define PROCESSOR_ARCHITECTURE_ARM      5
386 #define PROCESSOR_ARCHITECTURE_UNKNOWN  0xFFFF
387
388 /* dwProcessorType */
389 #define PROCESSOR_INTEL_386      386
390 #define PROCESSOR_INTEL_486      486
391 #define PROCESSOR_INTEL_PENTIUM  586
392 #define PROCESSOR_INTEL_860      860
393 #define PROCESSOR_MIPS_R2000     2000
394 #define PROCESSOR_MIPS_R3000     3000
395 #define PROCESSOR_MIPS_R4000     4000
396 #define PROCESSOR_ALPHA_21064    21064
397 #define PROCESSOR_PPC_601        601
398 #define PROCESSOR_PPC_603        603
399 #define PROCESSOR_PPC_604        604
400 #define PROCESSOR_PPC_620        620
401 #define PROCESSOR_HITACHI_SH3    10003
402 #define PROCESSOR_HITACHI_SH3E   10004
403 #define PROCESSOR_HITACHI_SH4    10005
404 #define PROCESSOR_MOTOROLA_821   821
405 #define PROCESSOR_SHx_SH3        103
406 #define PROCESSOR_SHx_SH4        104
407 #define PROCESSOR_STRONGARM      2577
408 #define PROCESSOR_ARM720         1824    /* 0x720 */
409 #define PROCESSOR_ARM820         2080    /* 0x820 */
410 #define PROCESSOR_ARM920         2336    /* 0x920 */
411 #define PROCESSOR_ARM_7TDMI      70001
412
413 #define MAXIMUM_PROCESSORS       32
414 typedef struct _MEMORY_BASIC_INFORMATION
415 {
416     LPVOID   BaseAddress;
417     LPVOID   AllocationBase;
418     DWORD    AllocationProtect;
419     DWORD    RegionSize;
420     DWORD    State;
421     DWORD    Protect;
422     DWORD    Type;
423 } MEMORY_BASIC_INFORMATION, *PMEMORY_BASIC_INFORMATION;
424
425 #define PAGE_NOACCESS           0x01
426 #define PAGE_READONLY           0x02
427 #define PAGE_READWRITE          0x04
428 #define PAGE_WRITECOPY          0x08
429 #define PAGE_EXECUTE            0x10
430 #define PAGE_EXECUTE_READ       0x20
431 #define PAGE_EXECUTE_READWRITE  0x40
432 #define PAGE_EXECUTE_WRITECOPY  0x80
433 #define PAGE_GUARD              0x100
434 #define PAGE_NOCACHE            0x200
435
436 #define MEM_COMMIT              0x00001000
437 #define MEM_RESERVE             0x00002000
438 #define MEM_DECOMMIT            0x00004000
439 #define MEM_RELEASE             0x00008000
440 #define MEM_FREE                0x00010000
441 #define MEM_PRIVATE             0x00020000
442 #define MEM_MAPPED              0x00040000
443 #define MEM_RESET               0x00080000
444 #define MEM_TOP_DOWN            0x00100000
445 #ifdef __WINESRC__
446 #define MEM_SYSTEM              0x80000000
447 #endif
448
449 #define SEC_FILE                0x00800000
450 #define SEC_IMAGE               0x01000000
451 #define SEC_RESERVE             0x04000000
452 #define SEC_COMMIT              0x08000000
453 #define SEC_NOCACHE             0x10000000
454 #define MEM_IMAGE               SEC_IMAGE
455
456
457 #define MINCHAR       0x80
458 #define MAXCHAR       0x7f
459 #define MINSHORT      0x8000
460 #define MAXSHORT      0x7fff
461 #define MINLONG       0x80000000
462 #define MAXLONG       0x7fffffff
463 #define MAXBYTE       0xff
464 #define MAXWORD       0xffff
465 #define MAXDWORD      0xffffffff
466
467 #define FIELD_OFFSET(type, field) \
468   ((LONG)(INT)&(((type *)0)->field))
469
470 #define CONTAINING_RECORD(address, type, field) \
471   ((type *)((PCHAR)(address) - (PCHAR)(&((type *)0)->field)))
472
473 /* Types */
474
475 typedef struct _LIST_ENTRY {
476   struct _LIST_ENTRY *Flink;
477   struct _LIST_ENTRY *Blink;
478 } LIST_ENTRY, *PLIST_ENTRY, * RESTRICTED_POINTER PRLIST_ENTRY;
479
480 typedef struct _SINGLE_LIST_ENTRY {
481   struct _SINGLE_LIST_ENTRY *Next;
482 } SINGLE_LIST_ENTRY, *PSINGLE_LIST_ENTRY;
483
484 /* Heap flags */
485
486 #define HEAP_NO_SERIALIZE               0x00000001
487 #define HEAP_GROWABLE                   0x00000002
488 #define HEAP_GENERATE_EXCEPTIONS        0x00000004
489 #define HEAP_ZERO_MEMORY                0x00000008
490 #define HEAP_REALLOC_IN_PLACE_ONLY      0x00000010
491 #define HEAP_TAIL_CHECKING_ENABLED      0x00000020
492 #define HEAP_FREE_CHECKING_ENABLED      0x00000040
493 #define HEAP_DISABLE_COALESCE_ON_FREE   0x00000080
494 #define HEAP_CREATE_ALIGN_16            0x00010000
495 #define HEAP_CREATE_ENABLE_TRACING      0x00020000
496
497 /* This flag allows it to create heaps shared by all processes under win95,
498    FIXME: correct name */
499 #define HEAP_SHARED                     0x04000000
500
501 /* Processor feature flags.  */
502 #define PF_FLOATING_POINT_PRECISION_ERRATA      0
503 #define PF_FLOATING_POINT_EMULATED              1
504 #define PF_COMPARE_EXCHANGE_DOUBLE              2
505 #define PF_MMX_INSTRUCTIONS_AVAILABLE           3
506 #define PF_PPC_MOVEMEM_64BIT_OK                 4
507 #define PF_ALPHA_BYTE_INSTRUCTIONS              5
508 #define PF_XMMI_INSTRUCTIONS_AVAILABLE          6
509 #define PF_AMD3D_INSTRUCTIONS_AVAILABLE         7
510 #define PF_RDTSC_INSTRUCTION_AVAILABLE          8
511
512
513 /* Execution state flags */
514 #define ES_SYSTEM_REQUIRED    0x00000001
515 #define ES_DISPLAY_REQUIRED   0x00000002
516 #define ES_USER_PRESENT       0x00000004
517 #define ES_CONTINUOUS         0x80000000
518
519 /* The Win32 register context */
520
521 /* CONTEXT is the CPU-dependent context; it should be used        */
522 /* wherever a platform-specific context is needed (e.g. exception */
523 /* handling, Win32 register functions). */
524
525 /* CONTEXT86 is the i386-specific context; it should be used     */
526 /* wherever only a 386 context makes sense (e.g. DOS interrupts, */
527 /* Win16 register functions), so that this code can be compiled  */
528 /* on all platforms. */
529
530 #define SIZE_OF_80387_REGISTERS      80
531
532 typedef struct _FLOATING_SAVE_AREA
533 {
534     DWORD   ControlWord;
535     DWORD   StatusWord;
536     DWORD   TagWord;
537     DWORD   ErrorOffset;
538     DWORD   ErrorSelector;
539     DWORD   DataOffset;
540     DWORD   DataSelector;
541     BYTE    RegisterArea[SIZE_OF_80387_REGISTERS];
542     DWORD   Cr0NpxState;
543 } FLOATING_SAVE_AREA, *PFLOATING_SAVE_AREA;
544
545 #define MAXIMUM_SUPPORTED_EXTENSION     512
546
547 typedef struct _CONTEXT86
548 {
549     DWORD   ContextFlags;
550
551     /* These are selected by CONTEXT_DEBUG_REGISTERS */
552     DWORD   Dr0;
553     DWORD   Dr1;
554     DWORD   Dr2;
555     DWORD   Dr3;
556     DWORD   Dr6;
557     DWORD   Dr7;
558
559     /* These are selected by CONTEXT_FLOATING_POINT */
560     FLOATING_SAVE_AREA FloatSave;
561
562     /* These are selected by CONTEXT_SEGMENTS */
563     DWORD   SegGs;
564     DWORD   SegFs;
565     DWORD   SegEs;
566     DWORD   SegDs;
567
568     /* These are selected by CONTEXT_INTEGER */
569     DWORD   Edi;
570     DWORD   Esi;
571     DWORD   Ebx;
572     DWORD   Edx;
573     DWORD   Ecx;
574     DWORD   Eax;
575
576     /* These are selected by CONTEXT_CONTROL */
577     DWORD   Ebp;
578     DWORD   Eip;
579     DWORD   SegCs;
580     DWORD   EFlags;
581     DWORD   Esp;
582     DWORD   SegSs;
583
584     BYTE    ExtendedRegisters[MAXIMUM_SUPPORTED_EXTENSION];
585 } CONTEXT86;
586
587 #define CONTEXT_X86       0x00010000
588 #define CONTEXT_i386      CONTEXT_X86
589 #define CONTEXT_i486      CONTEXT_X86
590
591 #define CONTEXT86_CONTROL   (CONTEXT_i386 | 0x0001) /* SS:SP, CS:IP, FLAGS, BP */
592 #define CONTEXT86_INTEGER   (CONTEXT_i386 | 0x0002) /* AX, BX, CX, DX, SI, DI */
593 #define CONTEXT86_SEGMENTS  (CONTEXT_i386 | 0x0004) /* DS, ES, FS, GS */
594 #define CONTEXT86_FLOATING_POINT  (CONTEXT_i386 | 0x0008L) /* 387 state */
595 #define CONTEXT86_DEBUG_REGISTERS (CONTEXT_i386 | 0x0010L) /* DB 0-3,6,7 */
596 #define CONTEXT86_FULL (CONTEXT86_CONTROL | CONTEXT86_INTEGER | CONTEXT86_SEGMENTS)
597
598 /* i386 context definitions */
599 #ifdef __i386__
600
601 #define CONTEXT_CONTROL         CONTEXT86_CONTROL
602 #define CONTEXT_INTEGER         CONTEXT86_INTEGER
603 #define CONTEXT_SEGMENTS        CONTEXT86_SEGMENTS
604 #define CONTEXT_FLOATING_POINT  CONTEXT86_FLOATING_POINT
605 #define CONTEXT_DEBUG_REGISTERS CONTEXT86_DEBUG_REGISTERS
606 #define CONTEXT_FULL            CONTEXT86_FULL
607
608 typedef CONTEXT86 CONTEXT;
609
610 #endif  /* __i386__ */
611
612 /* Alpha context definitions */
613 #ifdef _ALPHA_
614
615 #define CONTEXT_ALPHA   0x00020000
616
617 #define CONTEXT_CONTROL         (CONTEXT_ALPHA | 0x00000001L)
618 #define CONTEXT_FLOATING_POINT  (CONTEXT_ALPHA | 0x00000002L)
619 #define CONTEXT_INTEGER         (CONTEXT_ALPHA | 0x00000004L)
620 #define CONTEXT_FULL  (CONTEXT_CONTROL | CONTEXT_FLOATING_POINT | CONTEXT_INTEGER)
621
622 typedef struct _CONTEXT
623 {
624     /* selected by CONTEXT_FLOATING_POINT */
625     ULONGLONG FltF0;
626     ULONGLONG FltF1;
627     ULONGLONG FltF2;
628     ULONGLONG FltF3;
629     ULONGLONG FltF4;
630     ULONGLONG FltF5;
631     ULONGLONG FltF6;
632     ULONGLONG FltF7;
633     ULONGLONG FltF8;
634     ULONGLONG FltF9;
635     ULONGLONG FltF10;
636     ULONGLONG FltF11;
637     ULONGLONG FltF12;
638     ULONGLONG FltF13;
639     ULONGLONG FltF14;
640     ULONGLONG FltF15;
641     ULONGLONG FltF16;
642     ULONGLONG FltF17;
643     ULONGLONG FltF18;
644     ULONGLONG FltF19;
645     ULONGLONG FltF20;
646     ULONGLONG FltF21;
647     ULONGLONG FltF22;
648     ULONGLONG FltF23;
649     ULONGLONG FltF24;
650     ULONGLONG FltF25;
651     ULONGLONG FltF26;
652     ULONGLONG FltF27;
653     ULONGLONG FltF28;
654     ULONGLONG FltF29;
655     ULONGLONG FltF30;
656     ULONGLONG FltF31;
657
658     /* selected by CONTEXT_INTEGER */
659     ULONGLONG IntV0;
660     ULONGLONG IntT0;
661     ULONGLONG IntT1;
662     ULONGLONG IntT2;
663     ULONGLONG IntT3;
664     ULONGLONG IntT4;
665     ULONGLONG IntT5;
666     ULONGLONG IntT6;
667     ULONGLONG IntT7;
668     ULONGLONG IntS0;
669     ULONGLONG IntS1;
670     ULONGLONG IntS2;
671     ULONGLONG IntS3;
672     ULONGLONG IntS4;
673     ULONGLONG IntS5;
674     ULONGLONG IntFp;
675     ULONGLONG IntA0;
676     ULONGLONG IntA1;
677     ULONGLONG IntA2;
678     ULONGLONG IntA3;
679     ULONGLONG IntA4;
680     ULONGLONG IntA5;
681     ULONGLONG IntT8;
682     ULONGLONG IntT9;
683     ULONGLONG IntT10;
684     ULONGLONG IntT11;
685     ULONGLONG IntRa;
686     ULONGLONG IntT12;
687     ULONGLONG IntAt;
688     ULONGLONG IntGp;
689     ULONGLONG IntSp;
690     ULONGLONG IntZero;
691
692     /* selected by CONTEXT_FLOATING_POINT */
693     ULONGLONG Fpcr;
694     ULONGLONG SoftFpcr;
695
696     /* selected by CONTEXT_CONTROL */
697     ULONGLONG Fir;
698     DWORD Psr;
699     DWORD ContextFlags;
700     DWORD Fill[4];
701 } CONTEXT;
702
703 #define _QUAD_PSR_OFFSET   HighSoftFpcr
704 #define _QUAD_FLAGS_OFFSET HighFir
705
706 #endif  /* _ALPHA_ */
707
708 /* Mips context definitions */
709 #ifdef _MIPS_
710
711 #define CONTEXT_R4000   0x00010000
712
713 #define CONTEXT_CONTROL         (CONTEXT_R4000 | 0x00000001)
714 #define CONTEXT_FLOATING_POINT  (CONTEXT_R4000 | 0x00000002)
715 #define CONTEXT_INTEGER         (CONTEXT_R4000 | 0x00000004)
716
717 #define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_FLOATING_POINT | CONTEXT_INTEGER)
718
719 typedef struct _CONTEXT
720 {
721     DWORD Argument[4];
722     /* These are selected by CONTEXT_FLOATING_POINT */
723     DWORD FltF0;
724     DWORD FltF1;
725     DWORD FltF2;
726     DWORD FltF3;
727     DWORD FltF4;
728     DWORD FltF5;
729     DWORD FltF6;
730     DWORD FltF7;
731     DWORD FltF8;
732     DWORD FltF9;
733     DWORD FltF10;
734     DWORD FltF11;
735     DWORD FltF12;
736     DWORD FltF13;
737     DWORD FltF14;
738     DWORD FltF15;
739     DWORD FltF16;
740     DWORD FltF17;
741     DWORD FltF18;
742     DWORD FltF19;
743     DWORD FltF20;
744     DWORD FltF21;
745     DWORD FltF22;
746     DWORD FltF23;
747     DWORD FltF24;
748     DWORD FltF25;
749     DWORD FltF26;
750     DWORD FltF27;
751     DWORD FltF28;
752     DWORD FltF29;
753     DWORD FltF30;
754     DWORD FltF31;
755
756     /* These are selected by CONTEXT_INTEGER */
757     DWORD IntZero;
758     DWORD IntAt;
759     DWORD IntV0;
760     DWORD IntV1;
761     DWORD IntA0;
762     DWORD IntA1;
763     DWORD IntA2;
764     DWORD IntA3;
765     DWORD IntT0;
766     DWORD IntT1;
767     DWORD IntT2;
768     DWORD IntT3;
769     DWORD IntT4;
770     DWORD IntT5;
771     DWORD IntT6;
772     DWORD IntT7;
773     DWORD IntS0;
774     DWORD IntS1;
775     DWORD IntS2;
776     DWORD IntS3;
777     DWORD IntS4;
778     DWORD IntS5;
779     DWORD IntS6;
780     DWORD IntS7;
781     DWORD IntT8;
782     DWORD IntT9;
783     DWORD IntK0;
784     DWORD IntK1;
785     DWORD IntGp;
786     DWORD IntSp;
787     DWORD IntS8;
788     DWORD IntRa;
789     DWORD IntLo;
790     DWORD IntHi;
791
792     /* These are selected by CONTEXT_FLOATING_POINT */
793     DWORD Fsr;
794
795     /* These are selected by CONTEXT_CONTROL */
796     DWORD Fir;
797     DWORD Psr;
798
799     DWORD ContextFlags;
800     DWORD Fill[2];
801 } CONTEXT;
802
803 #endif  /* _MIPS_ */
804
805 /* PowerPC context definitions */
806 #ifdef __PPC__
807
808 #define CONTEXT_CONTROL         0x0001
809 #define CONTEXT_FLOATING_POINT  0x0002
810 #define CONTEXT_INTEGER         0x0004
811 #define CONTEXT_DEBUG_REGISTERS 0x0008
812 #define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_FLOATING_POINT | CONTEXT_INTEGER)
813
814 typedef struct
815 {
816     /* These are selected by CONTEXT_FLOATING_POINT */
817     double Fpr0;
818     double Fpr1;
819     double Fpr2;
820     double Fpr3;
821     double Fpr4;
822     double Fpr5;
823     double Fpr6;
824     double Fpr7;
825     double Fpr8;
826     double Fpr9;
827     double Fpr10;
828     double Fpr11;
829     double Fpr12;
830     double Fpr13;
831     double Fpr14;
832     double Fpr15;
833     double Fpr16;
834     double Fpr17;
835     double Fpr18;
836     double Fpr19;
837     double Fpr20;
838     double Fpr21;
839     double Fpr22;
840     double Fpr23;
841     double Fpr24;
842     double Fpr25;
843     double Fpr26;
844     double Fpr27;
845     double Fpr28;
846     double Fpr29;
847     double Fpr30;
848     double Fpr31;
849     double Fpscr;
850
851     /* These are selected by CONTEXT_INTEGER */
852     DWORD Gpr0;
853     DWORD Gpr1;
854     DWORD Gpr2;
855     DWORD Gpr3;
856     DWORD Gpr4;
857     DWORD Gpr5;
858     DWORD Gpr6;
859     DWORD Gpr7;
860     DWORD Gpr8;
861     DWORD Gpr9;
862     DWORD Gpr10;
863     DWORD Gpr11;
864     DWORD Gpr12;
865     DWORD Gpr13;
866     DWORD Gpr14;
867     DWORD Gpr15;
868     DWORD Gpr16;
869     DWORD Gpr17;
870     DWORD Gpr18;
871     DWORD Gpr19;
872     DWORD Gpr20;
873     DWORD Gpr21;
874     DWORD Gpr22;
875     DWORD Gpr23;
876     DWORD Gpr24;
877     DWORD Gpr25;
878     DWORD Gpr26;
879     DWORD Gpr27;
880     DWORD Gpr28;
881     DWORD Gpr29;
882     DWORD Gpr30;
883     DWORD Gpr31;
884
885     DWORD Cr;
886     DWORD Xer;
887
888     /* These are selected by CONTEXT_CONTROL */
889     DWORD Msr;
890     DWORD Iar; /* Instruction Address Register , aka PC ... */
891     DWORD Lr;
892     DWORD Ctr;
893
894     DWORD ContextFlags;
895     
896     DWORD Dar;   /* Fault registers for coredump */
897     DWORD Dsisr; 
898     DWORD Trap;  /* number of powerpc exception taken */
899
900     /* These are selected by CONTEXT_DEBUG_REGISTERS */
901     DWORD Dr0;
902     DWORD Dr1;
903     DWORD Dr2;
904     DWORD Dr3;
905     DWORD Dr4;
906     DWORD Dr5;
907     DWORD Dr6;
908     DWORD Dr7;
909 } CONTEXT;
910
911 typedef struct _STACK_FRAME_HEADER
912 {
913     DWORD BackChain;
914     DWORD GlueSaved1;
915     DWORD GlueSaved2;
916     DWORD Reserved1;
917     DWORD Spare1;
918     DWORD Spare2;
919
920     DWORD Parameter0;
921     DWORD Parameter1;
922     DWORD Parameter2;
923     DWORD Parameter3;
924     DWORD Parameter4;
925     DWORD Parameter5;
926     DWORD Parameter6;
927     DWORD Parameter7;
928 } STACK_FRAME_HEADER,*PSTACK_FRAME_HEADER;
929
930 #endif  /* __PPC__ */
931
932 #ifdef __ALPHA__
933
934 /*
935  * FIXME:
936  *
937  * I have no idea if any of this is right as I just ripped 
938  * it from mingw-win32api.
939  *
940  */
941
942 #define CONTEXT_ALPHA 0x20000
943 #define CONTEXT_CONTROL (CONTEXT_ALPHA|1L)
944 #define CONTEXT_FLOATING_POINT (CONTEXT_ALPHA|2L)
945 #define CONTEXT_INTEGER (CONTEXT_ALPHA|4L)
946 #define CONTEXT_FULL (CONTEXT_CONTROL|CONTEXT_FLOATING_POINT|CONTEXT_INTEGER)
947 typedef struct _CONTEXT {
948         ULONGLONG FltF0;
949         ULONGLONG FltF1;
950         ULONGLONG FltF2;
951         ULONGLONG FltF3;
952         ULONGLONG FltF4;
953         ULONGLONG FltF5;
954         ULONGLONG FltF6;
955         ULONGLONG FltF7;
956         ULONGLONG FltF8;
957         ULONGLONG FltF9;
958         ULONGLONG FltF10;
959         ULONGLONG FltF11;
960         ULONGLONG FltF12;
961         ULONGLONG FltF13;
962         ULONGLONG FltF14;
963         ULONGLONG FltF15;
964         ULONGLONG FltF16;
965         ULONGLONG FltF17;
966         ULONGLONG FltF18;
967         ULONGLONG FltF19;
968         ULONGLONG FltF20;
969         ULONGLONG FltF21;
970         ULONGLONG FltF22;
971         ULONGLONG FltF23;
972         ULONGLONG FltF24;
973         ULONGLONG FltF25;
974         ULONGLONG FltF26;
975         ULONGLONG FltF27;
976         ULONGLONG FltF28;
977         ULONGLONG FltF29;
978         ULONGLONG FltF30;
979         ULONGLONG FltF31;
980         ULONGLONG IntV0;
981         ULONGLONG IntT0;
982         ULONGLONG IntT1;
983         ULONGLONG IntT2;
984         ULONGLONG IntT3;
985         ULONGLONG IntT4;
986         ULONGLONG IntT5;
987         ULONGLONG IntT6;
988         ULONGLONG IntT7;
989         ULONGLONG IntS0;
990         ULONGLONG IntS1;
991         ULONGLONG IntS2;
992         ULONGLONG IntS3;
993         ULONGLONG IntS4;
994         ULONGLONG IntS5;
995         ULONGLONG IntFp;
996         ULONGLONG IntA0;
997         ULONGLONG IntA1;
998         ULONGLONG IntA2;
999         ULONGLONG IntA3;
1000         ULONGLONG IntA4;
1001         ULONGLONG IntA5;
1002         ULONGLONG IntT8;
1003         ULONGLONG IntT9;
1004         ULONGLONG IntT10;
1005         ULONGLONG IntT11;
1006         ULONGLONG IntRa;
1007         ULONGLONG IntT12;
1008         ULONGLONG IntAt;
1009         ULONGLONG IntGp;
1010         ULONGLONG IntSp;
1011         ULONGLONG IntZero;
1012         ULONGLONG Fpcr;
1013         ULONGLONG SoftFpcr;
1014         ULONGLONG Fir;
1015         DWORD Psr;
1016         DWORD ContextFlags;
1017         DWORD Fill[4];
1018 } CONTEXT;
1019
1020 #endif  /* __ALPHA__ */
1021
1022 #ifdef __sparc__
1023
1024 /*
1025  * FIXME:
1026  *
1027  * There is no official CONTEXT structure defined for the SPARC
1028  * architecture, so I just made one up.
1029  *
1030  * This structure is valid only for 32-bit SPARC architectures,
1031  * not for 64-bit SPARC.
1032  *
1033  * Note that this structure contains only the 'top-level' registers;
1034  * the rest of the register window chain is not visible.
1035  *
1036  * The layout follows the Solaris 'prgregset_t' structure.
1037  *
1038  */
1039
1040 #define CONTEXT_SPARC            0x10000000
1041
1042 #define CONTEXT_CONTROL         (CONTEXT_SPARC | 0x00000001)
1043 #define CONTEXT_FLOATING_POINT  (CONTEXT_SPARC | 0x00000002)
1044 #define CONTEXT_INTEGER         (CONTEXT_SPARC | 0x00000004)
1045
1046 #define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_FLOATING_POINT | CONTEXT_INTEGER)
1047
1048 typedef struct _CONTEXT
1049 {
1050     DWORD ContextFlags;
1051
1052     /* These are selected by CONTEXT_INTEGER */
1053     DWORD g0;
1054     DWORD g1;
1055     DWORD g2;
1056     DWORD g3;
1057     DWORD g4;
1058     DWORD g5;
1059     DWORD g6;
1060     DWORD g7;
1061     DWORD o0;
1062     DWORD o1;
1063     DWORD o2;
1064     DWORD o3;
1065     DWORD o4;
1066     DWORD o5;
1067     DWORD o6;
1068     DWORD o7;
1069     DWORD l0;
1070     DWORD l1;
1071     DWORD l2;
1072     DWORD l3;
1073     DWORD l4;
1074     DWORD l5;
1075     DWORD l6;
1076     DWORD l7;
1077     DWORD i0;
1078     DWORD i1;
1079     DWORD i2;
1080     DWORD i3;
1081     DWORD i4;
1082     DWORD i5;
1083     DWORD i6;
1084     DWORD i7;
1085
1086     /* These are selected by CONTEXT_CONTROL */
1087     DWORD psr;
1088     DWORD pc;
1089     DWORD npc;
1090     DWORD y;
1091     DWORD wim;
1092     DWORD tbr;
1093
1094     /* FIXME: floating point registers missing */
1095
1096 } CONTEXT;
1097
1098 #endif  /* __sparc__ */
1099
1100 #if !defined(CONTEXT_FULL) && !defined(RC_INVOKED)
1101 #error You need to define a CONTEXT for your CPU
1102 #endif
1103
1104 typedef CONTEXT *PCONTEXT;
1105
1106 #ifdef __WINESRC__
1107
1108 /* Macros to retrieve the current context */
1109
1110 #ifdef __i386__
1111
1112 #define _DEFINE_REGS_ENTRYPOINT( name, fn, args ) \
1113     __ASM_GLOBAL_FUNC( name, \
1114                        "call " __ASM_NAME("__wine_call_from_32_regs") "\n\t" \
1115                        ".long " __ASM_NAME(#fn) "\n\t" \
1116                        ".byte " #args ", " #args )
1117 #define DEFINE_REGS_ENTRYPOINT_0( name, fn ) \
1118   extern void WINAPI name(void); \
1119   _DEFINE_REGS_ENTRYPOINT( name, fn, 0 )
1120 #define DEFINE_REGS_ENTRYPOINT_1( name, fn, t1 ) \
1121   extern void WINAPI name( t1 a1 ); \
1122   _DEFINE_REGS_ENTRYPOINT( name, fn, 4 )
1123 #define DEFINE_REGS_ENTRYPOINT_2( name, fn, t1, t2 ) \
1124   extern void WINAPI name( t1 a1, t2 a2 ); \
1125   _DEFINE_REGS_ENTRYPOINT( name, fn, 8 )
1126 #define DEFINE_REGS_ENTRYPOINT_3( name, fn, t1, t2, t3 ) \
1127   extern void WINAPI name( t1 a1, t2 a2, t3 a3 ); \
1128   _DEFINE_REGS_ENTRYPOINT( name, fn, 12 )
1129 #define DEFINE_REGS_ENTRYPOINT_4( name, fn, t1, t2, t3, t4 ) \
1130   extern void WINAPI name( t1 a1, t2 a2, t3 a3, t4 a4 ); \
1131   _DEFINE_REGS_ENTRYPOINT( name, fn, 16 )
1132
1133 #endif  /* __i386__ */
1134
1135 #ifdef __sparc__
1136
1137 #ifdef __SUNPRO_C
1138 static DWORD __builtin_return_address(int p_iDepth)
1139 {
1140   asm("ta      3");
1141   asm("tst     %i0");
1142   asm("be      End");
1143   asm("mov     %fp, %l0");
1144   asm("Start:");
1145   asm("sub     %i0, 1, %i0");
1146   asm("tst     %i0");
1147   asm("bne     Start");
1148   asm("ld      [%l0+56], %l0");
1149   asm("End:");
1150   asm("ld      [%l0+60], %i0");
1151 }
1152 #endif
1153
1154 /* FIXME: use getcontext() to retrieve full context */
1155 #define _GET_CONTEXT \
1156     CONTEXT context;   \
1157     do { memset(&context, 0, sizeof(CONTEXT));            \
1158          context.ContextFlags = CONTEXT_CONTROL;          \
1159          context.pc = (DWORD)__builtin_return_address(0); \
1160        } while (0)
1161
1162 #define DEFINE_REGS_ENTRYPOINT_0( name, fn ) \
1163   void WINAPI name ( void ) \
1164   { _GET_CONTEXT; fn( &context ); }
1165 #define DEFINE_REGS_ENTRYPOINT_1( name, fn, t1 ) \
1166   void WINAPI name ( t1 a1 ) \
1167   { _GET_CONTEXT; fn( a1, &context ); }
1168 #define DEFINE_REGS_ENTRYPOINT_2( name, fn, t1, t2 ) \
1169   void WINAPI name ( t1 a1, t2 a2 ) \
1170   { _GET_CONTEXT; fn( a1, a2, &context ); }
1171 #define DEFINE_REGS_ENTRYPOINT_3( name, fn, t1, t2, t3 ) \
1172   void WINAPI name ( t1 a1, t2 a2, t3 a3 ) \
1173   { _GET_CONTEXT; fn( a1, a2, a3, &context ); }
1174 #define DEFINE_REGS_ENTRYPOINT_4( name, fn, t1, t2, t3, t4 ) \
1175   void WINAPI name ( t1 a1, t2 a2, t3 a3, t4 a4 ) \
1176   { _GET_CONTEXT; fn( a1, a2, a3, a4, &context ); }
1177
1178 #endif /* __sparc__ */
1179
1180 #ifdef __PPC__
1181
1182 /* FIXME: use getcontext() to retrieve full context */
1183 #define _GET_CONTEXT \
1184     CONTEXT context;   \
1185     do { memset(&context, 0, sizeof(CONTEXT));            \
1186          context.ContextFlags = CONTEXT_CONTROL;          \
1187        } while (0)
1188
1189 #define DEFINE_REGS_ENTRYPOINT_0( name, fn ) \
1190   void WINAPI name ( void ) \
1191   { _GET_CONTEXT; fn( &context ); }
1192 #define DEFINE_REGS_ENTRYPOINT_1( name, fn, t1 ) \
1193   void WINAPI name ( t1 a1 ) \
1194   { _GET_CONTEXT; fn( a1, &context ); }
1195 #define DEFINE_REGS_ENTRYPOINT_2( name, fn, t1, t2 ) \
1196   void WINAPI name ( t1 a1, t2 a2 ) \
1197   { _GET_CONTEXT; fn( a1, a2, &context ); }
1198 #define DEFINE_REGS_ENTRYPOINT_3( name, fn, t1, t2, t3 ) \
1199   void WINAPI name ( t1 a1, t2 a2, t3 a3 ) \
1200   { _GET_CONTEXT; fn( a1, a2, a3, &context ); }
1201 #define DEFINE_REGS_ENTRYPOINT_4( name, fn, t1, t2, t3, t4 ) \
1202   void WINAPI name ( t1 a1, t2 a2, t3 a3, t4 a4 ) \
1203   { _GET_CONTEXT; fn( a1, a2, a3, a4, &context ); }
1204
1205 #endif /* __PPC__ */
1206
1207 #ifdef __ALPHA__
1208
1209 /* FIXME: 
1210  * use getcontext() to retrieve full context 
1211  * I dont know if this is correct for alpha as was ripped from 
1212  * PPC support.
1213  */
1214
1215 #define _GET_CONTEXT \
1216     CONTEXT context;   \
1217     do { memset(&context, 0, sizeof(CONTEXT));            \
1218          context.ContextFlags = CONTEXT_CONTROL;          \
1219        } while (0)
1220
1221 #define DEFINE_REGS_ENTRYPOINT_0( name, fn ) \
1222   void WINAPI name ( void ) \
1223   { _GET_CONTEXT; fn( &context ); }
1224 #define DEFINE_REGS_ENTRYPOINT_1( name, fn, t1 ) \
1225   void WINAPI name ( t1 a1 ) \
1226   { _GET_CONTEXT; fn( a1, &context ); }
1227 #define DEFINE_REGS_ENTRYPOINT_2( name, fn, t1, t2 ) \
1228   void WINAPI name ( t1 a1, t2 a2 ) \
1229   { _GET_CONTEXT; fn( a1, a2, &context ); }
1230 #define DEFINE_REGS_ENTRYPOINT_3( name, fn, t1, t2, t3 ) \
1231   void WINAPI name ( t1 a1, t2 a2, t3 a3 ) \
1232   { _GET_CONTEXT; fn( a1, a2, a3, &context ); }
1233 #define DEFINE_REGS_ENTRYPOINT_4( name, fn, t1, t2, t3, t4 ) \
1234   void WINAPI name ( t1 a1, t2 a2, t3 a3, t4 a4 ) \
1235   { _GET_CONTEXT; fn( a1, a2, a3, a4, &context ); }
1236
1237 #endif /* __ALPHA__ */
1238
1239 #ifndef DEFINE_REGS_ENTRYPOINT_0
1240 #error You need to define DEFINE_REGS_ENTRYPOINT macros for your CPU
1241 #endif
1242
1243 #endif  /* __WINESRC__ */
1244
1245 /*
1246  * Language IDs
1247  */
1248
1249 #define MAKELCID(l, s)          (MAKELONG(l, s))
1250
1251 #define MAKELANGID(p, s)        ((((WORD)(s))<<10) | (WORD)(p))
1252 #define PRIMARYLANGID(l)        ((WORD)(l) & 0x3ff)
1253 #define SUBLANGID(l)            ((WORD)(l) >> 10)
1254
1255 #define LANGIDFROMLCID(lcid)    ((WORD)(lcid))
1256 #define SORTIDFROMLCID(lcid)    ((WORD)((((DWORD)(lcid)) >> 16) & 0x0f))
1257
1258 #define LANG_SYSTEM_DEFAULT     (MAKELANGID(LANG_NEUTRAL, SUBLANG_SYS_DEFAULT))
1259 #define LANG_USER_DEFAULT       (MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT))
1260 #define LOCALE_SYSTEM_DEFAULT   (MAKELCID(LANG_SYSTEM_DEFAULT, SORT_DEFAULT))
1261 #define LOCALE_USER_DEFAULT     (MAKELCID(LANG_USER_DEFAULT, SORT_DEFAULT))
1262 #define LOCALE_NEUTRAL          (MAKELCID(MAKELANGID(LANG_NEUTRAL,SUBLANG_NEUTRAL),SORT_DEFAULT))
1263
1264 #define UNREFERENCED_PARAMETER(u)       (u)
1265 #define DBG_UNREFERENCED_PARAMETER(u)   (u)
1266 #define DBG_UNREFERENCED_LOCAL_VARIABLE(u) (u)
1267
1268 /* FIXME: are the symbolic names correct for LIDs:  0x17, 0x28,
1269  *        0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x3a, 0x3b, 0x3c
1270  */
1271 #define LANG_NEUTRAL        0x00
1272 #define LANG_INVARIANT      0x7f
1273
1274 #define LANG_AFRIKAANS      0x36
1275 #define LANG_ALBANIAN       0x1c
1276 #define LANG_ARABIC         0x01
1277 #define LANG_ARMENIAN       0x2b
1278 #define LANG_ASSAMESE       0x4d
1279 #define LANG_AZERI          0x2c
1280 #define LANG_BASQUE         0x2d
1281 #define LANG_BELARUSIAN     0x23
1282 #define LANG_BENGALI        0x45
1283 #define LANG_BULGARIAN      0x02
1284 #define LANG_CATALAN        0x03
1285 #define LANG_CHINESE        0x04
1286 #define LANG_CROATIAN       0x1a
1287 #define LANG_CZECH          0x05
1288 #define LANG_DANISH         0x06
1289 #define LANG_DIVEHI         0x65
1290 #define LANG_DUTCH          0x13
1291 #define LANG_ENGLISH        0x09
1292 #define LANG_ESTONIAN       0x25
1293 #define LANG_FAEROESE       0x38
1294 #define LANG_FARSI          0x29
1295 #define LANG_FINNISH        0x0b
1296 #define LANG_FRENCH         0x0c
1297 #define LANG_GALICIAN       0x56
1298 #define LANG_GEORGIAN       0x37
1299 #define LANG_GERMAN         0x07
1300 #define LANG_GREEK          0x08
1301 #define LANG_GUJARATI       0x47
1302 #define LANG_HEBREW         0x0d
1303 #define LANG_HINDI          0x39
1304 #define LANG_HUNGARIAN      0x0e
1305 #define LANG_ICELANDIC      0x0f
1306 #define LANG_INDONESIAN     0x21
1307 #define LANG_ITALIAN        0x10
1308 #define LANG_JAPANESE       0x11
1309 #define LANG_KANNADA        0x4b
1310 #define LANG_KASHMIRI       0x60
1311 #define LANG_KAZAK          0x3f
1312 #define LANG_KONKANI        0x57
1313 #define LANG_KOREAN         0x12
1314 #define LANG_KYRGYZ         0x40
1315 #define LANG_LATVIAN        0x26
1316 #define LANG_LITHUANIAN     0x27
1317 #define LANG_MACEDONIAN     0x2f
1318 #define LANG_MALAY          0x3e
1319 #define LANG_MALAYALAM      0x4c
1320 #define LANG_MANIPURI       0x58
1321 #define LANG_MARATHI        0x4e
1322 #define LANG_MONGOLIAN      0x50
1323 #define LANG_NEPALI         0x61
1324 #define LANG_NORWEGIAN      0x14
1325 #define LANG_ORIYA          0x48
1326 #define LANG_POLISH         0x15
1327 #define LANG_PORTUGUESE     0x16
1328 #define LANG_PUNJABI        0x46
1329 #define LANG_ROMANIAN       0x18
1330 #define LANG_RUSSIAN        0x19
1331 #define LANG_SANSKRIT       0x4f
1332 #define LANG_SERBIAN        0x1a
1333 #define LANG_SINDHI         0x59
1334 #define LANG_SLOVAK         0x1b
1335 #define LANG_SLOVENIAN      0x24
1336 #define LANG_SPANISH        0x0a
1337 #define LANG_SWAHILI        0x41
1338 #define LANG_SWEDISH        0x1d
1339 #define LANG_SYRIAC         0x5a
1340 #define LANG_TAMIL          0x49
1341 #define LANG_TATAR          0x44
1342 #define LANG_TELUGU         0x4a
1343 #define LANG_THAI           0x1e
1344 #define LANG_TURKISH        0x1f
1345 #define LANG_UKRAINIAN      0x22
1346 #define LANG_URDU           0x20
1347 #define LANG_UZBEK          0x43
1348 #define LANG_VIETNAMESE     0x2a
1349
1350 /* FIXME: these are not in the Windows header */
1351 #define LANG_GAELIC         0x3c
1352 #define LANG_MALTESE        0x3a
1353 #define LANG_MAORI          0x28
1354 #define LANG_RHAETO_ROMANCE 0x17
1355 #define LANG_SAAMI          0x3b
1356 #define LANG_SORBIAN        0x2e
1357 #define LANG_SUTU           0x30
1358 #define LANG_TSONGA         0x31
1359 #define LANG_TSWANA         0x32
1360 #define LANG_VENDA          0x33
1361 #define LANG_XHOSA          0x34
1362 #define LANG_ZULU           0x35
1363
1364 /* non standard; keep the number high enough (but < 0xff) */
1365 #define LANG_ESPERANTO                   0x8f
1366 #define LANG_WALON                       0x90
1367 #define LANG_CORNISH                     0x91
1368 #define LANG_WELSH                       0x92
1369 #define LANG_BRETON                      0x93
1370
1371 /* Sublanguage definitions */
1372 #define SUBLANG_NEUTRAL                  0x00    /* language neutral */
1373 #define SUBLANG_DEFAULT                  0x01    /* user default */
1374 #define SUBLANG_SYS_DEFAULT              0x02    /* system default */
1375
1376 #define SUBLANG_ARABIC_SAUDI_ARABIA        0x01
1377 #define SUBLANG_ARABIC_IRAQ                0x02
1378 #define SUBLANG_ARABIC_EGYPT               0x03
1379 #define SUBLANG_ARABIC_LIBYA               0x04
1380 #define SUBLANG_ARABIC_ALGERIA             0x05
1381 #define SUBLANG_ARABIC_MOROCCO             0x06
1382 #define SUBLANG_ARABIC_TUNISIA             0x07
1383 #define SUBLANG_ARABIC_OMAN                0x08
1384 #define SUBLANG_ARABIC_YEMEN               0x09
1385 #define SUBLANG_ARABIC_SYRIA               0x0a
1386 #define SUBLANG_ARABIC_JORDAN              0x0b
1387 #define SUBLANG_ARABIC_LEBANON             0x0c
1388 #define SUBLANG_ARABIC_KUWAIT              0x0d
1389 #define SUBLANG_ARABIC_UAE                 0x0e
1390 #define SUBLANG_ARABIC_BAHRAIN             0x0f
1391 #define SUBLANG_ARABIC_QATAR               0x10
1392 #define SUBLANG_AZERI_LATIN                0x01
1393 #define SUBLANG_AZERI_CYRILLIC             0x02
1394 #define SUBLANG_CHINESE_TRADITIONAL        0x01
1395 #define SUBLANG_CHINESE_SIMPLIFIED         0x02
1396 #define SUBLANG_CHINESE_HONGKONG           0x03
1397 #define SUBLANG_CHINESE_SINGAPORE          0x04
1398 #define SUBLANG_CHINESE_MACAU              0x05
1399 #define SUBLANG_DUTCH                      0x01
1400 #define SUBLANG_DUTCH_BELGIAN              0x02
1401 #define SUBLANG_ENGLISH_US                 0x01
1402 #define SUBLANG_ENGLISH_UK                 0x02
1403 #define SUBLANG_ENGLISH_AUS                0x03
1404 #define SUBLANG_ENGLISH_CAN                0x04
1405 #define SUBLANG_ENGLISH_NZ                 0x05
1406 #define SUBLANG_ENGLISH_EIRE               0x06
1407 #define SUBLANG_ENGLISH_SOUTH_AFRICA       0x07
1408 #define SUBLANG_ENGLISH_JAMAICA            0x08
1409 #define SUBLANG_ENGLISH_CARIBBEAN          0x09
1410 #define SUBLANG_ENGLISH_BELIZE             0x0a
1411 #define SUBLANG_ENGLISH_TRINIDAD           0x0b
1412 #define SUBLANG_ENGLISH_ZIMBABWE           0x0c
1413 #define SUBLANG_ENGLISH_PHILIPPINES        0x0d
1414 #define SUBLANG_FRENCH                     0x01
1415 #define SUBLANG_FRENCH_BELGIAN             0x02
1416 #define SUBLANG_FRENCH_CANADIAN            0x03
1417 #define SUBLANG_FRENCH_SWISS               0x04
1418 #define SUBLANG_FRENCH_LUXEMBOURG          0x05
1419 #define SUBLANG_FRENCH_MONACO              0x06
1420 #define SUBLANG_GERMAN                     0x01
1421 #define SUBLANG_GERMAN_SWISS               0x02
1422 #define SUBLANG_GERMAN_AUSTRIAN            0x03
1423 #define SUBLANG_GERMAN_LUXEMBOURG          0x04
1424 #define SUBLANG_GERMAN_LIECHTENSTEIN       0x05
1425 #define SUBLANG_ITALIAN                    0x01
1426 #define SUBLANG_ITALIAN_SWISS              0x02
1427 #define SUBLANG_KASHMIRI_SASIA             0x02
1428 #define SUBLANG_KASHMIRI_INDIA             0x02
1429 #define SUBLANG_KOREAN                     0x01
1430 #define SUBLANG_LITHUANIAN                 0x01
1431 #define SUBLANG_MALAY_MALAYSIA             0x01
1432 #define SUBLANG_MALAY_BRUNEI_DARUSSALAM    0x02
1433 #define SUBLANG_NEPALI_INDIA               0x02
1434 #define SUBLANG_NORWEGIAN_BOKMAL           0x01
1435 #define SUBLANG_NORWEGIAN_NYNORSK          0x02
1436 #define SUBLANG_PORTUGUESE                 0x02
1437 #define SUBLANG_PORTUGUESE_BRAZILIAN       0x01
1438 #define SUBLANG_SERBIAN_LATIN              0x02
1439 #define SUBLANG_SERBIAN_CYRILLIC           0x03
1440 #define SUBLANG_SPANISH                    0x01
1441 #define SUBLANG_SPANISH_MEXICAN            0x02
1442 #define SUBLANG_SPANISH_MODERN             0x03
1443 #define SUBLANG_SPANISH_GUATEMALA          0x04
1444 #define SUBLANG_SPANISH_COSTA_RICA         0x05
1445 #define SUBLANG_SPANISH_PANAMA             0x06
1446 #define SUBLANG_SPANISH_DOMINICAN_REPUBLIC 0x07
1447 #define SUBLANG_SPANISH_VENEZUELA          0x08
1448 #define SUBLANG_SPANISH_COLOMBIA           0x09
1449 #define SUBLANG_SPANISH_PERU               0x0a
1450 #define SUBLANG_SPANISH_ARGENTINA          0x0b
1451 #define SUBLANG_SPANISH_ECUADOR            0x0c
1452 #define SUBLANG_SPANISH_CHILE              0x0d
1453 #define SUBLANG_SPANISH_URUGUAY            0x0e
1454 #define SUBLANG_SPANISH_PARAGUAY           0x0f
1455 #define SUBLANG_SPANISH_BOLIVIA            0x10
1456 #define SUBLANG_SPANISH_EL_SALVADOR        0x11
1457 #define SUBLANG_SPANISH_HONDURAS           0x12
1458 #define SUBLANG_SPANISH_NICARAGUA          0x13
1459 #define SUBLANG_SPANISH_PUERTO_RICO        0x14
1460 #define SUBLANG_SWEDISH                    0x01
1461 #define SUBLANG_SWEDISH_FINLAND            0x02
1462 #define SUBLANG_URDU_PAKISTAN              0x01
1463 #define SUBLANG_URDU_INDIA                 0x02
1464 #define SUBLANG_UZBEK_LATIN                0x01
1465 #define SUBLANG_UZBEK_CYRILLIC             0x02
1466
1467 /* FIXME: these are not in the Windows header */
1468 #define SUBLANG_DUTCH_SURINAM              0x03
1469 #define SUBLANG_ROMANIAN                   0x01
1470 #define SUBLANG_ROMANIAN_MOLDAVIA          0x02
1471 #define SUBLANG_RUSSIAN                    0x01
1472 #define SUBLANG_RUSSIAN_MOLDAVIA           0x02
1473 #define SUBLANG_CROATIAN                   0x01
1474 #define SUBLANG_LITHUANIAN_CLASSIC         0x02
1475 #define SUBLANG_GAELIC                     0x01
1476 #define SUBLANG_GAELIC_SCOTTISH            0x02
1477 #define SUBLANG_GAELIC_MANX                0x03
1478
1479
1480 /*
1481  * Sort definitions
1482  */
1483
1484 #define SORT_DEFAULT                     0x0
1485 #define SORT_JAPANESE_XJIS               0x0
1486 #define SORT_JAPANESE_UNICODE            0x1
1487 #define SORT_CHINESE_BIG5                0x0
1488 #define SORT_CHINESE_UNICODE             0x1
1489 #define SORT_KOREAN_KSC                  0x0
1490 #define SORT_KOREAN_UNICODE              0x1
1491
1492
1493
1494 /*
1495  * Definitions for IsTextUnicode()
1496  */
1497
1498 #define IS_TEXT_UNICODE_ASCII16            0x0001
1499 #define IS_TEXT_UNICODE_STATISTICS         0x0002
1500 #define IS_TEXT_UNICODE_CONTROLS           0x0004
1501 #define IS_TEXT_UNICODE_SIGNATURE          0x0008
1502 #define IS_TEXT_UNICODE_UNICODE_MASK       0x000F
1503 #define IS_TEXT_UNICODE_REVERSE_ASCII16    0x0010
1504 #define IS_TEXT_UNICODE_REVERSE_STATISTICS 0x0020
1505 #define IS_TEXT_UNICODE_REVERSE_CONTROLS   0x0040
1506 #define IS_TEXT_UNICODE_REVERSE_SIGNATURE  0x0080
1507 #define IS_TEXT_UNICODE_REVERSE_MASK       0x00F0
1508 #define IS_TEXT_UNICODE_ILLEGAL_CHARS      0x0100
1509 #define IS_TEXT_UNICODE_ODD_LENGTH         0x0200
1510 #define IS_TEXT_UNICODE_DBCS_LEADBYTE      0x0400
1511 #define IS_TEXT_UNICODE_NOT_UNICODE_MASK   0x0F00
1512 #define IS_TEXT_UNICODE_NULL_BYTES         0x1000
1513 #define IS_TEXT_UNICODE_NOT_ASCII_MASK     0xF000
1514
1515 #include "ntstatus.h"
1516
1517 #define MAXIMUM_WAIT_OBJECTS 64
1518 #define MAXIMUM_SUSPEND_COUNT 127
1519
1520
1521 /*
1522  * From OS/2 2.0 exception handling
1523  * Win32 seems to use the same flags as ExceptionFlags in an EXCEPTION_RECORD
1524  */
1525
1526 #define EH_NONCONTINUABLE   0x01
1527 #define EH_UNWINDING        0x02
1528 #define EH_EXIT_UNWIND      0x04
1529 #define EH_STACK_INVALID    0x08
1530 #define EH_NESTED_CALL      0x10
1531
1532 #define EXCEPTION_CONTINUABLE        0
1533 #define EXCEPTION_NONCONTINUABLE     EH_NONCONTINUABLE
1534
1535 /*
1536  * The exception record used by Win32 to give additional information
1537  * about exception to exception handlers.
1538  */
1539
1540 #define EXCEPTION_MAXIMUM_PARAMETERS 15
1541
1542 typedef struct __EXCEPTION_RECORD
1543 {
1544     DWORD    ExceptionCode;
1545     DWORD    ExceptionFlags;
1546     struct __EXCEPTION_RECORD *ExceptionRecord;
1547
1548     LPVOID   ExceptionAddress;
1549     DWORD    NumberParameters;
1550     DWORD    ExceptionInformation[EXCEPTION_MAXIMUM_PARAMETERS];
1551 } EXCEPTION_RECORD, *PEXCEPTION_RECORD;
1552
1553 /*
1554  * The exception pointers structure passed to exception filters
1555  * in except() and the UnhandledExceptionFilter().
1556  */
1557
1558 typedef struct _EXCEPTION_POINTERS
1559 {
1560   PEXCEPTION_RECORD  ExceptionRecord;
1561   PCONTEXT           ContextRecord;
1562 } EXCEPTION_POINTERS, *PEXCEPTION_POINTERS;
1563
1564
1565 /*
1566  * The exception frame, used for registering exception handlers
1567  * Win32 cares only about this, but compilers generally emit
1568  * larger exception frames for their own use.
1569  */
1570
1571 struct __EXCEPTION_FRAME;
1572
1573 typedef DWORD (*PEXCEPTION_HANDLER)(PEXCEPTION_RECORD,struct __EXCEPTION_FRAME*,
1574                                     PCONTEXT,struct __EXCEPTION_FRAME **);
1575
1576 typedef struct __EXCEPTION_FRAME
1577 {
1578   struct __EXCEPTION_FRAME *Prev;
1579   PEXCEPTION_HANDLER       Handler;
1580 } EXCEPTION_FRAME, *PEXCEPTION_FRAME;
1581
1582 /*
1583  * function pointer to a exception filter
1584  */
1585
1586 typedef LONG (CALLBACK *PTOP_LEVEL_EXCEPTION_FILTER)(PEXCEPTION_POINTERS ExceptionInfo);
1587 typedef PTOP_LEVEL_EXCEPTION_FILTER LPTOP_LEVEL_EXCEPTION_FILTER;
1588
1589 DWORD WINAPI UnhandledExceptionFilter( PEXCEPTION_POINTERS epointers );
1590 LPTOP_LEVEL_EXCEPTION_FILTER
1591 WINAPI SetUnhandledExceptionFilter( LPTOP_LEVEL_EXCEPTION_FILTER filter );
1592
1593 /* status values for ContinueDebugEvent */
1594 #define DBG_CONTINUE                0x00010002
1595 #define DBG_TERMINATE_THREAD        0x40010003
1596 #define DBG_TERMINATE_PROCESS       0x40010004
1597 #define DBG_CONTROL_C               0x40010005
1598 #define DBG_CONTROL_BREAK           0x40010008
1599 #define DBG_EXCEPTION_NOT_HANDLED   0x80010001
1600
1601 typedef struct _NT_TIB
1602 {
1603         struct _EXCEPTION_REGISTRATION_RECORD *ExceptionList;
1604         PVOID StackBase;
1605         PVOID StackLimit;
1606         PVOID SubSystemTib;
1607         union {
1608           PVOID FiberData;
1609           DWORD Version;
1610         } DUMMYUNIONNAME;
1611         PVOID ArbitraryUserPointer;
1612         struct _NT_TIB *Self;
1613 } NT_TIB, *PNT_TIB;
1614
1615 struct _TEB;
1616
1617 #if defined(__i386__) && defined(__GNUC__)
1618 extern inline struct _TEB * WINAPI NtCurrentTeb(void);
1619 extern inline struct _TEB * WINAPI NtCurrentTeb(void)
1620 {
1621     struct _TEB *teb;
1622     __asm__(".byte 0x64\n\tmovl (0x18),%0" : "=r" (teb));
1623     return teb;
1624 }
1625 #elif defined(__i386__) && defined(_MSC_VER)
1626 extern inline struct _TEB * WINAPI NtCurrentTeb(void)
1627 {
1628   struct _TEB *teb;
1629   __asm mov eax, fs:[0x18];
1630   __asm mov teb, eax;
1631   return teb;
1632 }
1633 #elif defined(__powerpc__)
1634 extern inline struct _TEB * WINAPI NtCurrentTeb(void);
1635 extern inline struct _TEB * WINAPI NtCurrentTeb(void)
1636 {
1637     struct _TEB *teb;
1638 # ifdef __darwin__
1639     __asm__("\tmr %0, r13" : "=r" (teb));
1640 # else
1641     __asm__("\tmr %0, 2" : "=r" (teb));
1642 # endif
1643     return teb;
1644 }
1645 #else
1646 extern struct _TEB * WINAPI NtCurrentTeb(void);
1647 #endif
1648
1649 #ifdef NONAMELESSUNION
1650 #define GetCurrentFiber()  (((NT_TIB *)NtCurrentTeb())->u.FiberData)
1651 #else
1652 #define GetCurrentFiber()  (((NT_TIB *)NtCurrentTeb())->FiberData)
1653 #endif
1654 #define GetFiberData()     (*(void **)GetCurrentFiber())
1655
1656 /*
1657  * File formats definitions
1658  */
1659
1660 #include "pshpack2.h"
1661 typedef struct _IMAGE_DOS_HEADER {
1662     WORD  e_magic;      /* 00: MZ Header signature */
1663     WORD  e_cblp;       /* 02: Bytes on last page of file */
1664     WORD  e_cp;         /* 04: Pages in file */
1665     WORD  e_crlc;       /* 06: Relocations */
1666     WORD  e_cparhdr;    /* 08: Size of header in paragraphs */
1667     WORD  e_minalloc;   /* 0a: Minimum extra paragraphs needed */
1668     WORD  e_maxalloc;   /* 0c: Maximum extra paragraphs needed */
1669     WORD  e_ss;         /* 0e: Initial (relative) SS value */
1670     WORD  e_sp;         /* 10: Initial SP value */
1671     WORD  e_csum;       /* 12: Checksum */
1672     WORD  e_ip;         /* 14: Initial IP value */
1673     WORD  e_cs;         /* 16: Initial (relative) CS value */
1674     WORD  e_lfarlc;     /* 18: File address of relocation table */
1675     WORD  e_ovno;       /* 1a: Overlay number */
1676     WORD  e_res[4];     /* 1c: Reserved words */
1677     WORD  e_oemid;      /* 24: OEM identifier (for e_oeminfo) */
1678     WORD  e_oeminfo;    /* 26: OEM information; e_oemid specific */
1679     WORD  e_res2[10];   /* 28: Reserved words */
1680     DWORD e_lfanew;     /* 3c: Offset to extended header */
1681 } IMAGE_DOS_HEADER, *PIMAGE_DOS_HEADER;
1682 #include "poppack.h"
1683
1684 #define IMAGE_DOS_SIGNATURE    0x5A4D     /* MZ   */
1685 #define IMAGE_OS2_SIGNATURE    0x454E     /* NE   */
1686 #define IMAGE_OS2_SIGNATURE_LE 0x454C     /* LE   */
1687 #define IMAGE_OS2_SIGNATURE_LX 0x584C     /* LX */
1688 #define IMAGE_VXD_SIGNATURE    0x454C     /* LE   */
1689 #define IMAGE_NT_SIGNATURE     0x00004550 /* PE00 */
1690
1691 /*
1692  * This is the Windows executable (NE) header.
1693  * the name IMAGE_OS2_HEADER is misleading, but in the SDK this way.
1694  */
1695 #include "pshpack2.h"
1696 typedef struct
1697 {
1698     WORD  ne_magic;             /* 00 NE signature 'NE' */
1699     BYTE  ne_ver;               /* 02 Linker version number */
1700     BYTE  ne_rev;               /* 03 Linker revision number */
1701     WORD  ne_enttab;            /* 04 Offset to entry table relative to NE */
1702     WORD  ne_cbenttab;          /* 06 Length of entry table in bytes */
1703     LONG  ne_crc;               /* 08 Checksum */
1704     WORD  ne_flags;             /* 0c Flags about segments in this file */
1705     WORD  ne_autodata;          /* 0e Automatic data segment number */
1706     WORD  ne_heap;              /* 10 Initial size of local heap */
1707     WORD  ne_stack;             /* 12 Initial size of stack */
1708     DWORD ne_csip;              /* 14 Initial CS:IP */
1709     DWORD ne_sssp;              /* 18 Initial SS:SP */
1710     WORD  ne_cseg;              /* 1c # of entries in segment table */
1711     WORD  ne_cmod;              /* 1e # of entries in module reference tab. */
1712     WORD  ne_cbnrestab;         /* 20 Length of nonresident-name table     */
1713     WORD  ne_segtab;            /* 22 Offset to segment table */
1714     WORD  ne_rsrctab;           /* 24 Offset to resource table */
1715     WORD  ne_restab;            /* 26 Offset to resident-name table */
1716     WORD  ne_modtab;            /* 28 Offset to module reference table */
1717     WORD  ne_imptab;            /* 2a Offset to imported name table */
1718     DWORD ne_nrestab;           /* 2c Offset to nonresident-name table */
1719     WORD  ne_cmovent;           /* 30 # of movable entry points */
1720     WORD  ne_align;             /* 32 Logical sector alignment shift count */
1721     WORD  ne_cres;              /* 34 # of resource segments */
1722     BYTE  ne_exetyp;            /* 36 Flags indicating target OS */
1723     BYTE  ne_flagsothers;       /* 37 Additional information flags */
1724     WORD  ne_pretthunks;        /* 38 Offset to return thunks */
1725     WORD  ne_psegrefbytes;      /* 3a Offset to segment ref. bytes */
1726     WORD  ne_swaparea;          /* 3c Reserved by Microsoft */
1727     WORD  ne_expver;            /* 3e Expected Windows version number */
1728 } IMAGE_OS2_HEADER, *PIMAGE_OS2_HEADER;
1729 #include "poppack.h"
1730
1731 #include "pshpack2.h"
1732 typedef struct _IMAGE_VXD_HEADER {
1733   WORD  e32_magic;
1734   BYTE  e32_border;
1735   BYTE  e32_worder;
1736   DWORD e32_level;
1737   WORD  e32_cpu;
1738   WORD  e32_os;
1739   DWORD e32_ver;
1740   DWORD e32_mflags;
1741   DWORD e32_mpages;
1742   DWORD e32_startobj;
1743   DWORD e32_eip;
1744   DWORD e32_stackobj;
1745   DWORD e32_esp;
1746   DWORD e32_pagesize;
1747   DWORD e32_lastpagesize;
1748   DWORD e32_fixupsize;
1749   DWORD e32_fixupsum;
1750   DWORD e32_ldrsize;
1751   DWORD e32_ldrsum;
1752   DWORD e32_objtab;
1753   DWORD e32_objcnt;
1754   DWORD e32_objmap;
1755   DWORD e32_itermap;
1756   DWORD e32_rsrctab;
1757   DWORD e32_rsrccnt;
1758   DWORD e32_restab;
1759   DWORD e32_enttab;
1760   DWORD e32_dirtab;
1761   DWORD e32_dircnt;
1762   DWORD e32_fpagetab;
1763   DWORD e32_frectab;
1764   DWORD e32_impmod;
1765   DWORD e32_impmodcnt;
1766   DWORD e32_impproc;
1767   DWORD e32_pagesum;
1768   DWORD e32_datapage;
1769   DWORD e32_preload;
1770   DWORD e32_nrestab;
1771   DWORD e32_cbnrestab;
1772   DWORD e32_nressum;
1773   DWORD e32_autodata;
1774   DWORD e32_debuginfo;
1775   DWORD e32_debuglen;
1776   DWORD e32_instpreload;
1777   DWORD e32_instdemand;
1778   DWORD e32_heapsize;
1779   BYTE  e32_res3[12];
1780   DWORD e32_winresoff;
1781   DWORD e32_winreslen;
1782   WORD  e32_devid;
1783   WORD  e32_ddkver;
1784 } IMAGE_VXD_HEADER, *PIMAGE_VXD_HEADER;
1785 #include "poppack.h"
1786
1787 /* These defines describe the meanings of the bits in the Characteristics
1788    field */
1789
1790 #define IMAGE_FILE_RELOCS_STRIPPED      0x0001 /* No relocation info */
1791 #define IMAGE_FILE_EXECUTABLE_IMAGE     0x0002
1792 #define IMAGE_FILE_LINE_NUMS_STRIPPED   0x0004
1793 #define IMAGE_FILE_LOCAL_SYMS_STRIPPED  0x0008
1794 #define IMAGE_FILE_AGGRESIVE_WS_TRIM    0x0010
1795 #define IMAGE_FILE_LARGE_ADDRESS_AWARE  0x0020
1796 #define IMAGE_FILE_16BIT_MACHINE        0x0040
1797 #define IMAGE_FILE_BYTES_REVERSED_LO    0x0080
1798 #define IMAGE_FILE_32BIT_MACHINE        0x0100
1799 #define IMAGE_FILE_DEBUG_STRIPPED       0x0200
1800 #define IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP      0x0400
1801 #define IMAGE_FILE_SYSTEM               0x1000
1802 #define IMAGE_FILE_DLL                  0x2000
1803 #define IMAGE_FILE_UP_SYSTEM_ONLY       0x4000
1804 #define IMAGE_FILE_BYTES_REVERSED_HI    0x8000
1805
1806 /* These are the settings of the Machine field. */
1807 #define IMAGE_FILE_MACHINE_UNKNOWN      0
1808 #define IMAGE_FILE_MACHINE_I860         0x14d
1809 #define IMAGE_FILE_MACHINE_I386         0x14c
1810 #define IMAGE_FILE_MACHINE_R3000        0x162
1811 #define IMAGE_FILE_MACHINE_R4000        0x166
1812 #define IMAGE_FILE_MACHINE_R10000       0x168
1813 #define IMAGE_FILE_MACHINE_ALPHA        0x184
1814 #define IMAGE_FILE_MACHINE_POWERPC      0x1F0
1815
1816 #define IMAGE_SIZEOF_FILE_HEADER        20
1817
1818 /* Possible Magic values */
1819 #define IMAGE_NT_OPTIONAL_HDR_MAGIC        0x10b
1820 #define IMAGE_ROM_OPTIONAL_HDR_MAGIC       0x107
1821
1822 /* These are indexes into the DataDirectory array */
1823 #define IMAGE_FILE_EXPORT_DIRECTORY             0
1824 #define IMAGE_FILE_IMPORT_DIRECTORY             1
1825 #define IMAGE_FILE_RESOURCE_DIRECTORY           2
1826 #define IMAGE_FILE_EXCEPTION_DIRECTORY          3
1827 #define IMAGE_FILE_SECURITY_DIRECTORY           4
1828 #define IMAGE_FILE_BASE_RELOCATION_TABLE        5
1829 #define IMAGE_FILE_DEBUG_DIRECTORY              6
1830 #define IMAGE_FILE_DESCRIPTION_STRING           7
1831 #define IMAGE_FILE_MACHINE_VALUE                8  /* Mips */
1832 #define IMAGE_FILE_THREAD_LOCAL_STORAGE         9
1833 #define IMAGE_FILE_CALLBACK_DIRECTORY           10
1834
1835 /* Directory Entries, indices into the DataDirectory array */
1836
1837 #define IMAGE_DIRECTORY_ENTRY_EXPORT            0
1838 #define IMAGE_DIRECTORY_ENTRY_IMPORT            1
1839 #define IMAGE_DIRECTORY_ENTRY_RESOURCE          2
1840 #define IMAGE_DIRECTORY_ENTRY_EXCEPTION         3
1841 #define IMAGE_DIRECTORY_ENTRY_SECURITY          4
1842 #define IMAGE_DIRECTORY_ENTRY_BASERELOC         5
1843 #define IMAGE_DIRECTORY_ENTRY_DEBUG             6
1844 #define IMAGE_DIRECTORY_ENTRY_COPYRIGHT         7
1845 #define IMAGE_DIRECTORY_ENTRY_GLOBALPTR         8   /* (MIPS GP) */
1846 #define IMAGE_DIRECTORY_ENTRY_TLS               9
1847 #define IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG       10
1848 #define IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT      11
1849 #define IMAGE_DIRECTORY_ENTRY_IAT               12  /* Import Address Table */
1850 #define IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT      13
1851 #define IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR    14
1852
1853 /* Subsystem Values */
1854
1855 #define IMAGE_SUBSYSTEM_UNKNOWN         0
1856 #define IMAGE_SUBSYSTEM_NATIVE          1
1857 #define IMAGE_SUBSYSTEM_WINDOWS_GUI     2       /* Windows GUI subsystem */
1858 #define IMAGE_SUBSYSTEM_WINDOWS_CUI     3       /* Windows character subsystem*/
1859 #define IMAGE_SUBSYSTEM_OS2_CUI         5
1860 #define IMAGE_SUBSYSTEM_POSIX_CUI       7
1861
1862 typedef struct _IMAGE_FILE_HEADER {
1863   WORD  Machine;
1864   WORD  NumberOfSections;
1865   DWORD TimeDateStamp;
1866   DWORD PointerToSymbolTable;
1867   DWORD NumberOfSymbols;
1868   WORD  SizeOfOptionalHeader;
1869   WORD  Characteristics;
1870 } IMAGE_FILE_HEADER, *PIMAGE_FILE_HEADER;
1871
1872 typedef struct _IMAGE_DATA_DIRECTORY {
1873   DWORD VirtualAddress;
1874   DWORD Size;
1875 } IMAGE_DATA_DIRECTORY, *PIMAGE_DATA_DIRECTORY;
1876
1877 #define IMAGE_NUMBEROF_DIRECTORY_ENTRIES 16
1878
1879 typedef struct _IMAGE_OPTIONAL_HEADER {
1880
1881   /* Standard fields */
1882
1883   WORD  Magic; /* 0x10b or 0x107 */     /* 0x00 */
1884   BYTE  MajorLinkerVersion;
1885   BYTE  MinorLinkerVersion;
1886   DWORD SizeOfCode;
1887   DWORD SizeOfInitializedData;
1888   DWORD SizeOfUninitializedData;
1889   DWORD AddressOfEntryPoint;            /* 0x10 */
1890   DWORD BaseOfCode;
1891   DWORD BaseOfData;
1892
1893   /* NT additional fields */
1894
1895   DWORD ImageBase;
1896   DWORD SectionAlignment;               /* 0x20 */
1897   DWORD FileAlignment;
1898   WORD  MajorOperatingSystemVersion;
1899   WORD  MinorOperatingSystemVersion;
1900   WORD  MajorImageVersion;
1901   WORD  MinorImageVersion;
1902   WORD  MajorSubsystemVersion;          /* 0x30 */
1903   WORD  MinorSubsystemVersion;
1904   DWORD Win32VersionValue;
1905   DWORD SizeOfImage;
1906   DWORD SizeOfHeaders;
1907   DWORD CheckSum;                       /* 0x40 */
1908   WORD  Subsystem;
1909   WORD  DllCharacteristics;
1910   DWORD SizeOfStackReserve;
1911   DWORD SizeOfStackCommit;
1912   DWORD SizeOfHeapReserve;              /* 0x50 */
1913   DWORD SizeOfHeapCommit;
1914   DWORD LoaderFlags;
1915   DWORD NumberOfRvaAndSizes;
1916   IMAGE_DATA_DIRECTORY DataDirectory[IMAGE_NUMBEROF_DIRECTORY_ENTRIES]; /* 0x60 */
1917   /* 0xE0 */
1918 } IMAGE_OPTIONAL_HEADER, *PIMAGE_OPTIONAL_HEADER;
1919
1920 typedef struct _IMAGE_NT_HEADERS {
1921   DWORD Signature; /* "PE"\0\0 */       /* 0x00 */
1922   IMAGE_FILE_HEADER FileHeader;         /* 0x04 */
1923   IMAGE_OPTIONAL_HEADER OptionalHeader; /* 0x18 */
1924 } IMAGE_NT_HEADERS, *PIMAGE_NT_HEADERS;
1925
1926 #define IMAGE_SIZEOF_SHORT_NAME 8
1927
1928 typedef struct _IMAGE_SECTION_HEADER {
1929   BYTE  Name[IMAGE_SIZEOF_SHORT_NAME];
1930   union {
1931     DWORD PhysicalAddress;
1932     DWORD VirtualSize;
1933   } Misc;
1934   DWORD VirtualAddress;
1935   DWORD SizeOfRawData;
1936   DWORD PointerToRawData;
1937   DWORD PointerToRelocations;
1938   DWORD PointerToLinenumbers;
1939   WORD  NumberOfRelocations;
1940   WORD  NumberOfLinenumbers;
1941   DWORD Characteristics;
1942 } IMAGE_SECTION_HEADER, *PIMAGE_SECTION_HEADER;
1943
1944 #define IMAGE_SIZEOF_SECTION_HEADER 40
1945
1946 #define IMAGE_FIRST_SECTION(ntheader) \
1947   ((PIMAGE_SECTION_HEADER)((LPBYTE)&((PIMAGE_NT_HEADERS)(ntheader))->OptionalHeader + \
1948                            ((PIMAGE_NT_HEADERS)(ntheader))->FileHeader.SizeOfOptionalHeader))
1949
1950 /* These defines are for the Characteristics bitfield. */
1951 /* #define IMAGE_SCN_TYPE_REG                   0x00000000 - Reserved */
1952 /* #define IMAGE_SCN_TYPE_DSECT                 0x00000001 - Reserved */
1953 /* #define IMAGE_SCN_TYPE_NOLOAD                0x00000002 - Reserved */
1954 /* #define IMAGE_SCN_TYPE_GROUP                 0x00000004 - Reserved */
1955 /* #define IMAGE_SCN_TYPE_NO_PAD                0x00000008 - Reserved */
1956 /* #define IMAGE_SCN_TYPE_COPY                  0x00000010 - Reserved */
1957
1958 #define IMAGE_SCN_CNT_CODE                      0x00000020
1959 #define IMAGE_SCN_CNT_INITIALIZED_DATA          0x00000040
1960 #define IMAGE_SCN_CNT_UNINITIALIZED_DATA        0x00000080
1961
1962 #define IMAGE_SCN_LNK_OTHER                     0x00000100
1963 #define IMAGE_SCN_LNK_INFO                      0x00000200
1964 /* #define      IMAGE_SCN_TYPE_OVER             0x00000400 - Reserved */
1965 #define IMAGE_SCN_LNK_REMOVE                    0x00000800
1966 #define IMAGE_SCN_LNK_COMDAT                    0x00001000
1967
1968 /*                                              0x00002000 - Reserved */
1969 /* #define IMAGE_SCN_MEM_PROTECTED              0x00004000 - Obsolete */
1970 #define IMAGE_SCN_MEM_FARDATA                   0x00008000
1971
1972 /* #define IMAGE_SCN_MEM_SYSHEAP                0x00010000 - Obsolete */
1973 #define IMAGE_SCN_MEM_PURGEABLE                 0x00020000
1974 #define IMAGE_SCN_MEM_16BIT                     0x00020000
1975 #define IMAGE_SCN_MEM_LOCKED                    0x00040000
1976 #define IMAGE_SCN_MEM_PRELOAD                   0x00080000
1977
1978 #define IMAGE_SCN_ALIGN_1BYTES                  0x00100000
1979 #define IMAGE_SCN_ALIGN_2BYTES                  0x00200000
1980 #define IMAGE_SCN_ALIGN_4BYTES                  0x00300000
1981 #define IMAGE_SCN_ALIGN_8BYTES                  0x00400000
1982 #define IMAGE_SCN_ALIGN_16BYTES                 0x00500000  /* Default */
1983 #define IMAGE_SCN_ALIGN_32BYTES                 0x00600000
1984 #define IMAGE_SCN_ALIGN_64BYTES                 0x00700000
1985 /*                                              0x00800000 - Unused */
1986
1987 #define IMAGE_SCN_LNK_NRELOC_OVFL               0x01000000
1988
1989
1990 #define IMAGE_SCN_MEM_DISCARDABLE               0x02000000
1991 #define IMAGE_SCN_MEM_NOT_CACHED                0x04000000
1992 #define IMAGE_SCN_MEM_NOT_PAGED                 0x08000000
1993 #define IMAGE_SCN_MEM_SHARED                    0x10000000
1994 #define IMAGE_SCN_MEM_EXECUTE                   0x20000000
1995 #define IMAGE_SCN_MEM_READ                      0x40000000
1996 #define IMAGE_SCN_MEM_WRITE                     0x80000000
1997
1998 #include "pshpack2.h"
1999
2000 typedef struct _IMAGE_SYMBOL {
2001     union {
2002         BYTE    ShortName[8];
2003         struct {
2004             DWORD   Short;
2005             DWORD   Long;
2006         } Name;
2007         DWORD   LongName[2];
2008     } N;
2009     DWORD   Value;
2010     SHORT   SectionNumber;
2011     WORD    Type;
2012     BYTE    StorageClass;
2013     BYTE    NumberOfAuxSymbols;
2014 } IMAGE_SYMBOL;
2015 typedef IMAGE_SYMBOL *PIMAGE_SYMBOL;
2016
2017 #define IMAGE_SIZEOF_SYMBOL 18
2018
2019 typedef struct _IMAGE_LINENUMBER {
2020     union {
2021         DWORD   SymbolTableIndex;
2022         DWORD   VirtualAddress;
2023     } Type;
2024     WORD    Linenumber;
2025 } IMAGE_LINENUMBER;
2026 typedef IMAGE_LINENUMBER *PIMAGE_LINENUMBER;
2027
2028 #define IMAGE_SIZEOF_LINENUMBER  6
2029
2030 typedef union _IMAGE_AUX_SYMBOL {
2031     struct {
2032         DWORD    TagIndex;
2033         union {
2034             struct {
2035                 WORD    Linenumber;
2036                 WORD    Size;
2037             } LnSz;
2038            DWORD    TotalSize;
2039         } Misc;
2040         union {
2041             struct {
2042                 DWORD    PointerToLinenumber;
2043                 DWORD    PointerToNextFunction;
2044             } Function;
2045             struct {
2046                 WORD     Dimension[4];
2047             } Array;
2048         } FcnAry;
2049         WORD    TvIndex;
2050     } Sym;
2051     struct {
2052         BYTE    Name[IMAGE_SIZEOF_SYMBOL];
2053     } File;
2054     struct {
2055         DWORD   Length;
2056         WORD    NumberOfRelocations;
2057         WORD    NumberOfLinenumbers;
2058         DWORD   CheckSum;
2059         SHORT   Number;
2060         BYTE    Selection;
2061     } Section;
2062 } IMAGE_AUX_SYMBOL;
2063 typedef IMAGE_AUX_SYMBOL *PIMAGE_AUX_SYMBOL;
2064
2065 #define IMAGE_SIZEOF_AUX_SYMBOL 18
2066
2067 #include "poppack.h"
2068
2069 #define IMAGE_SYM_UNDEFINED           (SHORT)0
2070 #define IMAGE_SYM_ABSOLUTE            (SHORT)-1
2071 #define IMAGE_SYM_DEBUG               (SHORT)-2
2072
2073 #define IMAGE_SYM_TYPE_NULL                 0x0000
2074 #define IMAGE_SYM_TYPE_VOID                 0x0001
2075 #define IMAGE_SYM_TYPE_CHAR                 0x0002
2076 #define IMAGE_SYM_TYPE_SHORT                0x0003
2077 #define IMAGE_SYM_TYPE_INT                  0x0004
2078 #define IMAGE_SYM_TYPE_LONG                 0x0005
2079 #define IMAGE_SYM_TYPE_FLOAT                0x0006
2080 #define IMAGE_SYM_TYPE_DOUBLE               0x0007
2081 #define IMAGE_SYM_TYPE_STRUCT               0x0008
2082 #define IMAGE_SYM_TYPE_UNION                0x0009
2083 #define IMAGE_SYM_TYPE_ENUM                 0x000A
2084 #define IMAGE_SYM_TYPE_MOE                  0x000B
2085 #define IMAGE_SYM_TYPE_BYTE                 0x000C
2086 #define IMAGE_SYM_TYPE_WORD                 0x000D
2087 #define IMAGE_SYM_TYPE_UINT                 0x000E
2088 #define IMAGE_SYM_TYPE_DWORD                0x000F
2089 #define IMAGE_SYM_TYPE_PCODE                0x8000
2090
2091 #define IMAGE_SYM_DTYPE_NULL                0
2092 #define IMAGE_SYM_DTYPE_POINTER             1
2093 #define IMAGE_SYM_DTYPE_FUNCTION            2
2094 #define IMAGE_SYM_DTYPE_ARRAY               3
2095
2096 #define IMAGE_SYM_CLASS_END_OF_FUNCTION     (BYTE )-1
2097 #define IMAGE_SYM_CLASS_NULL                0x0000
2098 #define IMAGE_SYM_CLASS_AUTOMATIC           0x0001
2099 #define IMAGE_SYM_CLASS_EXTERNAL            0x0002
2100 #define IMAGE_SYM_CLASS_STATIC              0x0003
2101 #define IMAGE_SYM_CLASS_REGISTER            0x0004
2102 #define IMAGE_SYM_CLASS_EXTERNAL_DEF        0x0005
2103 #define IMAGE_SYM_CLASS_LABEL               0x0006
2104 #define IMAGE_SYM_CLASS_UNDEFINED_LABEL     0x0007
2105 #define IMAGE_SYM_CLASS_MEMBER_OF_STRUCT    0x0008
2106 #define IMAGE_SYM_CLASS_ARGUMENT            0x0009
2107 #define IMAGE_SYM_CLASS_STRUCT_TAG          0x000A
2108 #define IMAGE_SYM_CLASS_MEMBER_OF_UNION     0x000B
2109 #define IMAGE_SYM_CLASS_UNION_TAG           0x000C
2110 #define IMAGE_SYM_CLASS_TYPE_DEFINITION     0x000D
2111 #define IMAGE_SYM_CLASS_UNDEFINED_STATIC    0x000E
2112 #define IMAGE_SYM_CLASS_ENUM_TAG            0x000F
2113 #define IMAGE_SYM_CLASS_MEMBER_OF_ENUM      0x0010
2114 #define IMAGE_SYM_CLASS_REGISTER_PARAM      0x0011
2115 #define IMAGE_SYM_CLASS_BIT_FIELD           0x0012
2116
2117 #define IMAGE_SYM_CLASS_FAR_EXTERNAL        0x0044
2118 #define IMAGE_SYM_CLASS_BLOCK               0x0064
2119 #define IMAGE_SYM_CLASS_FUNCTION            0x0065
2120 #define IMAGE_SYM_CLASS_END_OF_STRUCT       0x0066
2121 #define IMAGE_SYM_CLASS_FILE                0x0067
2122 #define IMAGE_SYM_CLASS_SECTION             0x0068
2123 #define IMAGE_SYM_CLASS_WEAK_EXTERNAL       0x0069
2124
2125 #define N_BTMASK                            0x000F
2126 #define N_TMASK                             0x0030
2127 #define N_TMASK1                            0x00C0
2128 #define N_TMASK2                            0x00F0
2129 #define N_BTSHFT                            4
2130 #define N_TSHIFT                            2
2131
2132 #define BTYPE(x) ((x) & N_BTMASK)
2133
2134 #ifndef ISPTR
2135 #define ISPTR(x) (((x) & N_TMASK) == (IMAGE_SYM_DTYPE_POINTER << N_BTSHFT))
2136 #endif
2137
2138 #ifndef ISFCN
2139 #define ISFCN(x) (((x) & N_TMASK) == (IMAGE_SYM_DTYPE_FUNCTION << N_BTSHFT))
2140 #endif
2141
2142 #ifndef ISARY
2143 #define ISARY(x) (((x) & N_TMASK) == (IMAGE_SYM_DTYPE_ARRAY << N_BTSHFT))
2144 #endif
2145
2146 #ifndef ISTAG
2147 #define ISTAG(x) ((x)==IMAGE_SYM_CLASS_STRUCT_TAG || (x)==IMAGE_SYM_CLASS_UNION_TAG || (x)==IMAGE_SYM_CLASS_ENUM_TAG)
2148 #endif
2149
2150 #ifndef INCREF
2151 #define INCREF(x) ((((x)&~N_BTMASK)<<N_TSHIFT)|(IMAGE_SYM_DTYPE_POINTER<<N_BTSHFT)|((x)&N_BTMASK))
2152 #endif
2153 #ifndef DECREF
2154 #define DECREF(x) ((((x)>>N_TSHIFT)&~N_BTMASK)|((x)&N_BTMASK))
2155 #endif
2156
2157 #define IMAGE_COMDAT_SELECT_NODUPLICATES    1
2158 #define IMAGE_COMDAT_SELECT_ANY             2
2159 #define IMAGE_COMDAT_SELECT_SAME_SIZE       3
2160 #define IMAGE_COMDAT_SELECT_EXACT_MATCH     4
2161 #define IMAGE_COMDAT_SELECT_ASSOCIATIVE     5
2162 #define IMAGE_COMDAT_SELECT_LARGEST         6
2163 #define IMAGE_COMDAT_SELECT_NEWEST          7
2164
2165 #define IMAGE_WEAK_EXTERN_SEARCH_NOLIBRARY  1
2166 #define IMAGE_WEAK_EXTERN_SEARCH_LIBRARY    2
2167 #define IMAGE_WEAK_EXTERN_SEARCH_ALIAS      3
2168
2169 /* Export module directory */
2170
2171 typedef struct _IMAGE_EXPORT_DIRECTORY {
2172         DWORD   Characteristics;
2173         DWORD   TimeDateStamp;
2174         WORD    MajorVersion;
2175         WORD    MinorVersion;
2176         DWORD   Name;
2177         DWORD   Base;
2178         DWORD   NumberOfFunctions;
2179         DWORD   NumberOfNames;
2180         DWORD   AddressOfFunctions;
2181         DWORD   AddressOfNames;
2182         DWORD   AddressOfNameOrdinals;
2183 } IMAGE_EXPORT_DIRECTORY,*PIMAGE_EXPORT_DIRECTORY;
2184
2185 /* Import name entry */
2186 typedef struct _IMAGE_IMPORT_BY_NAME {
2187         WORD    Hint;
2188         BYTE    Name[1];
2189 } IMAGE_IMPORT_BY_NAME,*PIMAGE_IMPORT_BY_NAME;
2190
2191 /* Import thunk */
2192 typedef struct _IMAGE_THUNK_DATA {
2193         union {
2194                 LPBYTE    ForwarderString;
2195                 PDWORD    Function;
2196                 DWORD     Ordinal;
2197                 PIMAGE_IMPORT_BY_NAME   AddressOfData;
2198         } u1;
2199 } IMAGE_THUNK_DATA,*PIMAGE_THUNK_DATA;
2200
2201 /* Import module directory */
2202
2203 typedef struct _IMAGE_IMPORT_DESCRIPTOR {
2204         union {
2205                 DWORD   Characteristics; /* 0 for terminating null import descriptor  */
2206                 PIMAGE_THUNK_DATA OriginalFirstThunk;   /* RVA to original unbound IAT */
2207         } u;
2208         DWORD   TimeDateStamp;  /* 0 if not bound,
2209                                  * -1 if bound, and real date\time stamp
2210                                  *    in IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT
2211                                  * (new BIND)
2212                                  * otherwise date/time stamp of DLL bound to
2213                                  * (Old BIND)
2214                                  */
2215         DWORD   ForwarderChain; /* -1 if no forwarders */
2216         DWORD   Name;
2217         /* RVA to IAT (if bound this IAT has actual addresses) */
2218         PIMAGE_THUNK_DATA FirstThunk;
2219 } IMAGE_IMPORT_DESCRIPTOR,*PIMAGE_IMPORT_DESCRIPTOR;
2220
2221 #define IMAGE_ORDINAL_FLAG              0x80000000
2222 #define IMAGE_SNAP_BY_ORDINAL(Ordinal)  ((Ordinal & IMAGE_ORDINAL_FLAG) != 0)
2223 #define IMAGE_ORDINAL(Ordinal)          (Ordinal & 0xffff)
2224
2225 typedef struct _IMAGE_BOUND_IMPORT_DESCRIPTOR
2226 {
2227     DWORD   TimeDateStamp;
2228     WORD    OffsetModuleName;
2229     WORD    NumberOfModuleForwarderRefs;
2230 /* Array of zero or more IMAGE_BOUND_FORWARDER_REF follows */
2231 } IMAGE_BOUND_IMPORT_DESCRIPTOR,  *PIMAGE_BOUND_IMPORT_DESCRIPTOR;
2232
2233 typedef struct _IMAGE_BOUND_FORWARDER_REF
2234 {
2235     DWORD   TimeDateStamp;
2236     WORD    OffsetModuleName;
2237     WORD    Reserved;
2238 } IMAGE_BOUND_FORWARDER_REF, *PIMAGE_BOUND_FORWARDER_REF;
2239
2240 typedef struct _IMAGE_BASE_RELOCATION
2241 {
2242         DWORD   VirtualAddress;
2243         DWORD   SizeOfBlock;
2244         /* WORD TypeOffset[1]; */
2245 } IMAGE_BASE_RELOCATION,*PIMAGE_BASE_RELOCATION;
2246
2247 #include "pshpack2.h"
2248
2249 typedef struct _IMAGE_RELOCATION
2250 {
2251     union {
2252         DWORD   VirtualAddress;
2253         DWORD   RelocCount;
2254     } DUMMYUNIONNAME;
2255     DWORD   SymbolTableIndex;
2256     WORD    Type;
2257 } IMAGE_RELOCATION, *PIMAGE_RELOCATION;
2258
2259 #include "poppack.h"
2260
2261 #define IMAGE_SIZEOF_RELOCATION 10
2262
2263 /* generic relocation types */
2264 #define IMAGE_REL_BASED_ABSOLUTE                0
2265 #define IMAGE_REL_BASED_HIGH                    1
2266 #define IMAGE_REL_BASED_LOW                     2
2267 #define IMAGE_REL_BASED_HIGHLOW                 3
2268 #define IMAGE_REL_BASED_HIGHADJ                 4
2269 #define IMAGE_REL_BASED_MIPS_JMPADDR            5
2270 #define IMAGE_REL_BASED_SECTION                 6
2271 #define IMAGE_REL_BASED_REL                     7
2272 #define IMAGE_REL_BASED_MIPS_JMPADDR16          9
2273 #define IMAGE_REL_BASED_IA64_IMM64              9 /* yes, 9 too */
2274 #define IMAGE_REL_BASED_DIR64                   10
2275 #define IMAGE_REL_BASED_HIGH3ADJ                11
2276
2277 /* I386 relocation types */
2278 #define IMAGE_REL_I386_ABSOLUTE                 0
2279 #define IMAGE_REL_I386_DIR16                    1
2280 #define IMAGE_REL_I386_REL16                    2
2281 #define IMAGE_REL_I386_DIR32                    6
2282 #define IMAGE_REL_I386_DIR32NB                  7
2283 #define IMAGE_REL_I386_SEG12                    9
2284 #define IMAGE_REL_I386_SECTION                  10
2285 #define IMAGE_REL_I386_SECREL                   11
2286 #define IMAGE_REL_I386_REL32                    20
2287
2288 /* MIPS relocation types */
2289 #define IMAGE_REL_MIPS_ABSOLUTE         0x0000
2290 #define IMAGE_REL_MIPS_REFHALF          0x0001
2291 #define IMAGE_REL_MIPS_REFWORD          0x0002
2292 #define IMAGE_REL_MIPS_JMPADDR          0x0003
2293 #define IMAGE_REL_MIPS_REFHI            0x0004
2294 #define IMAGE_REL_MIPS_REFLO            0x0005
2295 #define IMAGE_REL_MIPS_GPREL            0x0006
2296 #define IMAGE_REL_MIPS_LITERAL          0x0007
2297 #define IMAGE_REL_MIPS_SECTION          0x000A
2298 #define IMAGE_REL_MIPS_SECREL           0x000B
2299 #define IMAGE_REL_MIPS_SECRELLO         0x000C
2300 #define IMAGE_REL_MIPS_SECRELHI         0x000D
2301 #define IMAGE_REL_MIPS_JMPADDR16        0x0010
2302 #define IMAGE_REL_MIPS_REFWORDNB        0x0022
2303 #define IMAGE_REL_MIPS_PAIR             0x0025
2304
2305 /* ALPHA relocation types */
2306 #define IMAGE_REL_ALPHA_ABSOLUTE        0x0000
2307 #define IMAGE_REL_ALPHA_REFLONG         0x0001
2308 #define IMAGE_REL_ALPHA_REFQUAD         0x0002
2309 #define IMAGE_REL_ALPHA_GPREL           0x0003
2310 #define IMAGE_REL_ALPHA_LITERAL         0x0004
2311 #define IMAGE_REL_ALPHA_LITUSE          0x0005
2312 #define IMAGE_REL_ALPHA_GPDISP          0x0006
2313 #define IMAGE_REL_ALPHA_BRADDR          0x0007
2314 #define IMAGE_REL_ALPHA_HINT            0x0008
2315 #define IMAGE_REL_ALPHA_INLINE_REFLONG  0x0009
2316 #define IMAGE_REL_ALPHA_REFHI           0x000A
2317 #define IMAGE_REL_ALPHA_REFLO           0x000B
2318 #define IMAGE_REL_ALPHA_PAIR            0x000C
2319 #define IMAGE_REL_ALPHA_MATCH           0x000D
2320 #define IMAGE_REL_ALPHA_SECTION         0x000E
2321 #define IMAGE_REL_ALPHA_SECREL          0x000F
2322 #define IMAGE_REL_ALPHA_REFLONGNB       0x0010
2323 #define IMAGE_REL_ALPHA_SECRELLO        0x0011
2324 #define IMAGE_REL_ALPHA_SECRELHI        0x0012
2325 #define IMAGE_REL_ALPHA_REFQ3           0x0013
2326 #define IMAGE_REL_ALPHA_REFQ2           0x0014
2327 #define IMAGE_REL_ALPHA_REFQ1           0x0015
2328 #define IMAGE_REL_ALPHA_GPRELLO         0x0016
2329 #define IMAGE_REL_ALPHA_GPRELHI         0x0017
2330
2331 /* PowerPC relocation types */
2332 #define IMAGE_REL_PPC_ABSOLUTE          0x0000
2333 #define IMAGE_REL_PPC_ADDR64            0x0001
2334 #define IMAGE_REL_PPC_ADDR            0x0002
2335 #define IMAGE_REL_PPC_ADDR24            0x0003
2336 #define IMAGE_REL_PPC_ADDR16            0x0004
2337 #define IMAGE_REL_PPC_ADDR14            0x0005
2338 #define IMAGE_REL_PPC_REL24             0x0006
2339 #define IMAGE_REL_PPC_REL14             0x0007
2340 #define IMAGE_REL_PPC_TOCREL16          0x0008
2341 #define IMAGE_REL_PPC_TOCREL14          0x0009
2342 #define IMAGE_REL_PPC_ADDR32NB          0x000A
2343 #define IMAGE_REL_PPC_SECREL            0x000B
2344 #define IMAGE_REL_PPC_SECTION           0x000C
2345 #define IMAGE_REL_PPC_IFGLUE            0x000D
2346 #define IMAGE_REL_PPC_IMGLUE            0x000E
2347 #define IMAGE_REL_PPC_SECREL16          0x000F
2348 #define IMAGE_REL_PPC_REFHI             0x0010
2349 #define IMAGE_REL_PPC_REFLO             0x0011
2350 #define IMAGE_REL_PPC_PAIR              0x0012
2351 #define IMAGE_REL_PPC_SECRELLO          0x0013
2352 #define IMAGE_REL_PPC_SECRELHI          0x0014
2353 #define IMAGE_REL_PPC_GPREL             0x0015
2354 #define IMAGE_REL_PPC_TYPEMASK          0x00FF
2355 /* modifier bits */
2356 #define IMAGE_REL_PPC_NEG               0x0100
2357 #define IMAGE_REL_PPC_BRTAKEN           0x0200
2358 #define IMAGE_REL_PPC_BRNTAKEN          0x0400
2359 #define IMAGE_REL_PPC_TOCDEFN           0x0800
2360
2361 /* SH3 ? relocation type */
2362 #define IMAGE_REL_SH3_ABSOLUTE          0x0000
2363 #define IMAGE_REL_SH3_DIRECT16          0x0001
2364 #define IMAGE_REL_SH3_DIRECT          0x0002
2365 #define IMAGE_REL_SH3_DIRECT8           0x0003
2366 #define IMAGE_REL_SH3_DIRECT8_WORD      0x0004
2367 #define IMAGE_REL_SH3_DIRECT8_LONG      0x0005
2368 #define IMAGE_REL_SH3_DIRECT4           0x0006
2369 #define IMAGE_REL_SH3_DIRECT4_WORD      0x0007
2370 #define IMAGE_REL_SH3_DIRECT4_LONG      0x0008
2371 #define IMAGE_REL_SH3_PCREL8_WORD       0x0009
2372 #define IMAGE_REL_SH3_PCREL8_LONG       0x000A
2373 #define IMAGE_REL_SH3_PCREL12_WORD      0x000B
2374 #define IMAGE_REL_SH3_STARTOF_SECTION   0x000C
2375 #define IMAGE_REL_SH3_SIZEOF_SECTION    0x000D
2376 #define IMAGE_REL_SH3_SECTION           0x000E
2377 #define IMAGE_REL_SH3_SECREL            0x000F
2378 #define IMAGE_REL_SH3_DIRECT32_NB       0x0010
2379
2380 /* ARM (Archimedes?) relocation types */
2381 #define IMAGE_REL_ARM_ABSOLUTE          0x0000
2382 #define IMAGE_REL_ARM_ADDR              0x0001
2383 #define IMAGE_REL_ARM_ADDR32NB          0x0002
2384 #define IMAGE_REL_ARM_BRANCH24          0x0003
2385 #define IMAGE_REL_ARM_BRANCH11          0x0004
2386 #define IMAGE_REL_ARM_SECTION           0x000E
2387 #define IMAGE_REL_ARM_SECREL            0x000F
2388
2389 /* IA64 relocation types */
2390 #define IMAGE_REL_IA64_ABSOLUTE         0x0000
2391 #define IMAGE_REL_IA64_IMM14            0x0001
2392 #define IMAGE_REL_IA64_IMM22            0x0002
2393 #define IMAGE_REL_IA64_IMM64            0x0003
2394 #define IMAGE_REL_IA64_DIR              0x0004
2395 #define IMAGE_REL_IA64_DIR64            0x0005
2396 #define IMAGE_REL_IA64_PCREL21B         0x0006
2397 #define IMAGE_REL_IA64_PCREL21M         0x0007
2398 #define IMAGE_REL_IA64_PCREL21F         0x0008
2399 #define IMAGE_REL_IA64_GPREL22          0x0009
2400 #define IMAGE_REL_IA64_LTOFF22          0x000A
2401 #define IMAGE_REL_IA64_SECTION          0x000B
2402 #define IMAGE_REL_IA64_SECREL22         0x000C
2403 #define IMAGE_REL_IA64_SECREL64I        0x000D
2404 #define IMAGE_REL_IA64_SECREL           0x000E
2405 #define IMAGE_REL_IA64_LTOFF64          0x000F
2406 #define IMAGE_REL_IA64_DIR32NB          0x0010
2407 #define IMAGE_REL_IA64_RESERVED_11      0x0011
2408 #define IMAGE_REL_IA64_RESERVED_12      0x0012
2409 #define IMAGE_REL_IA64_RESERVED_13      0x0013
2410 #define IMAGE_REL_IA64_RESERVED_14      0x0014
2411 #define IMAGE_REL_IA64_RESERVED_15      0x0015
2412 #define IMAGE_REL_IA64_RESERVED_16      0x0016
2413 #define IMAGE_REL_IA64_ADDEND           0x001F
2414
2415 /* archive format */
2416
2417 #define IMAGE_ARCHIVE_START_SIZE             8
2418 #define IMAGE_ARCHIVE_START                  "!<arch>\n"
2419 #define IMAGE_ARCHIVE_END                    "`\n"
2420 #define IMAGE_ARCHIVE_PAD                    "\n"
2421 #define IMAGE_ARCHIVE_LINKER_MEMBER          "/               "
2422 #define IMAGE_ARCHIVE_LONGNAMES_MEMBER       "//              "
2423
2424 typedef struct _IMAGE_ARCHIVE_MEMBER_HEADER
2425 {
2426     BYTE     Name[16];
2427     BYTE     Date[12];
2428     BYTE     UserID[6];
2429     BYTE     GroupID[6];
2430     BYTE     Mode[8];
2431     BYTE     Size[10];
2432     BYTE     EndHeader[2];
2433 } IMAGE_ARCHIVE_MEMBER_HEADER, *PIMAGE_ARCHIVE_MEMBER_HEADER;
2434
2435 #define IMAGE_SIZEOF_ARCHIVE_MEMBER_HDR 60
2436
2437 /*
2438  * Resource directory stuff
2439  */
2440 typedef struct _IMAGE_RESOURCE_DIRECTORY {
2441         DWORD   Characteristics;
2442         DWORD   TimeDateStamp;
2443         WORD    MajorVersion;
2444         WORD    MinorVersion;
2445         WORD    NumberOfNamedEntries;
2446         WORD    NumberOfIdEntries;
2447         /*  IMAGE_RESOURCE_DIRECTORY_ENTRY DirectoryEntries[]; */
2448 } IMAGE_RESOURCE_DIRECTORY,*PIMAGE_RESOURCE_DIRECTORY;
2449
2450 #define IMAGE_RESOURCE_NAME_IS_STRING           0x80000000
2451 #define IMAGE_RESOURCE_DATA_IS_DIRECTORY        0x80000000
2452
2453 typedef struct _IMAGE_RESOURCE_DIRECTORY_ENTRY {
2454         union {
2455                 struct {
2456 #ifdef BITFIELDS_BIGENDIAN
2457                         unsigned NameIsString:1;
2458                         unsigned NameOffset:31;
2459 #else
2460                         unsigned NameOffset:31;
2461                         unsigned NameIsString:1;
2462 #endif
2463                 } DUMMYSTRUCTNAME1;
2464                 DWORD   Name;
2465                 struct {
2466 #ifdef WORDS_BIGENDIAN
2467                         WORD    __pad;
2468                         WORD    Id;
2469 #else
2470                         WORD    Id;
2471                         WORD    __pad;
2472 #endif
2473                 } DUMMYSTRUCTNAME2;
2474         } DUMMYUNIONNAME1;
2475         union {
2476                 DWORD   OffsetToData;
2477                 struct {
2478 #ifdef BITFIELDS_BIGENDIAN
2479                         unsigned DataIsDirectory:1;
2480                         unsigned OffsetToDirectory:31;
2481 #else
2482                         unsigned OffsetToDirectory:31;
2483                         unsigned DataIsDirectory:1;
2484 #endif
2485                 } DUMMYSTRUCTNAME3;
2486         } DUMMYUNIONNAME2;
2487 } IMAGE_RESOURCE_DIRECTORY_ENTRY,*PIMAGE_RESOURCE_DIRECTORY_ENTRY;
2488
2489
2490 typedef struct _IMAGE_RESOURCE_DIRECTORY_STRING {
2491         WORD    Length;
2492         CHAR    NameString[ 1 ];
2493 } IMAGE_RESOURCE_DIRECTORY_STRING,*PIMAGE_RESOURCE_DIRECTORY_STRING;
2494
2495 typedef struct _IMAGE_RESOURCE_DIR_STRING_U {
2496         WORD    Length;
2497         WCHAR   NameString[ 1 ];
2498 } IMAGE_RESOURCE_DIR_STRING_U,*PIMAGE_RESOURCE_DIR_STRING_U;
2499
2500 typedef struct _IMAGE_RESOURCE_DATA_ENTRY {
2501         DWORD   OffsetToData;
2502         DWORD   Size;
2503         DWORD   CodePage;
2504         DWORD   ResourceHandle;
2505 } IMAGE_RESOURCE_DATA_ENTRY,*PIMAGE_RESOURCE_DATA_ENTRY;
2506
2507
2508 typedef VOID (CALLBACK *PIMAGE_TLS_CALLBACK)(
2509         LPVOID DllHandle,DWORD Reason,LPVOID Reserved
2510 );
2511
2512 typedef struct _IMAGE_TLS_DIRECTORY {
2513         DWORD   StartAddressOfRawData;
2514         DWORD   EndAddressOfRawData;
2515         LPDWORD AddressOfIndex;
2516         PIMAGE_TLS_CALLBACK *AddressOfCallBacks;
2517         DWORD   SizeOfZeroFill;
2518         DWORD   Characteristics;
2519 } IMAGE_TLS_DIRECTORY,*PIMAGE_TLS_DIRECTORY;
2520
2521 typedef struct _IMAGE_DEBUG_DIRECTORY {
2522   DWORD Characteristics;
2523   DWORD TimeDateStamp;
2524   WORD  MajorVersion;
2525   WORD  MinorVersion;
2526   DWORD Type;
2527   DWORD SizeOfData;
2528   DWORD AddressOfRawData;
2529   DWORD PointerToRawData;
2530 } IMAGE_DEBUG_DIRECTORY, *PIMAGE_DEBUG_DIRECTORY;
2531
2532 #define IMAGE_DEBUG_TYPE_UNKNOWN        0
2533 #define IMAGE_DEBUG_TYPE_COFF           1
2534 #define IMAGE_DEBUG_TYPE_CODEVIEW       2
2535 #define IMAGE_DEBUG_TYPE_FPO            3
2536 #define IMAGE_DEBUG_TYPE_MISC           4
2537 #define IMAGE_DEBUG_TYPE_EXCEPTION      5
2538 #define IMAGE_DEBUG_TYPE_FIXUP          6
2539 #define IMAGE_DEBUG_TYPE_OMAP_TO_SRC    7
2540 #define IMAGE_DEBUG_TYPE_OMAP_FROM_SRC  8
2541 #define IMAGE_DEBUG_TYPE_BORLAND        9
2542 #define IMAGE_DEBUG_TYPE_RESERVED10    10
2543
2544 typedef struct _IMAGE_COFF_SYMBOLS_HEADER {
2545   DWORD NumberOfSymbols;
2546   DWORD LvaToFirstSymbol;
2547   DWORD NumberOfLinenumbers;
2548   DWORD LvaToFirstLinenumber;
2549   DWORD RvaToFirstByteOfCode;
2550   DWORD RvaToLastByteOfCode;
2551   DWORD RvaToFirstByteOfData;
2552   DWORD RvaToLastByteOfData;
2553 } IMAGE_COFF_SYMBOLS_HEADER, *PIMAGE_COFF_SYMBOLS_HEADER;
2554
2555 #define FRAME_FPO       0
2556 #define FRAME_TRAP      1
2557 #define FRAME_TSS       2
2558 #define FRAME_NONFPO    3
2559
2560 typedef struct _FPO_DATA {
2561   DWORD ulOffStart;
2562   DWORD cbProcSize;
2563   DWORD cdwLocals;
2564   WORD  cdwParams;
2565   unsigned cbProlog : 8;
2566   unsigned cbRegs   : 3;
2567   unsigned fHasSEH  : 1;
2568   unsigned fUseBP   : 1;
2569   unsigned reserved : 1;
2570   unsigned cbFrame  : 2;
2571 } FPO_DATA, *PFPO_DATA;
2572
2573 typedef struct _IMAGE_LOAD_CONFIG_DIRECTORY {
2574   DWORD Characteristics;
2575   DWORD TimeDateStamp;
2576   WORD  MajorVersion;
2577   WORD  MinorVersion;
2578   DWORD GlobalFlagsClear;
2579   DWORD GlobalFlagsSet;
2580   DWORD CriticalSectionDefaultTimeout;
2581   DWORD DeCommitFreeBlockThreshold;
2582   DWORD DeCommitTotalFreeThreshold;
2583   PVOID LockPrefixTable;
2584   DWORD MaximumAllocationSize;
2585   DWORD VirtualMemoryThreshold;
2586   DWORD ProcessHeapFlags;
2587   DWORD ProcessAffinityMask;
2588   WORD  CSDVersion;
2589   WORD  Reserved1;
2590   PVOID EditList;
2591   DWORD Reserved[1];
2592 } IMAGE_LOAD_CONFIG_DIRECTORY, *PIMAGE_LOAD_CONFIG_DIRECTORY;
2593
2594 typedef struct _IMAGE_FUNCTION_ENTRY {
2595   DWORD StartingAddress;
2596   DWORD EndingAddress;
2597   DWORD EndOfPrologue;
2598 } IMAGE_FUNCTION_ENTRY, *PIMAGE_FUNCTION_ENTRY;
2599
2600 #define IMAGE_DEBUG_MISC_EXENAME    1
2601
2602 typedef struct _IMAGE_DEBUG_MISC {
2603     DWORD       DataType;
2604     DWORD       Length;
2605     BYTE        Unicode;
2606     BYTE        Reserved[ 3 ];
2607     BYTE        Data[ 1 ];
2608 } IMAGE_DEBUG_MISC, *PIMAGE_DEBUG_MISC;
2609
2610 /* This is the structure that appears at the very start of a .DBG file. */
2611
2612 typedef struct _IMAGE_SEPARATE_DEBUG_HEADER {
2613         WORD    Signature;
2614         WORD    Flags;
2615         WORD    Machine;
2616         WORD    Characteristics;
2617         DWORD   TimeDateStamp;
2618         DWORD   CheckSum;
2619         DWORD   ImageBase;
2620         DWORD   SizeOfImage;
2621         DWORD   NumberOfSections;
2622         DWORD   ExportedNamesSize;
2623         DWORD   DebugDirectorySize;
2624         DWORD   SectionAlignment;
2625         DWORD   Reserved[ 2 ];
2626 } IMAGE_SEPARATE_DEBUG_HEADER,*PIMAGE_SEPARATE_DEBUG_HEADER;
2627
2628 #define IMAGE_SEPARATE_DEBUG_SIGNATURE 0x4944
2629
2630
2631 typedef struct tagMESSAGE_RESOURCE_ENTRY {
2632         WORD    Length;
2633         WORD    Flags;
2634         BYTE    Text[1];
2635 } MESSAGE_RESOURCE_ENTRY,*PMESSAGE_RESOURCE_ENTRY;
2636 #define MESSAGE_RESOURCE_UNICODE        0x0001
2637
2638 typedef struct tagMESSAGE_RESOURCE_BLOCK {
2639         DWORD   LowId;
2640         DWORD   HighId;
2641         DWORD   OffsetToEntries;
2642 } MESSAGE_RESOURCE_BLOCK,*PMESSAGE_RESOURCE_BLOCK;
2643
2644 typedef struct tagMESSAGE_RESOURCE_DATA {
2645         DWORD                   NumberOfBlocks;
2646         MESSAGE_RESOURCE_BLOCK  Blocks[ 1 ];
2647 } MESSAGE_RESOURCE_DATA,*PMESSAGE_RESOURCE_DATA;
2648
2649 /*
2650  * Here follows typedefs for security and tokens.
2651  */
2652
2653 /*
2654  * First a constant for the following typdefs.
2655  */
2656
2657 #define ANYSIZE_ARRAY   1
2658
2659 /* FIXME:  Orphan.  What does it point to? */
2660 typedef PVOID PACCESS_TOKEN;
2661
2662 /*
2663  * TOKEN_INFORMATION_CLASS
2664  */
2665
2666 typedef enum _TOKEN_INFORMATION_CLASS {
2667   TokenUser = 1,
2668   TokenGroups,
2669   TokenPrivileges,
2670   TokenOwner,
2671   TokenPrimaryGroup,
2672   TokenDefaultDacl,
2673   TokenSource,
2674   TokenType,
2675   TokenImpersonationLevel,
2676   TokenStatistics,
2677   TokenRestrictedSids,
2678   TokenSessionId,
2679   TokenGroupsAndPrivileges,
2680   TokenSessionReference,
2681   TokenSandBoxInert
2682 } TOKEN_INFORMATION_CLASS;
2683
2684 #define TOKEN_TOKEN_ADJUST_DEFAULT   0x0080
2685 #define TOKEN_ADJUST_GROUPS          0x0040
2686 #define TOKEN_ADJUST_PRIVILEGES      0x0020
2687 #define TOKEN_ADJUST_SESSIONID       0x0100
2688 #define TOKEN_ASSIGN_PRIMARY         0x0001
2689 #define TOKEN_DUPLICATE              0x0002
2690 #define TOKEN_EXECUTE                STANDARD_RIGHTS_EXECUTE
2691 #define TOKEN_IMPERSONATE            0x0004
2692 #define TOKEN_QUERY                  0x0008
2693 #define TOKEN_QUERY_SOURCE           0x0010
2694 #define TOKEN_ADJUST_DEFAULT         0x0080
2695 #define TOKEN_READ                   (STANDARD_RIGHTS_READ|TOKEN_QUERY)
2696 #define TOKEN_WRITE                  (STANDARD_RIGHTS_WRITE     | \
2697                                         TOKEN_ADJUST_PRIVILEGES | \
2698                                         TOKEN_ADJUST_GROUPS | \
2699                                         TOKEN_ADJUST_DEFAULT )
2700 #define TOKEN_ALL_ACCESS             (STANDARD_RIGHTS_REQUIRED | \
2701                                         TOKEN_ASSIGN_PRIMARY | \
2702                                         TOKEN_DUPLICATE | \
2703                                         TOKEN_IMPERSONATE | \
2704                                         TOKEN_QUERY | \
2705                                         TOKEN_QUERY_SOURCE | \
2706                                         TOKEN_ADJUST_PRIVILEGES | \
2707                                         TOKEN_ADJUST_GROUPS | \
2708                                         TOKEN_ADJUST_SESSIONID | \
2709                                         TOKEN_ADJUST_DEFAULT )
2710
2711 #ifndef _SECURITY_DEFINED
2712 #define _SECURITY_DEFINED
2713
2714
2715 typedef DWORD ACCESS_MASK, *PACCESS_MASK;
2716
2717 typedef struct _GENERIC_MAPPING {
2718     ACCESS_MASK GenericRead;
2719     ACCESS_MASK GenericWrite;
2720     ACCESS_MASK GenericExecute;
2721     ACCESS_MASK GenericAll;
2722 } GENERIC_MAPPING, *PGENERIC_MAPPING;
2723
2724 #ifndef SID_IDENTIFIER_AUTHORITY_DEFINED
2725 #define SID_IDENTIFIER_AUTHORITY_DEFINED
2726 typedef struct {
2727     BYTE Value[6];
2728 } SID_IDENTIFIER_AUTHORITY, *PSID_IDENTIFIER_AUTHORITY;
2729 #endif /* !defined(SID_IDENTIFIER_AUTHORITY_DEFINED) */
2730
2731 #ifndef SID_DEFINED
2732 #define SID_DEFINED
2733 typedef struct _SID {
2734     BYTE Revision;
2735     BYTE SubAuthorityCount;
2736     SID_IDENTIFIER_AUTHORITY IdentifierAuthority;
2737     DWORD SubAuthority[1];
2738 } SID,*PSID;
2739 #endif /* !defined(SID_DEFINED) */
2740
2741 #define SID_REVISION                    (1)     /* Current revision */
2742 #define SID_MAX_SUB_AUTHORITIES         (15)    /* current max subauths */
2743 #define SID_RECOMMENDED_SUB_AUTHORITIES (1)     /* recommended subauths */
2744
2745
2746 /*
2747  * ACL
2748  */
2749
2750 #define ACL_REVISION1 1
2751 #define ACL_REVISION2 2
2752 #define ACL_REVISION3 3
2753 #define ACL_REVISION4 4
2754
2755 #define MIN_ACL_REVISION ACL_REVISION2
2756 #define MAX_ACL_REVISION ACL_REVISION4
2757
2758 typedef struct _ACL {
2759     BYTE AclRevision;
2760     BYTE Sbz1;
2761     WORD AclSize;
2762     WORD AceCount;
2763     WORD Sbz2;
2764 } ACL, *PACL;
2765
2766 typedef enum _ACL_INFORMATION_CLASS
2767 {
2768   AclRevisionInformation = 1, 
2769   AclSizeInformation
2770 } ACL_INFORMATION_CLASS;
2771
2772 /* SECURITY_DESCRIPTOR */
2773 #define SECURITY_DESCRIPTOR_REVISION    1
2774 #define SECURITY_DESCRIPTOR_REVISION1   1
2775
2776
2777 /*
2778  * Privilege Names
2779  */
2780 #define SE_CREATE_TOKEN_NAME            TEXT("SeCreateTokenPrivilege")
2781 #define SE_ASSIGNPRIMARYTOKEN_NAME      TEXT("SeAssignPrimaryTokenPrivilege")
2782 #define SE_LOCK_MEMORY_NAME             TEXT("SeLockMemoryPrivilege")
2783 #define SE_INCREASE_QUOTA_NAME          TEXT("SeIncreaseQuotaPrivilege")
2784 #define SE_UNSOLICITED_INPUT_NAME       TEXT("SeUnsolicitedInputPrivilege")
2785 #define SE_MACHINE_ACCOUNT_NAME         TEXT("SeMachineAccountPrivilege")
2786 #define SE_TCB_NAME                     TEXT("SeTcbPrivilege")
2787 #define SE_SECURITY_NAME                TEXT("SeSecurityPrivilege")
2788 #define SE_TAKE_OWNERSHIP_NAME          TEXT("SeTakeOwnershipPrivilege")
2789 #define SE_LOAD_DRIVER_NAME             TEXT("SeLoadDriverPrivilege")
2790 #define SE_SYSTEM_PROFILE_NAME          TEXT("SeSystemProfilePrivilege")
2791 #define SE_SYSTEMTIME_NAME              TEXT("SeSystemtimePrivilege")
2792 #define SE_PROF_SINGLE_PROCESS_NAME     TEXT("SeProfileSingleProcessPrivilege")
2793 #define SE_INC_BASE_PRIORITY_NAME       TEXT("SeIncreaseBasePriorityPrivilege")
2794 #define SE_CREATE_PAGEFILE_NAME         TEXT("SeCreatePagefilePrivilege")
2795 #define SE_CREATE_PERMANENT_NAME        TEXT("SeCreatePermanentPrivilege")
2796 #define SE_BACKUP_NAME                  TEXT("SeBackupPrivilege")
2797 #define SE_RESTORE_NAME                 TEXT("SeRestorePrivilege")
2798 #define SE_SHUTDOWN_NAME                TEXT("SeShutdownPrivilege")
2799 #define SE_DEBUG_NAME                   TEXT("SeDebugPrivilege")
2800 #define SE_AUDIT_NAME                   TEXT("SeAuditPrivilege")
2801 #define SE_SYSTEM_ENVIRONMENT_NAME      TEXT("SeSystemEnvironmentPrivilege")
2802 #define SE_CHANGE_NOTIFY_NAME           TEXT("SeChangeNotifyPrivilege")
2803 #define SE_REMOTE_SHUTDOWN_NAME         TEXT("SeRemoteShutdownPrivilege")
2804
2805 #define SE_GROUP_MANDATORY              0x00000001
2806 #define SE_GROUP_ENABLED_BY_DEFAULT     0x00000002
2807 #define SE_GROUP_ENABLED                0x00000004
2808 #define SE_GROUP_OWNER                  0x00000008
2809 #define SE_GROUP_USE_FOR_DENY_ONLY      0x00000010
2810 #define SE_GROUP_LOGON_ID               0xC0000000
2811 #define SE_GROUP_RESOURCE               0x20000000
2812
2813 #define SE_PRIVILEGE_ENABLED_BY_DEFAULT 0x00000001
2814 #define SE_PRIVILEGE_ENABLED            0x00000002
2815 #define SE_PRIVILEGE_USED_FOR_ACCESS    0x80000000
2816
2817 #define SE_OWNER_DEFAULTED              0x00000001
2818 #define SE_GROUP_DEFAULTED              0x00000002
2819 #define SE_DACL_PRESENT                 0x00000004
2820 #define SE_DACL_DEFAULTED               0x00000008
2821 #define SE_SACL_PRESENT                 0x00000010
2822 #define SE_SACL_DEFAULTED               0x00000020
2823 #define SE_DACL_AUTO_INHERIT_REQ        0x00000100
2824 #define SE_SACL_AUTO_INHERIT_REQ        0x00000200
2825 #define SE_DACL_AUTO_INHERITED          0x00000400
2826 #define SE_SACL_AUTO_INHERITED          0x00000800
2827 #define SE_DACL_PROTECTED               0x00001000
2828 #define SE_SACL_PROTECTED               0x00002000
2829 #define SE_SELF_RELATIVE                0x00008000
2830
2831 typedef DWORD SECURITY_INFORMATION, *PSECURITY_INFORMATION;
2832 typedef WORD SECURITY_DESCRIPTOR_CONTROL, *PSECURITY_DESCRIPTOR_CONTROL;
2833
2834 /* The security descriptor structure */
2835 typedef struct {
2836     BYTE Revision;
2837     BYTE Sbz1;
2838     SECURITY_DESCRIPTOR_CONTROL Control;
2839     DWORD Owner;
2840     DWORD Group;
2841     DWORD Sacl;
2842     DWORD Dacl;
2843 } SECURITY_DESCRIPTOR_RELATIVE, *PISECURITY_DESCRIPTOR_RELATIVE;
2844
2845 typedef struct {
2846     BYTE Revision;
2847     BYTE Sbz1;
2848     SECURITY_DESCRIPTOR_CONTROL Control;
2849     PSID Owner;
2850     PSID Group;
2851     PACL Sacl;
2852     PACL Dacl;
2853 } SECURITY_DESCRIPTOR, *PSECURITY_DESCRIPTOR;
2854
2855 #define SECURITY_DESCRIPTOR_MIN_LENGTH   (sizeof(SECURITY_DESCRIPTOR))
2856
2857 #endif /* _SECURITY_DEFINED */
2858
2859 /*
2860  * SID_AND_ATTRIBUTES
2861  */
2862
2863 typedef struct _SID_AND_ATTRIBUTES {
2864   PSID  Sid;
2865   DWORD Attributes;
2866 } SID_AND_ATTRIBUTES;
2867
2868 /* security entities */
2869 #define SECURITY_NULL_RID                       (0x00000000L)
2870 #define SECURITY_WORLD_RID                      (0x00000000L)
2871 #define SECURITY_LOCAL_RID                      (0X00000000L)
2872
2873 #define SECURITY_NULL_SID_AUTHORITY             {0,0,0,0,0,0}
2874
2875 /* S-1-1 */
2876 #define SECURITY_WORLD_SID_AUTHORITY            {0,0,0,0,0,1}
2877
2878 /* S-1-2 */
2879 #define SECURITY_LOCAL_SID_AUTHORITY            {0,0,0,0,0,2}
2880
2881 /* S-1-3 */
2882 #define SECURITY_CREATOR_SID_AUTHORITY          {0,0,0,0,0,3}
2883 #define SECURITY_CREATOR_OWNER_RID              (0x00000000L)
2884 #define SECURITY_CREATOR_GROUP_RID              (0x00000001L)
2885 #define SECURITY_CREATOR_OWNER_SERVER_RID       (0x00000002L)
2886 #define SECURITY_CREATOR_GROUP_SERVER_RID       (0x00000003L)
2887
2888 /* S-1-4 */
2889 #define SECURITY_NON_UNIQUE_AUTHORITY           {0,0,0,0,0,4}
2890
2891 /* S-1-5 */
2892 #define SECURITY_NT_AUTHORITY                   {0,0,0,0,0,5}
2893 #define SECURITY_DIALUP_RID                     0x00000001L
2894 #define SECURITY_NETWORK_RID                    0x00000002L
2895 #define SECURITY_BATCH_RID                      0x00000003L
2896 #define SECURITY_INTERACTIVE_RID                0x00000004L
2897 #define SECURITY_LOGON_IDS_RID                  0x00000005L
2898 #define SECURITY_SERVICE_RID                    0x00000006L
2899 #define SECURITY_ANONYMOUS_LOGON_RID            0x00000007L
2900 #define SECURITY_PROXY_RID                      0x00000008L
2901 #define SECURITY_ENTERPRISE_CONTROLLERS_RID     0x00000009L
2902 #define SECURITY_PRINCIPAL_SELF_RID             0x0000000AL
2903 #define SECURITY_AUTHENTICATED_USER_RID         0x0000000BL
2904 #define SECURITY_RESTRICTED_CODE_RID            0x0000000CL
2905 #define SECURITY_TERMINAL_SERVER_RID            0x0000000DL
2906 #define SECURITY_LOCAL_SYSTEM_RID               0x00000012L
2907 #define SECURITY_NT_NON_UNIQUE                  0x00000015L
2908 #define SECURITY_BUILTIN_DOMAIN_RID             0x00000020L
2909
2910 #define DOMAIN_GROUP_RID_ADMINS                 0x00000200L
2911 #define DOMAIN_GROUP_RID_USERS                  0x00000201L
2912 #define DOMAIN_GROUP_RID_GUESTS                 0x00000202L
2913
2914 #define DOMAIN_ALIAS_RID_ADMINS                 0x00000220L
2915 #define DOMAIN_ALIAS_RID_USERS                  0x00000221L
2916 #define DOMAIN_ALIAS_RID_GUESTS                 0x00000222L
2917
2918 #define SECURITY_SERVER_LOGON_RID               SECURITY_ENTERPRISE_CONTROLLERS_RID
2919
2920 #define SECURITY_LOGON_IDS_RID_COUNT            (3L)
2921
2922 /*
2923  * TOKEN_USER
2924  */
2925
2926 typedef struct _TOKEN_USER {
2927   SID_AND_ATTRIBUTES User;
2928 } TOKEN_USER;
2929
2930 /*
2931  * TOKEN_GROUPS
2932  */
2933
2934 typedef struct _TOKEN_GROUPS  {
2935   DWORD GroupCount;
2936   SID_AND_ATTRIBUTES Groups[ANYSIZE_ARRAY];
2937 } TOKEN_GROUPS;
2938
2939 /*
2940  * LUID_AND_ATTRIBUTES
2941  */
2942
2943 typedef union _LARGE_INTEGER {
2944     struct {
2945 #ifdef WORDS_BIGENDIAN
2946         LONG     HighPart;
2947         DWORD    LowPart;
2948 #else
2949         DWORD    LowPart;
2950         LONG     HighPart;
2951 #endif
2952     } DUMMYSTRUCTNAME;
2953     LONGLONG QuadPart;
2954 } LARGE_INTEGER, *PLARGE_INTEGER;
2955
2956 typedef union _ULARGE_INTEGER {
2957     struct {
2958 #ifdef WORDS_BIGENDIAN
2959         DWORD    HighPart;
2960         DWORD    LowPart;
2961 #else
2962         DWORD    LowPart;
2963         DWORD    HighPart;
2964 #endif
2965     } DUMMYSTRUCTNAME;
2966     ULONGLONG QuadPart;
2967 } ULARGE_INTEGER, *PULARGE_INTEGER;
2968
2969 /*
2970  * Locally Unique Identifier
2971  */
2972
2973 typedef struct _LUID {
2974     DWORD LowPart;
2975     LONG HighPart;
2976 } LUID, *PLUID;
2977
2978 #include "pshpack4.h"
2979 typedef struct _LUID_AND_ATTRIBUTES {
2980   LUID   Luid;
2981   DWORD  Attributes;
2982 } LUID_AND_ATTRIBUTES, *PLUID_AND_ATTRIBUTES;
2983 #include "poppack.h"
2984
2985 /*
2986  * PRIVILEGE_SET
2987  */
2988
2989 typedef struct _PRIVILEGE_SET {
2990     DWORD PrivilegeCount;
2991     DWORD Control;
2992     LUID_AND_ATTRIBUTES Privilege[ANYSIZE_ARRAY];
2993 } PRIVILEGE_SET, *PPRIVILEGE_SET;
2994
2995 /*
2996  * TOKEN_PRIVILEGES
2997  */
2998
2999 typedef struct _TOKEN_PRIVILEGES {
3000   DWORD PrivilegeCount;
3001   LUID_AND_ATTRIBUTES Privileges[ANYSIZE_ARRAY];
3002 } TOKEN_PRIVILEGES, *PTOKEN_PRIVILEGES;
3003
3004 /*
3005  * TOKEN_OWNER
3006  */
3007
3008 typedef struct _TOKEN_OWNER {
3009   PSID Owner;
3010 } TOKEN_OWNER;
3011
3012 /*
3013  * TOKEN_PRIMARY_GROUP
3014  */
3015
3016 typedef struct _TOKEN_PRIMARY_GROUP {
3017   PSID PrimaryGroup;
3018 } TOKEN_PRIMARY_GROUP;
3019
3020
3021 /*
3022  * TOKEN_DEFAULT_DACL
3023  */
3024
3025 typedef struct _TOKEN_DEFAULT_DACL {
3026   PACL DefaultDacl;
3027 } TOKEN_DEFAULT_DACL;
3028
3029 /*
3030  * TOKEN_SOURCEL
3031  */
3032
3033 #define TOKEN_SOURCE_LENGTH 8
3034
3035 typedef struct _TOKEN_SOURCE {
3036   char SourceName[TOKEN_SOURCE_LENGTH];
3037   LUID SourceIdentifier;
3038 } TOKEN_SOURCE;
3039
3040 /*
3041  * TOKEN_TYPE
3042  */
3043
3044 typedef enum tagTOKEN_TYPE {
3045   TokenPrimary = 1,
3046   TokenImpersonation
3047 } TOKEN_TYPE;
3048
3049 /*
3050  * SECURITY_IMPERSONATION_LEVEL
3051  */
3052
3053 typedef enum _SECURITY_IMPERSONATION_LEVEL {
3054   SecurityAnonymous,
3055   SecurityIdentification,
3056   SecurityImpersonation,
3057   SecurityDelegation
3058 } SECURITY_IMPERSONATION_LEVEL, *PSECURITY_IMPERSONATION_LEVEL;
3059
3060
3061 typedef BOOLEAN SECURITY_CONTEXT_TRACKING_MODE,
3062         * PSECURITY_CONTEXT_TRACKING_MODE;
3063 /*
3064  *      Quality of Service
3065  */
3066
3067 typedef struct _SECURITY_QUALITY_OF_SERVICE {
3068   DWORD                         Length;
3069   SECURITY_IMPERSONATION_LEVEL  ImpersonationLevel;
3070   SECURITY_CONTEXT_TRACKING_MODE ContextTrackingMode;
3071   BOOLEAN                       EffectiveOnly;
3072 } SECURITY_QUALITY_OF_SERVICE, *PSECURITY_QUALITY_OF_SERVICE;
3073
3074 /*
3075  * TOKEN_STATISTICS
3076  */
3077
3078 typedef struct _TOKEN_STATISTICS {
3079   LUID  TokenId;
3080   LUID  AuthenticationId;
3081   LARGE_INTEGER ExpirationTime;
3082   TOKEN_TYPE    TokenType;
3083   SECURITY_IMPERSONATION_LEVEL ImpersonationLevel;
3084   DWORD DynamicCharged;
3085   DWORD DynamicAvailable;
3086   DWORD GroupCount;
3087   DWORD PrivilegeCount;
3088   LUID  ModifiedId;
3089 } TOKEN_STATISTICS;
3090
3091 /*
3092  *      ACLs of NT
3093  */
3094
3095 #define ACL_REVISION    2
3096
3097 #define ACL_REVISION1   1
3098 #define ACL_REVISION2   2
3099
3100 /* ACEs, directly starting after an ACL */
3101 typedef struct _ACE_HEADER {
3102         BYTE    AceType;
3103         BYTE    AceFlags;
3104         WORD    AceSize;
3105 } ACE_HEADER,*PACE_HEADER;
3106
3107 /* AceType */
3108 #define ACCESS_ALLOWED_ACE_TYPE         0
3109 #define ACCESS_DENIED_ACE_TYPE          1
3110 #define SYSTEM_AUDIT_ACE_TYPE           2
3111 #define SYSTEM_ALARM_ACE_TYPE           3
3112
3113 /* inherit AceFlags */
3114 #define OBJECT_INHERIT_ACE              0x01
3115 #define CONTAINER_INHERIT_ACE           0x02
3116 #define NO_PROPAGATE_INHERIT_ACE        0x04
3117 #define INHERIT_ONLY_ACE                0x08
3118 #define VALID_INHERIT_FLAGS             0x0F
3119
3120 /* AceFlags mask for what events we (should) audit */
3121 #define SUCCESSFUL_ACCESS_ACE_FLAG      0x40
3122 #define FAILED_ACCESS_ACE_FLAG          0x80
3123
3124 /* different ACEs depending on AceType
3125  * SidStart marks the begin of a SID
3126  * so the thing finally looks like this:
3127  * 0: ACE_HEADER
3128  * 4: ACCESS_MASK
3129  * 8... : SID
3130  */
3131 typedef struct _ACCESS_ALLOWED_ACE {
3132         ACE_HEADER      Header;
3133         DWORD           Mask;
3134         DWORD           SidStart;
3135 } ACCESS_ALLOWED_ACE,*PACCESS_ALLOWED_ACE;
3136
3137 typedef struct _ACCESS_DENIED_ACE {
3138         ACE_HEADER      Header;
3139         DWORD           Mask;
3140         DWORD           SidStart;
3141 } ACCESS_DENIED_ACE,*PACCESS_DENIED_ACE;
3142
3143 typedef struct _SYSTEM_AUDIT_ACE {
3144         ACE_HEADER      Header;
3145         DWORD           Mask;
3146         DWORD           SidStart;
3147 } SYSTEM_AUDIT_ACE,*PSYSTEM_AUDIT_ACE;
3148
3149 typedef struct _SYSTEM_ALARM_ACE {
3150         ACE_HEADER      Header;
3151         DWORD           Mask;
3152         DWORD           SidStart;
3153 } SYSTEM_ALARM_ACE,*PSYSTEM_ALARM_ACE;
3154
3155 typedef enum tagSID_NAME_USE {
3156         SidTypeUser = 1,
3157         SidTypeGroup,
3158         SidTypeDomain,
3159         SidTypeAlias,
3160         SidTypeWellKnownGroup,
3161         SidTypeDeletedAccount,
3162         SidTypeInvalid,
3163         SidTypeUnknown
3164 } SID_NAME_USE,*PSID_NAME_USE;
3165
3166 /* Access rights */
3167
3168 /* DELETE may be already defined via /usr/include/arpa/nameser_compat.h */
3169 #undef  DELETE
3170 #define DELETE                     0x00010000
3171 #define READ_CONTROL               0x00020000
3172 #define WRITE_DAC                  0x00040000
3173 #define WRITE_OWNER                0x00080000
3174 #define SYNCHRONIZE                0x00100000
3175 #define STANDARD_RIGHTS_REQUIRED   0x000f0000
3176
3177 #define STANDARD_RIGHTS_READ       READ_CONTROL
3178 #define STANDARD_RIGHTS_WRITE      READ_CONTROL
3179 #define STANDARD_RIGHTS_EXECUTE    READ_CONTROL
3180
3181 #define STANDARD_RIGHTS_ALL        0x001f0000
3182
3183 #define SPECIFIC_RIGHTS_ALL        0x0000ffff
3184
3185 #define GENERIC_READ               0x80000000
3186 #define GENERIC_WRITE              0x40000000
3187 #define GENERIC_EXECUTE            0x20000000
3188 #define GENERIC_ALL                0x10000000
3189
3190 #define MAXIMUM_ALLOWED            0x02000000
3191 #define ACCESS_SYSTEM_SECURITY     0x01000000
3192
3193 #define EVENT_MODIFY_STATE         0x0002
3194 #define EVENT_ALL_ACCESS           (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0x3)
3195
3196 #define SEMAPHORE_MODIFY_STATE     0x0002
3197 #define SEMAPHORE_ALL_ACCESS       (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0x3)
3198
3199 #define MUTEX_MODIFY_STATE         0x0001
3200 #define MUTEX_ALL_ACCESS           (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0x1)
3201
3202 #define TIMER_QUERY_STATE          0x0001
3203 #define TIMER_MODIFY_STATE         0x0002
3204 #define TIMER_ALL_ACCESS           (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0x3)
3205
3206 #define PROCESS_TERMINATE          0x0001
3207 #define PROCESS_CREATE_THREAD      0x0002
3208 #define PROCESS_VM_OPERATION       0x0008
3209 #define PROCESS_VM_READ            0x0010
3210 #define PROCESS_VM_WRITE           0x0020
3211 #define PROCESS_DUP_HANDLE         0x0040
3212 #define PROCESS_CREATE_PROCESS     0x0080
3213 #define PROCESS_SET_QUOTA          0x0100
3214 #define PROCESS_SET_INFORMATION    0x0200
3215 #define PROCESS_QUERY_INFORMATION  0x0400
3216 #define PROCESS_ALL_ACCESS         (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0xfff)
3217
3218 #define THREAD_TERMINATE           0x0001
3219 #define THREAD_SUSPEND_RESUME      0x0002
3220 #define THREAD_GET_CONTEXT         0x0008
3221 #define THREAD_SET_CONTEXT         0x0010
3222 #define THREAD_SET_INFORMATION     0x0020
3223 #define THREAD_QUERY_INFORMATION   0x0040
3224 #define THREAD_SET_THREAD_TOKEN    0x0080
3225 #define THREAD_IMPERSONATE         0x0100
3226 #define THREAD_DIRECT_IMPERSONATION 0x0200
3227 #define THREAD_ALL_ACCESS          (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0x3ff)
3228
3229 #define THREAD_BASE_PRIORITY_LOWRT  15
3230 #define THREAD_BASE_PRIORITY_MAX    2
3231 #define THREAD_BASE_PRIORITY_MIN   -2
3232 #define THREAD_BASE_PRIORITY_IDLE  -15
3233
3234 #define SECTION_QUERY              0x0001
3235 #define SECTION_MAP_WRITE          0x0002
3236 #define SECTION_MAP_READ           0x0004
3237 #define SECTION_MAP_EXECUTE        0x0008
3238 #define SECTION_EXTEND_SIZE        0x0010
3239 #define SECTION_ALL_ACCESS         (STANDARD_RIGHTS_REQUIRED|0x01f)
3240
3241 #define FILE_READ_DATA            0x0001    /* file & pipe */
3242 #define FILE_LIST_DIRECTORY       0x0001    /* directory */
3243 #define FILE_WRITE_DATA           0x0002    /* file & pipe */
3244 #define FILE_ADD_FILE             0x0002    /* directory */
3245 #define FILE_APPEND_DATA          0x0004    /* file */
3246 #define FILE_ADD_SUBDIRECTORY     0x0004    /* directory */
3247 #define FILE_CREATE_PIPE_INSTANCE 0x0004    /* named pipe */
3248 #define FILE_READ_EA              0x0008    /* file & directory */
3249 #define FILE_READ_PROPERTIES      FILE_READ_EA
3250 #define FILE_WRITE_EA             0x0010    /* file & directory */
3251 #define FILE_WRITE_PROPERTIES     FILE_WRITE_EA
3252 #define FILE_EXECUTE              0x0020    /* file */
3253 #define FILE_TRAVERSE             0x0020    /* directory */
3254 #define FILE_DELETE_CHILD         0x0040    /* directory */
3255 #define FILE_READ_ATTRIBUTES      0x0080    /* all */
3256 #define FILE_WRITE_ATTRIBUTES     0x0100    /* all */
3257 #define FILE_ALL_ACCESS           (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0x1ff)
3258
3259 #define FILE_GENERIC_READ         (STANDARD_RIGHTS_READ | FILE_READ_DATA | \
3260                                    FILE_READ_ATTRIBUTES | FILE_READ_EA | \
3261                                    SYNCHRONIZE)
3262 #define FILE_GENERIC_WRITE        (STANDARD_RIGHTS_WRITE | FILE_WRITE_DATA | \
3263                                    FILE_WRITE_ATTRIBUTES | FILE_WRITE_EA | \
3264                                    FILE_APPEND_DATA | SYNCHRONIZE)
3265 #define FILE_GENERIC_EXECUTE      (STANDARD_RIGHTS_EXECUTE | FILE_EXECUTE | \
3266                                    FILE_READ_ATTRIBUTES | SYNCHRONIZE)
3267
3268
3269 /* File attribute flags */
3270 #define FILE_SHARE_READ                 0x00000001L
3271 #define FILE_SHARE_WRITE                0x00000002L
3272 #define FILE_SHARE_DELETE               0x00000004L
3273 #define FILE_ATTRIBUTE_READONLY         0x00000001L
3274 #define FILE_ATTRIBUTE_HIDDEN           0x00000002L
3275 #define FILE_ATTRIBUTE_SYSTEM           0x00000004L
3276 #define FILE_ATTRIBUTE_LABEL            0x00000008L  /* Not in Windows API */
3277 #define FILE_ATTRIBUTE_DIRECTORY        0x00000010L
3278 #define FILE_ATTRIBUTE_ARCHIVE          0x00000020L
3279 #define FILE_ATTRIBUTE_NORMAL           0x00000080L
3280 #define FILE_ATTRIBUTE_TEMPORARY        0x00000100L
3281 #define FILE_ATTRIBUTE_ATOMIC_WRITE     0x00000200L
3282 #define FILE_ATTRIBUTE_XACTION_WRITE    0x00000400L
3283 #define FILE_ATTRIBUTE_COMPRESSED       0x00000800L
3284 #define FILE_ATTRIBUTE_OFFLINE          0x00001000L
3285
3286 /* File notification flags */
3287 #define FILE_NOTIFY_CHANGE_FILE_NAME    0x00000001
3288 #define FILE_NOTIFY_CHANGE_DIR_NAME     0x00000002
3289 #define FILE_NOTIFY_CHANGE_ATTRIBUTES   0x00000004
3290 #define FILE_NOTIFY_CHANGE_SIZE         0x00000008
3291 #define FILE_NOTIFY_CHANGE_LAST_WRITE   0x00000010
3292 #define FILE_NOTIFY_CHANGE_LAST_ACCESS  0x00000020
3293 #define FILE_NOTIFY_CHANGE_CREATION     0x00000040
3294 #define FILE_NOTIFY_CHANGE_SECURITY     0x00000100
3295
3296 #define FILE_ACTION_ADDED               0x00000001
3297 #define FILE_ACTION_REMOVED             0x00000002
3298 #define FILE_ACTION_MODIFIED            0x00000003
3299 #define FILE_ACTION_RENAMED_OLD_NAME    0x00000004
3300 #define FILE_ACTION_RENAMED_NEW_NAME    0x00000005
3301
3302
3303 #define FILE_CASE_SENSITIVE_SEARCH      0x00000001
3304 #define FILE_CASE_PRESERVED_NAMES       0x00000002
3305 #define FILE_UNICODE_ON_DISK            0x00000004
3306 #define FILE_PERSISTENT_ACLS            0x00000008
3307 #define FILE_FILE_COMPRESSION           0x00000010
3308 #define FILE_VOLUME_IS_COMPRESSED       0x00008000
3309
3310 /* File alignments (NT) */
3311 #define FILE_BYTE_ALIGNMENT             0x00000000
3312 #define FILE_WORD_ALIGNMENT             0x00000001
3313 #define FILE_LONG_ALIGNMENT             0x00000003
3314 #define FILE_QUAD_ALIGNMENT             0x00000007
3315 #define FILE_OCTA_ALIGNMENT             0x0000000f
3316 #define FILE_32_BYTE_ALIGNMENT          0x0000001f
3317 #define FILE_64_BYTE_ALIGNMENT          0x0000003f
3318 #define FILE_128_BYTE_ALIGNMENT         0x0000007f
3319 #define FILE_256_BYTE_ALIGNMENT         0x000000ff
3320 #define FILE_512_BYTE_ALIGNMENT         0x000001ff
3321
3322 #define REG_NONE                0       /* no type */
3323 #define REG_SZ                  1       /* string type (ASCII) */
3324 #define REG_EXPAND_SZ           2       /* string, includes %ENVVAR% (expanded by caller) (ASCII) */
3325 #define REG_BINARY              3       /* binary format, callerspecific */
3326 /* YES, REG_DWORD == REG_DWORD_LITTLE_ENDIAN */
3327 #define REG_DWORD               4       /* DWORD in little endian format */
3328 #define REG_DWORD_LITTLE_ENDIAN 4       /* DWORD in little endian format */
3329 #define REG_DWORD_BIG_ENDIAN    5       /* DWORD in big endian format  */
3330 #define REG_LINK                6       /* symbolic link (UNICODE) */
3331 #define REG_MULTI_SZ            7       /* multiple strings, delimited by \0, terminated by \0\0 (ASCII) */
3332 #define REG_RESOURCE_LIST       8       /* resource list? huh? */
3333 #define REG_FULL_RESOURCE_DESCRIPTOR    9       /* full resource descriptor? huh? */
3334 #define REG_RESOURCE_REQUIREMENTS_LIST  10
3335 #define REG_QWORD               11      /* QWORD in little endian format */
3336 #define REG_QWORD_LITTLE_ENDIAN 11      /* QWORD in little endian format */
3337
3338 /* ----------------------------- begin registry ----------------------------- */
3339
3340 /* Registry security values */
3341 #define OWNER_SECURITY_INFORMATION      0x00000001
3342 #define GROUP_SECURITY_INFORMATION      0x00000002
3343 #define DACL_SECURITY_INFORMATION       0x00000004
3344 #define SACL_SECURITY_INFORMATION       0x00000008
3345
3346 #define REG_OPTION_RESERVED             0x00000000
3347 #define REG_OPTION_NON_VOLATILE         0x00000000
3348 #define REG_OPTION_VOLATILE             0x00000001
3349 #define REG_OPTION_CREATE_LINK          0x00000002
3350 #define REG_OPTION_BACKUP_RESTORE       0x00000004 /* FIXME */
3351 #define REG_OPTION_OPEN_LINK            0x00000008
3352 #define REG_LEGAL_OPTION               (REG_OPTION_RESERVED|  \
3353                                         REG_OPTION_NON_VOLATILE|  \
3354                                         REG_OPTION_VOLATILE|  \
3355                                         REG_OPTION_CREATE_LINK|  \
3356                                         REG_OPTION_BACKUP_RESTORE|  \
3357                                         REG_OPTION_OPEN_LINK)
3358
3359
3360 #define REG_CREATED_NEW_KEY     0x00000001
3361 #define REG_OPENED_EXISTING_KEY 0x00000002
3362
3363 /* For RegNotifyChangeKeyValue */
3364 #define REG_NOTIFY_CHANGE_NAME       0x01
3365 #define REG_NOTIFY_CHANGE_ATTRIBUTES 0x02
3366 #define REG_NOTIFY_CHANGE_LAST_SET   0x04
3367 #define REG_NOTIFY_CHANGE_SECURITY   0x08
3368
3369 #define KEY_QUERY_VALUE         0x00000001
3370 #define KEY_SET_VALUE           0x00000002
3371 #define KEY_CREATE_SUB_KEY      0x00000004
3372 #define KEY_ENUMERATE_SUB_KEYS  0x00000008
3373 #define KEY_NOTIFY              0x00000010
3374 #define KEY_CREATE_LINK         0x00000020
3375
3376 /* for RegKeyRestore flags */
3377 #define REG_WHOLE_HIVE_VOLATILE 0x00000001
3378 #define REG_REFRESH_HIVE        0x00000002
3379 #define REG_NO_LAZY_FLUSH       0x00000004
3380 #define REG_FORCE_RESTORE       0x00000008
3381
3382 #define KEY_READ              ((STANDARD_RIGHTS_READ|  \
3383                                 KEY_QUERY_VALUE|  \
3384                                 KEY_ENUMERATE_SUB_KEYS|  \
3385                                 KEY_NOTIFY)  \
3386                                 & (~SYNCHRONIZE)  \
3387                               )
3388 #define KEY_WRITE             ((STANDARD_RIGHTS_WRITE|  \
3389                                 KEY_SET_VALUE|  \
3390                                 KEY_CREATE_SUB_KEY)  \
3391                                 & (~SYNCHRONIZE)  \
3392                               )
3393 #define KEY_EXECUTE           ((KEY_READ) & (~SYNCHRONIZE))
3394 #define KEY_ALL_ACCESS        ((STANDARD_RIGHTS_ALL|  \
3395                                 KEY_QUERY_VALUE|  \
3396                                 KEY_SET_VALUE|  \
3397                                 KEY_CREATE_SUB_KEY|  \
3398                                 KEY_ENUMERATE_SUB_KEYS|  \
3399                                 KEY_NOTIFY|  \
3400                                 KEY_CREATE_LINK)  \
3401                                 & (~SYNCHRONIZE)  \
3402                               )
3403 /* ------------------------------ end registry ------------------------------ */
3404
3405
3406 #define EVENTLOG_SUCCESS                0x0000
3407 #define EVENTLOG_ERROR_TYPE             0x0001
3408 #define EVENTLOG_WARNING_TYPE           0x0002
3409 #define EVENTLOG_INFORMATION_TYPE       0x0004
3410 #define EVENTLOG_AUDIT_SUCCESS          0x0008
3411 #define EVENTLOG_AUDIT_FAILURE          0x0010
3412
3413 #define SERVICE_BOOT_START   0x00000000
3414 #define SERVICE_SYSTEM_START 0x00000001
3415 #define SERVICE_AUTO_START   0x00000002
3416 #define SERVICE_DEMAND_START 0x00000003
3417 #define SERVICE_DISABLED     0x00000004
3418
3419 #define SERVICE_ERROR_IGNORE   0x00000000
3420 #define SERVICE_ERROR_NORMAL   0x00000001
3421 #define SERVICE_ERROR_SEVERE   0x00000002
3422 #define SERVICE_ERROR_CRITICAL 0x00000003
3423
3424 /* Service types */
3425 #define SERVICE_KERNEL_DRIVER      0x00000001
3426 #define SERVICE_FILE_SYSTEM_DRIVER 0x00000002
3427 #define SERVICE_ADAPTER            0x00000004
3428 #define SERVICE_RECOGNIZER_DRIVER  0x00000008
3429
3430 #define SERVICE_DRIVER ( SERVICE_KERNEL_DRIVER | SERVICE_FILE_SYSTEM_DRIVER | \
3431                          SERVICE_RECOGNIZER_DRIVER )
3432
3433 #define SERVICE_WIN32_OWN_PROCESS   0x00000010
3434 #define SERVICE_WIN32_SHARE_PROCESS 0x00000020
3435 #define SERVICE_WIN32  (SERVICE_WIN32_OWN_PROCESS | SERVICE_WIN32_SHARE_PROCESS)
3436
3437 #define SERVICE_INTERACTIVE_PROCESS 0x00000100
3438
3439 #define SERVICE_TYPE_ALL ( SERVICE_WIN32 | SERVICE_ADAPTER | \
3440                            SERVICE_DRIVER | SERVICE_INTERACTIVE_PROCESS )
3441
3442
3443 typedef enum _CM_SERVICE_NODE_TYPE
3444 {
3445   DriverType               = SERVICE_KERNEL_DRIVER,
3446   FileSystemType           = SERVICE_FILE_SYSTEM_DRIVER,
3447   Win32ServiceOwnProcess   = SERVICE_WIN32_OWN_PROCESS,
3448   Win32ServiceShareProcess = SERVICE_WIN32_SHARE_PROCESS,
3449   AdapterType              = SERVICE_ADAPTER,
3450   RecognizerType           = SERVICE_RECOGNIZER_DRIVER
3451 } SERVICE_NODE_TYPE;
3452
3453 typedef enum _CM_SERVICE_LOAD_TYPE
3454 {
3455   BootLoad    = SERVICE_BOOT_START,
3456   SystemLoad  = SERVICE_SYSTEM_START,
3457   AutoLoad    = SERVICE_AUTO_START,
3458   DemandLoad  = SERVICE_DEMAND_START,
3459   DisableLoad = SERVICE_DISABLED
3460 } SERVICE_LOAD_TYPE;
3461
3462 typedef enum _CM_ERROR_CONTROL_TYPE
3463 {
3464   IgnoreError   = SERVICE_ERROR_IGNORE,
3465   NormalError   = SERVICE_ERROR_NORMAL,
3466   SevereError   = SERVICE_ERROR_SEVERE,
3467   CriticalError = SERVICE_ERROR_CRITICAL
3468 } SERVICE_ERROR_TYPE;
3469
3470
3471
3472 #define RtlEqualMemory(Destination, Source, Length) (!memcmp((Destination),(Source),(Length)))
3473 #define RtlMoveMemory(Destination, Source, Length) memmove((Destination),(Source),(Length))
3474 #define RtlCopyMemory(Destination, Source, Length) memcpy((Destination),(Source),(Length))
3475 #define RtlFillMemory(Destination, Length, Fill) memset((Destination),(Fill),(Length))
3476 #define RtlZeroMemory(Destination, Length) memset((Destination),0,(Length))
3477
3478 #include "guiddef.h"
3479
3480 typedef struct _RTL_CRITICAL_SECTION_DEBUG
3481 {
3482   WORD   Type;
3483   WORD   CreatorBackTraceIndex;
3484   struct _RTL_CRITICAL_SECTION *CriticalSection;
3485   LIST_ENTRY ProcessLocksList;
3486   DWORD EntryCount;
3487   DWORD ContentionCount;
3488   DWORD Spare[ 2 ];
3489 } RTL_CRITICAL_SECTION_DEBUG, *PRTL_CRITICAL_SECTION_DEBUG, RTL_RESOURCE_DEBUG, *PRTL_RESOURCE_DEBUG;
3490
3491 typedef struct _RTL_CRITICAL_SECTION {
3492     PRTL_CRITICAL_SECTION_DEBUG DebugInfo;
3493     LONG LockCount;
3494     LONG RecursionCount;
3495     HANDLE OwningThread;
3496     HANDLE LockSemaphore;
3497     ULONG_PTR SpinCount;
3498 }  RTL_CRITICAL_SECTION, *PRTL_CRITICAL_SECTION;
3499
3500 typedef VOID (NTAPI * WAITORTIMERCALLBACKFUNC) (PVOID, BOOLEAN );
3501
3502 #endif  /* __WINE_WINNT_H */