~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Wine Cross Reference
wine/include/winnt.h

Version: ~ [ wine-1.1.33 ] ~ [ wine-1.1.32 ] ~ [ wine-1.1.31 ] ~ [ wine-1.1.30 ] ~ [ wine-1.1.29 ] ~ [ wine-1.1.28 ] ~ [ wine-1.1.27 ] ~ [ wine-1.1.26 ] ~ [ wine-1.1.25 ] ~ [ wine-1.1.24 ] ~ [ wine-1.1.23 ] ~ [ wine-1.1.22 ] ~ [ wine-1.1.21 ] ~ [ wine-1.1.20 ] ~ [ wine-1.1.19 ] ~ [ wine-1.1.18 ] ~ [ wine-1.1.17 ] ~ [ wine-1.1.16 ] ~ [ wine-1.1.15 ] ~ [ wine-1.1.14 ] ~ [ wine-1.1.13 ] ~ [ wine-1.1.12 ] ~ [ wine-1.1.11 ] ~ [ wine-1.1.10 ] ~ [ wine-1.1.9 ] ~ [ wine-1.1.8 ] ~ [ wine-1.1.7 ] ~ [ wine-1.0.1 ] ~ [ wine-1.1.6 ] ~ [ wine-1.1.5 ] ~ [ wine-1.1.4 ] ~ [ wine-1.1.3 ] ~ [ wine-1.1.2 ] ~ [ wine-1.1.1 ] ~ [ wine-1.1.0 ] ~ [ wine-1.0 ] ~

  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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 19  */
 20 
 21 #ifndef _WINNT_
 22 #define _WINNT_
 23 
 24 #include <basetsd.h>
 25 #include <guiddef.h>
 26 
 27 #ifndef RC_INVOKED
 28 #include <ctype.h>
 29 #include <stddef.h>
 30 #include <string.h>
 31 #endif
 32 
 33 
 34 #ifdef __cplusplus
 35 extern "C" {
 36 #endif
 37 
 38 #ifdef _NTSYSTEM_
 39 #define NTSYSAPI
 40 #else
 41 #define NTSYSAPI DECLSPEC_IMPORT
 42 #endif
 43 
 44 #define NTAPI __stdcall
 45 
 46 #ifndef MIDL_PASS
 47 # if defined(_MSC_VER)
 48 #  define DECLSPEC_IMPORT __declspec(dllimport)
 49 # elif defined(__MINGW32__) || defined(__CYGWIN__)
 50 #  define DECLSPEC_IMPORT __attribute__((dllimport))
 51 # else
 52 #  define DECLSPEC_IMPORT DECLSPEC_HIDDEN
 53 # endif
 54 #else
 55 # define DECLSPEC_IMPORT
 56 #endif
 57 
 58 #ifndef DECLSPEC_NORETURN
 59 # if defined(_MSC_VER) && (_MSC_VER >= 1200) && !defined(MIDL_PASS)
 60 #  define DECLSPEC_NORETURN __declspec(noreturn)
 61 # elif defined(__GNUC__)
 62 #  define DECLSPEC_NORETURN __attribute__((noreturn))
 63 # else
 64 #  define DECLSPEC_NORETURN
 65 # endif
 66 #endif
 67 
 68 #ifndef DECLSPEC_ALIGN
 69 # if defined(_MSC_VER) && (_MSC_VER >= 1300) && !defined(MIDL_PASS)
 70 #  define DECLSPEC_ALIGN(x) __declspec(align(x))
 71 # elif defined(__GNUC__)
 72 #  define DECLSPEC_ALIGN(x) __attribute__((aligned(x)))
 73 # else
 74 #  define DECLSPEC_ALIGN(x)
 75 # endif
 76 #endif
 77 
 78 #ifndef DECLSPEC_CACHEALIGN
 79 # define DECLSPEC_CACHEALIGN DECLSPEC_ALIGN(128)
 80 #endif
 81 
 82 #ifndef DECLSPEC_UUID
 83 # if defined(_MSC_VER) && (_MSC_VER >= 1100) && defined (__cplusplus)
 84 #  define DECLSPEC_UUID(x) __declspec(uuid(x))
 85 # else
 86 #  define DECLSPEC_UUID(x)
 87 # endif
 88 #endif
 89 
 90 #ifndef DECLSPEC_NOVTABLE
 91 # if defined(_MSC_VER) && (_MSC_VER >= 1100) && defined(__cplusplus)
 92 #  define DECLSPEC_NOVTABLE __declspec(novtable)
 93 # else
 94 #  define DECLSPEC_NOVTABLE
 95 # endif
 96 #endif
 97 
 98 #ifndef DECLSPEC_SELECTANY
 99 #if defined(_MSC_VER) && (_MSC_VER >= 1100)
100 #define DECLSPEC_SELECTANY __declspec(selectany)
101 #else
102 #define DECLSPEC_SELECTANY
103 #endif
104 #endif
105 
106 #ifndef NOP_FUNCTION
107 # if defined(_MSC_VER) && (_MSC_VER >= 1210)
108 #  define NOP_FUNCTION __noop
109 # else
110 #  define NOP_FUNCTION (void)0
111 # endif
112 #endif
113 
114 #ifndef DECLSPEC_ADDRSAFE
115 # if defined(_MSC_VER) && (_MSC_VER >= 1200) && (defined(_M_ALPHA) || defined(_M_AXP64))
116 #  define DECLSPEC_ADDRSAFE __declspec(address_safe)
117 # else
118 #  define DECLSPEC_ADDRSAFE
119 # endif
120 #endif
121 
122 #ifndef FORCEINLINE
123 # if defined(_MSC_VER) && (_MSC_VER >= 1200)
124 #  define FORCEINLINE __forceinline
125 # elif defined(__GNUC__) && ((__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 2)))
126 #  define FORCEINLINE __attribute__((always_inline))
127 # else
128 #  define FORCEINLINE inline
129 # endif
130 #endif
131 
132 #ifndef DECLSPEC_DEPRECATED
133 # if defined(_MSC_VER) && (_MSC_VER >= 1300) && !defined(MIDL_PASS)
134 #  define DECLSPEC_DEPRECATED __declspec(deprecated)
135 #  define DEPRECATE_SUPPORTED
136 # elif defined(__GNUC__) && ((__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 2)))
137 #  define DECLSPEC_DEPRECATED __attribute__((deprecated))
138 #  define DEPRECATE_SUPPORTED
139 # else
140 #  define DECLSPEC_DEPRECATED
141 #  undef  DEPRECATE_SUPPORTED
142 # endif
143 #endif
144 
145 /* a couple of useful Wine extensions */
146 
147 #ifdef _MSC_VER
148 # define DECLSPEC_EXPORT __declspec(dllexport)
149 #elif defined(__MINGW32__)
150 # define DECLSPEC_EXPORT __attribute__((dllexport))
151 #elif defined(__GNUC__) && ((__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)))
152 # define DECLSPEC_EXPORT __attribute__((visibility ("default")))
153 #else
154 # define DECLSPEC_EXPORT
155 #endif
156 
157 #if defined(__MSC_VER) || defined(__MINGW32__) || defined(__CYGWIN__)
158 # define DECLSPEC_HIDDEN
159 #elif defined(__GNUC__) && ((__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)))
160 # define DECLSPEC_HIDDEN __attribute__((visibility ("hidden")))
161 #else
162 # define DECLSPEC_HIDDEN
163 #endif
164 
165 #if defined(__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 3)))
166 #define __WINE_ALLOC_SIZE(x) __attribute__((__alloc_size__(x)))
167 #else
168 #define __WINE_ALLOC_SIZE(x)
169 #endif
170 
171 /* Anonymous union/struct handling */
172 
173 #ifndef NONAMELESSSTRUCT
174 # ifdef __GNUC__
175    /* Anonymous struct support starts with gcc 2.96 or gcc/g++ 3.x */
176 #  if (__GNUC__ < 2) || ((__GNUC__ == 2) && (defined(__cplusplus) || (__GNUC_MINOR__ < 96)))
177 #   define NONAMELESSSTRUCT
178 #  endif
179 # elif defined(__SUNPRO_C) || defined(__SUNPRO_CC)
180 #  define NONAMELESSSTRUCT
181 # endif
182 #endif  /* NONAMELESSSTRUCT */
183 
184 #ifndef NONAMELESSUNION
185 # ifdef __GNUC__
186    /* Anonymous unions support starts with gcc 2.96/g++ 2.95 */
187 #  if (__GNUC__ < 2) || ((__GNUC__ == 2) && ((__GNUC_MINOR__ < 95) || ((__GNUC_MINOR__ == 95) && !defined(__cplusplus))))
188 #   define NONAMELESSUNION
189 #  endif
190 # elif defined(__SUNPRO_C) || defined(__SUNPRO_CC)
191 #  define NONAMELESSUNION
192 # endif
193 #endif  /* NONAMELESSUNION */
194 
195 #ifndef NONAMELESSSTRUCT
196 #define DUMMYSTRUCTNAME
197 #define DUMMYSTRUCTNAME1
198 #define DUMMYSTRUCTNAME2
199 #define DUMMYSTRUCTNAME3
200 #define DUMMYSTRUCTNAME4
201 #define DUMMYSTRUCTNAME5
202 #else /* !defined(NONAMELESSSTRUCT) */
203 #define DUMMYSTRUCTNAME   s
204 #define DUMMYSTRUCTNAME1  s1
205 #define DUMMYSTRUCTNAME2  s2
206 #define DUMMYSTRUCTNAME3  s3
207 #define DUMMYSTRUCTNAME4  s4
208 #define DUMMYSTRUCTNAME5  s5
209 #endif /* !defined(NONAMELESSSTRUCT) */
210 
211 #ifndef NONAMELESSUNION
212 #define DUMMYUNIONNAME
213 #define DUMMYUNIONNAME1
214 #define DUMMYUNIONNAME2
215 #define DUMMYUNIONNAME3
216 #define DUMMYUNIONNAME4
217 #define DUMMYUNIONNAME5
218 #define DUMMYUNIONNAME6
219 #define DUMMYUNIONNAME7
220 #define DUMMYUNIONNAME8
221 #else /* !defined(NONAMELESSUNION) */
222 #define DUMMYUNIONNAME   u
223 #define DUMMYUNIONNAME1  u1
224 #define DUMMYUNIONNAME2  u2
225 #define DUMMYUNIONNAME3  u3
226 #define DUMMYUNIONNAME4  u4
227 #define DUMMYUNIONNAME5  u5
228 #define DUMMYUNIONNAME6  u6
229 #define DUMMYUNIONNAME7  u7
230 #define DUMMYUNIONNAME8  u8
231 #endif /* !defined(NONAMELESSUNION) */
232 
233 /* C99 restrict support */
234 
235 #if defined(ENABLE_RESTRICTED) && !defined(MIDL_PASS) && !defined(RC_INVOKED)
236 # if defined(_MSC_VER) && defined(_M_MRX000)
237 #  define RESTRICTED_POINTER __restrict
238 # elif defined(__GNUC__) && ((__GNUC__ > 2) || ((__GNUC__ == 2) && (__GNUC_MINOR__ >= 95)))
239 #  define RESTRICTED_POINTER __restrict
240 # else
241 #  define RESTRICTED_POINTER
242 # endif
243 #else
244 # define RESTRICTED_POINTER
245 #endif
246 
247 /* C99 unaligned support */
248 
249 #if defined(_MSC_VER) && (defined(_M_MRX000) || defined(_M_ALPHA) || defined(_M_PPC) || defined(_M_IA64) || defined(_M_AMD64))
250 # define UNALIGNED __unaligned
251 # ifdef _WIN64
252 #  define UNALIGNED64 __unaligned
253 # else
254 #  define UNALIGNED64
255 # endif
256 #else
257 # define UNALIGNED
258 # define UNALIGNED64
259 #endif
260 
261 /* Alignment macros */
262 
263 #if defined(_WIN64) || (defined(_MSC_VER) && defined(_M_ALPHA)) || defined(__alpha__)
264 #define MAX_NATURAL_ALIGNMENT sizeof(ULONGLONG)
265 #define MEMORY_ALLOCATION_ALIGNMENT 16
266 #else
267 #define MAX_NATURAL_ALIGNMENT sizeof(DWORD)
268 #define MEMORY_ALLOCATION_ALIGNMENT 8
269 #endif
270 
271 #if defined(_MSC_VER) && (_MSC_VER >= 1300) && defined(__cplusplus)
272 # define TYPE_ALIGNMENT(t) __alignof(t)
273 #elif defined(__GNUC__)
274 # define TYPE_ALIGNMENT(t) __alignof__(t)
275 #else
276 # define TYPE_ALIGNMENT(t) FIELD_OFFSET(struct { char x; t test; }, test)
277 #endif
278 
279 #ifdef _WIN64
280 # define PROBE_ALIGNMENT(_s) \
281     (TYPE_ALIGNMENT(_s) > TYPE_ALIGNMENT(DWORD) ? \
282     TYPE_ALIGNMENT(_s) : TYPE_ALIGNMENT(DWORD))
283 # define PROBE_ALIGNMENT32(_s) TYPE_ALIGNMENT(DWORD)
284 #else
285 # define PROBE_ALIGNMENT(_s) TYPE_ALIGNMENT(DWORD)
286 #endif
287 
288 /* Compile time assertion */
289 
290 #if defined(_MSC_VER)
291 # define C_ASSERT(e) typedef char __C_ASSERT__[(e)?1:-1]
292 #elif defined(__GNUC__) 
293 # define C_ASSERT(e) extern char __C_ASSERT__[(e)?1:-1] __attribute__((unused))
294 #else
295 # define C_ASSERT(e)
296 #endif
297 
298 /* Eliminate Microsoft C/C++ compiler warning 4715 */
299 #if (_MSC_VER > 1200)
300 # define DEFAULT_UNREACHABLE default: __assume(0)
301 #else
302 # define DEFAULT_UNREACHABLE
303 #endif
304 
305 /* Error Masks */
306 #define APPLICATION_ERROR_MASK       0x20000000
307 #define ERROR_SEVERITY_SUCCESS       0x00000000
308 #define ERROR_SEVERITY_INFORMATIONAL 0x40000000
309 #define ERROR_SEVERITY_WARNING       0x80000000
310 #define ERROR_SEVERITY_ERROR         0xC0000000
311 
312 /* Microsoft's macros for declaring functions */
313 
314 #ifdef __cplusplus
315 # define EXTERN_C    extern "C"
316 #else
317 # define EXTERN_C    extern
318 #endif
319 
320 #define STDMETHODCALLTYPE       __stdcall
321 #define STDMETHODVCALLTYPE      __cdecl
322 #define STDAPICALLTYPE          __stdcall
323 #define STDAPIVCALLTYPE         __cdecl
324 
325 #define STDAPI                  EXTERN_C HRESULT STDAPICALLTYPE
326 #define STDAPI_(type)           EXTERN_C type STDAPICALLTYPE
327 #define STDMETHODIMP            HRESULT STDMETHODCALLTYPE
328 #define STDMETHODIMP_(type)     type STDMETHODCALLTYPE
329 #define STDAPIV                 EXTERN_C HRESULT STDAPIVCALLTYPE
330 #define STDAPIV_(type)          EXTERN_C type STDAPIVCALLTYPE
331 #define STDMETHODIMPV           HRESULT STDMETHODVCALLTYPE
332 #define STDMETHODIMPV_(type)    type STDMETHODVCALLTYPE
333 
334 /* Define the basic types */
335 #ifndef VOID
336 #define VOID void
337 #endif
338 typedef VOID           *PVOID;
339 typedef VOID           *PVOID64;
340 typedef BYTE            BOOLEAN,    *PBOOLEAN;
341 typedef char            CHAR,       *PCHAR;
342 typedef short           SHORT,      *PSHORT;
343 #ifdef _MSC_VER
344 typedef long            LONG,       *PLONG;
345 #else
346 typedef int             LONG,       *PLONG;
347 #endif
348 
349 /* Some systems might have wchar_t, but we really need 16 bit characters */
350 #ifdef WINE_UNICODE_NATIVE
351 typedef wchar_t         WCHAR,      *PWCHAR;
352 #else
353 typedef unsigned short  WCHAR,      *PWCHAR;
354 #endif
355 
356 /* 'Extended/Wide' numerical types */
357 #ifndef _ULONGLONG_
358 # define _ULONGLONG_
359 # ifdef _MSC_VER
360 typedef signed __int64   LONGLONG,  *PLONGLONG;
361 typedef unsigned __int64 ULONGLONG, *PULONGLONG;
362 # else
363 typedef signed __int64   DECLSPEC_ALIGN(8) LONGLONG,   *PLONGLONG;
364 typedef unsigned __int64 DECLSPEC_ALIGN(8) ULONGLONG,  *PULONGLONG;
365 # endif
366 #endif
367 
368 #ifndef _DWORDLONG_
369 # define _DWORDLONG_
370 # ifdef _MSC_VER
371 typedef ULONGLONG DWORDLONG, *PDWORDLONG;
372 # else
373 typedef ULONGLONG   DECLSPEC_ALIGN(8) DWORDLONG,   *PDWORDLONG;
374 # endif
375 #endif
376 
377 /* ANSI string types */
378 typedef CHAR           *PCH,        *LPCH;
379 typedef const CHAR     *PCCH,       *LPCCH;
380 typedef CHAR           *PSTR,       *LPSTR,     *NPSTR;
381 typedef const CHAR     *PCSTR,      *LPCSTR;
382 
383 /* Unicode string types */
384 typedef WCHAR          *PWCH,       *LPWCH;
385 typedef const WCHAR    *PCWCH,      *LPCWCH;
386 typedef WCHAR          *PWSTR,      *LPWSTR,    *NWPSTR;
387 typedef const WCHAR    *PCWSTR,     *LPCWSTR;
388 
389 /* Neutral character and string types */
390 /* These are only defined for Winelib, i.e. _not_ defined for
391  * the emulator. The reason is they depend on the UNICODE
392  * macro which only exists in the user's code.
393  */
394 #ifndef WINE_NO_UNICODE_MACROS
395 # ifdef UNICODE
396 # ifndef _TCHAR_DEFINED
397 typedef WCHAR           TCHAR,      *PTCHAR;
398 # define _TCHAR_DEFINED
399 #endif
400 typedef LPWSTR          PTSTR,       LPTSTR;
401 typedef LPCWSTR         PCTSTR,      LPCTSTR;
402 #  define __TEXT(string) L##string
403 # else  /* UNICODE */
404 # ifndef _TCHAR_DEFINED
405 typedef CHAR            TCHAR,      *PTCHAR;
406 # define _TCHAR_DEFINED
407 # endif
408 typedef LPSTR           PTSTR,       LPTSTR;
409 typedef LPCSTR          PCTSTR,      LPCTSTR;
410 #  define __TEXT(string) string
411 # endif /* UNICODE */
412 # define TEXT(quote) __TEXT(quote)
413 #endif   /* WINE_NO_UNICODE_MACROS */
414 
415 /* Misc common WIN32 types */
416 typedef char            CCHAR;
417 typedef DWORD           LCID,       *PLCID;
418 typedef WORD            LANGID;
419 typedef DWORD           EXECUTION_STATE;
420 #ifndef _HRESULT_DEFINED
421 #define _HRESULT_DEFINED
422 typedef LONG            HRESULT;
423 #endif
424 
425 /* Handle type */
426 
427 typedef void *HANDLE;
428 typedef HANDLE *PHANDLE, *LPHANDLE;
429 
430 #ifdef STRICT
431 #define DECLARE_HANDLE(a) typedef struct a##__ { int unused; } *a
432 #else /*STRICT*/
433 #define DECLARE_HANDLE(a) typedef HANDLE a
434 #endif /*STRICT*/
435 
436 typedef BYTE  FCHAR;
437 typedef WORD  FSHORT;
438 typedef DWORD FLONG;
439 
440 /* Defines */
441 
442 #ifndef WIN32_NO_STATUS
443 
444 #define STATUS_WAIT_0                    ((DWORD) 0x00000000)
445 #define STATUS_ABANDONED_WAIT_0          ((DWORD) 0x00000080)
446 #define STATUS_USER_APC                  ((DWORD) 0x000000C0)
447 #define STATUS_TIMEOUT                   ((DWORD) 0x00000102)
448 #define STATUS_PENDING                   ((DWORD) 0x00000103)
449 #define STATUS_SEGMENT_NOTIFICATION      ((DWORD) 0x40000005)
450 #define STATUS_GUARD_PAGE_VIOLATION      ((DWORD) 0x80000001)
451 #define STATUS_DATATYPE_MISALIGNMENT     ((DWORD) 0x80000002)
452 #define STATUS_BREAKPOINT                ((DWORD) 0x80000003)
453 #define STATUS_SINGLE_STEP               ((DWORD) 0x80000004)
454 #define STATUS_ACCESS_VIOLATION          ((DWORD) 0xC0000005)
455 #define STATUS_IN_PAGE_ERROR             ((DWORD) 0xC0000006)
456 #define STATUS_INVALID_HANDLE            ((DWORD) 0xC0000008)
457 #define STATUS_NO_MEMORY                 ((DWORD) 0xC0000017)
458 #define STATUS_ILLEGAL_INSTRUCTION       ((DWORD) 0xC000001D)
459 #define STATUS_NONCONTINUABLE_EXCEPTION  ((DWORD) 0xC0000025)
460 #define STATUS_INVALID_DISPOSITION       ((DWORD) 0xC0000026)
461 #define STATUS_ARRAY_BOUNDS_EXCEEDED     ((DWORD) 0xC000008C)
462 #define STATUS_FLOAT_DENORMAL_OPERAND    ((DWORD) 0xC000008D)
463 #define STATUS_FLOAT_DIVIDE_BY_ZERO      ((DWORD) 0xC000008E)
464 #define STATUS_FLOAT_INEXACT_RESULT      ((DWORD) 0xC000008F)
465 #define STATUS_FLOAT_INVALID_OPERATION   ((DWORD) 0xC0000090)
466 #define STATUS_FLOAT_OVERFLOW            ((DWORD) 0xC0000091)
467 #define STATUS_FLOAT_STACK_CHECK         ((DWORD) 0xC0000092)
468 #define STATUS_FLOAT_UNDERFLOW           ((DWORD) 0xC0000093)
469 #define STATUS_INTEGER_DIVIDE_BY_ZERO    ((DWORD) 0xC0000094)
470 #define STATUS_INTEGER_OVERFLOW          ((DWORD) 0xC0000095)
471 #define STATUS_PRIVILEGED_INSTRUCTION    ((DWORD) 0xC0000096)
472 #define STATUS_STACK_OVERFLOW            ((DWORD) 0xC00000FD)
473 #define STATUS_CONTROL_C_EXIT            ((DWORD) 0xC000013A)
474 #define STATUS_FLOAT_MULTIPLE_FAULTS     ((DWORD) 0xC00002B4)
475 #define STATUS_FLOAT_MULTIPLE_TRAPS      ((DWORD) 0xC00002B5)
476 #define STATUS_REG_NAT_CONSUMPTION       ((DWORD) 0xC00002C9)
477 #define STATUS_SXS_EARLY_DEACTIVATION    ((DWORD) 0xC015000F)
478 #define STATUS_SXS_INVALID_DEACTIVATION  ((DWORD) 0xC0150010)
479 
480 /* status values for ContinueDebugEvent */
481 #define DBG_EXCEPTION_HANDLED       ((DWORD) 0x00010001)
482 #define DBG_CONTINUE                ((DWORD) 0x00010002)
483 #define DBG_TERMINATE_THREAD        ((DWORD) 0x40010003)
484 #define DBG_TERMINATE_PROCESS       ((DWORD) 0x40010004)
485 #define DBG_CONTROL_C               ((DWORD) 0x40010005)
486 #define DBG_CONTROL_BREAK           ((DWORD) 0x40010008)
487 #define DBG_COMMAND_EXCEPTION       ((DWORD) 0x40010009)
488 #define DBG_EXCEPTION_NOT_HANDLED   ((DWORD) 0x80010001)
489 
490 #endif /* WIN32_NO_STATUS */
491 
492 /* Argument 1 passed to the DllEntryProc. */
493 #define DLL_PROCESS_DETACH      0       /* detach process (unload library) */
494 #define DLL_PROCESS_ATTACH      1       /* attach process (load library) */
495 #define DLL_THREAD_ATTACH       2       /* attach new thread */
496 #define DLL_THREAD_DETACH       3       /* detach thread */
497 #ifdef __WINESRC__
498 #define DLL_WINE_PREATTACH      8       /* called before process attach for Wine builtins */
499 #endif
500 
501 /* u.x.wProcessorArchitecture (NT) */
502 #define PROCESSOR_ARCHITECTURE_INTEL    0
503 #define PROCESSOR_ARCHITECTURE_MIPS     1
504 #define PROCESSOR_ARCHITECTURE_ALPHA    2
505 #define PROCESSOR_ARCHITECTURE_PPC      3
506 #define PROCESSOR_ARCHITECTURE_SHX      4
507 #define PROCESSOR_ARCHITECTURE_ARM      5
508 #define PROCESSOR_ARCHITECTURE_IA64     6
509 #define PROCESSOR_ARCHITECTURE_ALPHA64  7
510 #define PROCESSOR_ARCHITECTURE_MSIL     8
511 #define PROCESSOR_ARCHITECTURE_AMD64    9
512 #define PROCESSOR_ARCHITECTURE_UNKNOWN  0xFFFF
513 
514 /* dwProcessorType */
515 #define PROCESSOR_INTEL_386      386
516 #define PROCESSOR_INTEL_486      486
517 #define PROCESSOR_INTEL_PENTIUM  586
518 #define PROCESSOR_INTEL_860      860
519 #define PROCESSOR_INTEL_IA64     2200
520 #define PROCESSOR_AMD_X8664      8664
521 #define PROCESSOR_MIPS_R2000     2000
522 #define PROCESSOR_MIPS_R3000     3000
523 #define PROCESSOR_MIPS_R4000     4000
524 #define PROCESSOR_ALPHA_21064    21064
525 #define PROCESSOR_PPC_601        601
526 #define PROCESSOR_PPC_603        603
527 #define PROCESSOR_PPC_604        604
528 #define PROCESSOR_PPC_620        620
529 #define PROCESSOR_HITACHI_SH3    10003
530 #define PROCESSOR_HITACHI_SH3E   10004
531 #define PROCESSOR_HITACHI_SH4    10005
532 #define PROCESSOR_MOTOROLA_821   821
533 #define PROCESSOR_SHx_SH3        103
534 #define PROCESSOR_SHx_SH4        104
535 #define PROCESSOR_STRONGARM      2577
536 #define PROCESSOR_ARM720         1824    /* 0x720 */
537 #define PROCESSOR_ARM820         2080    /* 0x820 */
538 #define PROCESSOR_ARM920         2336    /* 0x920 */
539 #define PROCESSOR_ARM_7TDMI      70001
540 
541 #define MAXIMUM_PROCESSORS       32
542 typedef struct _MEMORY_BASIC_INFORMATION
543 {
544     LPVOID   BaseAddress;
545     LPVOID   AllocationBase;
546     DWORD    AllocationProtect;
547     SIZE_T   RegionSize;
548     DWORD    State;
549     DWORD    Protect;
550     DWORD    Type;
551 } MEMORY_BASIC_INFORMATION, *PMEMORY_BASIC_INFORMATION;
552 
553 #define PAGE_NOACCESS           0x01
554 #define PAGE_READONLY           0x02
555 #define PAGE_READWRITE          0x04
556 #define PAGE_WRITECOPY          0x08
557 #define PAGE_EXECUTE            0x10
558 #define PAGE_EXECUTE_READ       0x20
559 #define PAGE_EXECUTE_READWRITE  0x40
560 #define PAGE_EXECUTE_WRITECOPY  0x80
561 #define PAGE_GUARD              0x100
562 #define PAGE_NOCACHE            0x200
563 #define PAGE_WRITECOMBINE       0x400
564 
565 #define MEM_COMMIT              0x00001000
566 #define MEM_RESERVE             0x00002000
567 #define MEM_DECOMMIT            0x00004000
568 #define MEM_RELEASE             0x00008000
569 #define MEM_FREE                0x00010000
570 #define MEM_PRIVATE             0x00020000
571 #define MEM_MAPPED              0x00040000
572 #define MEM_RESET               0x00080000
573 #define MEM_TOP_DOWN            0x00100000
574 #define MEM_WRITE_WATCH         0x00200000
575 #define MEM_PHYSICAL            0x00400000
576 #define MEM_LARGE_PAGES         0x20000000
577 #define MEM_4MB_PAGES           0x80000000
578 
579 #define SEC_FILE                0x00800000
580 #define SEC_IMAGE               0x01000000
581 #define SEC_RESERVE             0x04000000
582 #define SEC_COMMIT              0x08000000
583 #define SEC_NOCACHE             0x10000000
584 #define SEC_LARGE_PAGES         0x80000000
585 #define MEM_IMAGE               SEC_IMAGE
586 
587 #define WRITE_WATCH_FLAG_RESET  0x00000001
588 
589 
590 #define MINCHAR       0x80
591 #define MAXCHAR       0x7f
592 #define MINSHORT      0x8000
593 #define MAXSHORT      0x7fff
594 #define MINLONG       0x80000000
595 #define MAXLONG       0x7fffffff
596 #define MAXBYTE       0xff
597 #define MAXWORD       0xffff
598 #define MAXDWORD      0xffffffff
599 
600 #define FIELD_OFFSET(type, field) \
601   ((LONG)(INT_PTR)&(((type *)0)->field))
602 
603 #define CONTAINING_RECORD(address, type, field) \
604   ((type *)((PCHAR)(address) - (PCHAR)(&((type *)0)->field)))
605 
606 /* Types */
607 
608 typedef struct _LIST_ENTRY {
609   struct _LIST_ENTRY *Flink;
610   struct _LIST_ENTRY *Blink;
611 } LIST_ENTRY, *PLIST_ENTRY, * RESTRICTED_POINTER PRLIST_ENTRY;
612 
613 typedef struct _SINGLE_LIST_ENTRY {
614   struct _SINGLE_LIST_ENTRY *Next;
615 } SINGLE_LIST_ENTRY, *PSINGLE_LIST_ENTRY;
616 
617 #ifdef _WIN64
618 
619 typedef struct DECLSPEC_ALIGN(16) _SLIST_ENTRY *PSLIST_ENTRY;
620 typedef struct DECLSPEC_ALIGN(16) _SLIST_ENTRY {
621     PSLIST_ENTRY Next;
622 } SLIST_ENTRY;
623 
624 typedef union DECLSPEC_ALIGN(16) _SLIST_HEADER {
625     struct {
626         ULONGLONG Alignment;
627         ULONGLONG Region;
628     } DUMMYSTRUCTNAME;
629     struct {
630         ULONGLONG Depth:16;
631         ULONGLONG Sequence:9;
632         ULONGLONG NextEntry:39;
633         ULONGLONG HeaderType:1;
634         ULONGLONG Init:1;
635         ULONGLONG Reserved:59;
636         ULONGLONG Region:3;
637     } Header8;
638     struct {
639         ULONGLONG Depth:16;
640         ULONGLONG Sequence:48;
641         ULONGLONG HeaderType:1;
642         ULONGLONG Init:1;
643         ULONGLONG Reserved:2;
644         ULONGLONG NextEntry:60;
645     } Header16;
646 } SLIST_HEADER, *PSLIST_HEADER;
647 
648 #else
649 
650 #undef SLIST_ENTRY /* for Mac OS */
651 #define SLIST_ENTRY SINGLE_LIST_ENTRY
652 #define _SLIST_ENTRY _SINGLE_LIST_ENTRY
653 #define PSLIST_ENTRY PSINGLE_LIST_ENTRY
654 
655 typedef union _SLIST_HEADER {
656     ULONGLONG Alignment;
657     struct {
658         SLIST_ENTRY Next;
659         WORD Depth;
660         WORD Sequence;
661     } DUMMYSTRUCTNAME;
662 } SLIST_HEADER, *PSLIST_HEADER;
663 
664 #endif
665 
666 NTSYSAPI PSLIST_ENTRY WINAPI RtlFirstEntrySList(const SLIST_HEADER*);
667 NTSYSAPI VOID         WINAPI RtlInitializeSListHead(PSLIST_HEADER);
668 NTSYSAPI PSLIST_ENTRY WINAPI RtlInterlockedFlushSList(PSLIST_HEADER);
669 NTSYSAPI PSLIST_ENTRY WINAPI RtlInterlockedPopEntrySList(PSLIST_HEADER);
670 NTSYSAPI PSLIST_ENTRY WINAPI RtlInterlockedPushEntrySList(PSLIST_HEADER, PSLIST_ENTRY);
671 NTSYSAPI WORD         WINAPI RtlQueryDepthSList(PSLIST_HEADER);
672 
673 
674 /* Heap flags */
675 
676 #define HEAP_NO_SERIALIZE               0x00000001
677 #define HEAP_GROWABLE                   0x00000002
678 #define HEAP_GENERATE_EXCEPTIONS        0x00000004
679 #define HEAP_ZERO_MEMORY                0x00000008
680 #define HEAP_REALLOC_IN_PLACE_ONLY      0x00000010
681 #define HEAP_TAIL_CHECKING_ENABLED      0x00000020
682 #define HEAP_FREE_CHECKING_ENABLED      0x00000040
683 #define HEAP_DISABLE_COALESCE_ON_FREE   0x00000080
684 #define HEAP_CREATE_ALIGN_16            0x00010000
685 #define HEAP_CREATE_ENABLE_TRACING      0x00020000
686 #define HEAP_CREATE_ENABLE_EXECUTE      0x00040000
687 
688 /* This flag allows it to create heaps shared by all processes under win95,
689    FIXME: correct name */
690 #define HEAP_SHARED                     0x04000000
691 
692 typedef enum _HEAP_INFORMATION_CLASS {
693     HeapCompatibilityInformation,
694 } HEAP_INFORMATION_CLASS;
695 
696 /* Processor feature flags.  */
697 #define PF_FLOATING_POINT_PRECISION_ERRATA      0
698 #define PF_FLOATING_POINT_EMULATED              1
699 #define PF_COMPARE_EXCHANGE_DOUBLE              2
700 #define PF_MMX_INSTRUCTIONS_AVAILABLE           3
701 #define PF_PPC_MOVEMEM_64BIT_OK                 4
702 #define PF_ALPHA_BYTE_INSTRUCTIONS              5
703 #define PF_XMMI_INSTRUCTIONS_AVAILABLE          6
704 #define PF_3DNOW_INSTRUCTIONS_AVAILABLE         7
705 #define PF_RDTSC_INSTRUCTION_AVAILABLE          8
706 #define PF_PAE_ENABLED                          9
707 #define PF_XMMI64_INSTRUCTIONS_AVAILABLE        10
708 #define PF_SSE_DAZ_MODE_AVAILABLE               11
709 #define PF_NX_ENABLED                           12
710 #define PF_SSE3_INSTRUCTIONS_AVAILABLE          13
711 #define PF_COMPARE_EXCHANGE128                  14
712 #define PF_COMPARE64_EXCHANGE128                15
713 #define PF_CHANNELS_ENABLED                     16
714 
715 
716 /* Execution state flags */
717 #define ES_SYSTEM_REQUIRED    0x00000001
718 #define ES_DISPLAY_REQUIRED   0x00000002
719 #define ES_USER_PRESENT       0x00000004
720 #define ES_CONTINUOUS         0x80000000
721 
722 /* The Win32 register context */
723 
724 /* CONTEXT is the CPU-dependent context; it should be used        */
725 /* wherever a platform-specific context is needed (e.g. exception */
726 /* handling, Win32 register functions). */
727 
728 /* CONTEXT86 is the i386-specific context; it should be used     */
729 /* wherever only a 386 context makes sense (e.g. DOS interrupts, */
730 /* Win16 register functions), so that this code can be compiled  */
731 /* on all platforms. */
732 
733 #define SIZE_OF_80387_REGISTERS      80
734 
735 typedef struct _FLOATING_SAVE_AREA
736 {
737     DWORD   ControlWord;
738     DWORD   StatusWord;
739     DWORD   TagWord;
740     DWORD   ErrorOffset;
741     DWORD   ErrorSelector;
742     DWORD   DataOffset;
743     DWORD   DataSelector;
744     BYTE    RegisterArea[SIZE_OF_80387_REGISTERS];
745     DWORD   Cr0NpxState;
746 } FLOATING_SAVE_AREA, *PFLOATING_SAVE_AREA;
747 
748 #define MAXIMUM_SUPPORTED_EXTENSION     512
749 
750 typedef struct _CONTEXT86
751 {
752     DWORD   ContextFlags;
753 
754     /* These are selected by CONTEXT_DEBUG_REGISTERS */
755     DWORD   Dr0;
756     DWORD   Dr1;
757     DWORD   Dr2;
758     DWORD   Dr3;
759     DWORD   Dr6;
760     DWORD   Dr7;
761 
762     /* These are selected by CONTEXT_FLOATING_POINT */
763     FLOATING_SAVE_AREA FloatSave;
764 
765     /* These are selected by CONTEXT_SEGMENTS */
766     DWORD   SegGs;
767     DWORD   SegFs;
768     DWORD   SegEs;
769     DWORD   SegDs;
770 
771     /* These are selected by CONTEXT_INTEGER */
772     DWORD   Edi;
773     DWORD   Esi;
774     DWORD   Ebx;
775     DWORD   Edx;
776     DWORD   Ecx;
777     DWORD   Eax;
778 
779     /* These are selected by CONTEXT_CONTROL */
780     DWORD   Ebp;
781     DWORD   Eip;
782     DWORD   SegCs;
783     DWORD   EFlags;
784     DWORD   Esp;
785     DWORD   SegSs;
786 
787     BYTE    ExtendedRegisters[MAXIMUM_SUPPORTED_EXTENSION];
788 } CONTEXT86;
789 
790 #define CONTEXT_X86       0x00010000
791 #define CONTEXT_i386      CONTEXT_X86
792 #define CONTEXT_i486      CONTEXT_X86
793 
794 #define CONTEXT86_CONTROL   (CONTEXT_i386 | 0x0001) /* SS:SP, CS:IP, FLAGS, BP */
795 #define CONTEXT86_INTEGER   (CONTEXT_i386 | 0x0002) /* AX, BX, CX, DX, SI, DI */
796 #define CONTEXT86_SEGMENTS  (CONTEXT_i386 | 0x0004) /* DS, ES, FS, GS */
797 #define CONTEXT86_FLOATING_POINT  (CONTEXT_i386 | 0x0008L) /* 387 state */
798 #define CONTEXT86_DEBUG_REGISTERS (CONTEXT_i386 | 0x0010L) /* DB 0-3,6,7 */
799 #define CONTEXT86_EXTENDED_REGISTERS (CONTEXT_i386 | 0x0020L)
800 #define CONTEXT86_FULL (CONTEXT86_CONTROL | CONTEXT86_INTEGER | CONTEXT86_SEGMENTS)
801 #define CONTEXT86_ALL (CONTEXT86_CONTROL | CONTEXT86_INTEGER | CONTEXT86_SEGMENTS | \
802         CONTEXT86_FLOATING_POINT | CONTEXT86_DEBUG_REGISTERS | CONTEXT86_EXTENDED_REGISTERS)
803 
804 /* i386 context definitions */
805 #ifdef __i386__
806 
807 #define CONTEXT_CONTROL         CONTEXT86_CONTROL
808 #define CONTEXT_INTEGER         CONTEXT86_INTEGER
809 #define CONTEXT_SEGMENTS        CONTEXT86_SEGMENTS
810 #define CONTEXT_FLOATING_POINT  CONTEXT86_FLOATING_POINT
811 #define CONTEXT_DEBUG_REGISTERS CONTEXT86_DEBUG_REGISTERS
812 #define CONTEXT_EXTENDED_REGISTERS CONTEXT86_EXTENDED_REGISTERS
813 #define CONTEXT_FULL            CONTEXT86_FULL
814 #define CONTEXT_ALL             CONTEXT86_ALL
815 
816 typedef CONTEXT86 CONTEXT;
817 
818 #define EXCEPTION_READ_FAULT    0
819 #define EXCEPTION_WRITE_FAULT   1
820 #define EXCEPTION_EXECUTE_FAULT 8
821 
822 #endif  /* __i386__ */
823 
824 typedef struct _LDT_ENTRY {
825     WORD        LimitLow;
826     WORD        BaseLow;
827     union {
828         struct {
829             BYTE    BaseMid;
830             BYTE    Flags1;
831             BYTE    Flags2;
832             BYTE    BaseHi;
833         } Bytes;
834         struct {
835             unsigned    BaseMid: 8;
836             unsigned    Type : 5;
837             unsigned    Dpl : 2;
838             unsigned    Pres : 1;
839             unsigned    LimitHi : 4;
840             unsigned    Sys : 1;
841             unsigned    Reserved_0 : 1;
842             unsigned    Default_Big : 1;
843             unsigned    Granularity : 1;
844             unsigned    BaseHi : 8;
845         } Bits;
846     } HighWord;
847 } LDT_ENTRY, *PLDT_ENTRY;
848 
849 /* x86-64 context definitions */
850 #if defined(__x86_64__)
851 
852 #define CONTEXT_AMD64   0x00100000
853 
854 #define CONTEXT_CONTROL   (CONTEXT_AMD64 | 0x0001)
855 #define CONTEXT_INTEGER   (CONTEXT_AMD64 | 0x0002)
856 #define CONTEXT_SEGMENTS  (CONTEXT_AMD64 | 0x0004)
857 #define CONTEXT_FLOATING_POINT  (CONTEXT_AMD64 | 0x0008L)
858 #define CONTEXT_DEBUG_REGISTERS (CONTEXT_AMD64 | 0x0010L)
859 #define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_INTEGER | CONTEXT_FLOATING_POINT)
860 #define CONTEXT_ALL (CONTEXT_CONTROL | CONTEXT_INTEGER | CONTEXT_SEGMENTS | CONTEXT_FLOATING_POINT | CONTEXT_DEBUG_REGISTERS)
861 
862 #define EXCEPTION_READ_FAULT    0
863 #define EXCEPTION_WRITE_FAULT   1
864 #define EXCEPTION_EXECUTE_FAULT 8
865 
866 typedef struct DECLSPEC_ALIGN(16) _M128A {
867     ULONGLONG Low;
868     LONGLONG High;
869 } M128A, *PM128A;
870 
871 typedef struct _XMM_SAVE_AREA32 {
872     WORD ControlWord;
873     WORD StatusWord;
874     BYTE TagWord;
875     BYTE Reserved1;
876     WORD ErrorOpcode;
877     DWORD ErrorOffset;
878     WORD ErrorSelector;
879     WORD Reserved2;
880     DWORD DataOffset;
881     WORD DataSelector;
882     WORD Reserved3;
883     DWORD MxCsr;
884     DWORD MxCsr_Mask;
885     M128A FloatRegisters[8];
886     M128A XmmRegisters[16];
887     BYTE Reserved4[96];
888 } XMM_SAVE_AREA32, *PXMM_SAVE_AREA32;
889 
890 typedef struct DECLSPEC_ALIGN(16) _CONTEXT {
891     DWORD64 P1Home;
892     DWORD64 P2Home;
893     DWORD64 P3Home;
894     DWORD64 P4Home;
895     DWORD64 P5Home;
896     DWORD64 P6Home;
897 
898     /* Control flags */
899     DWORD ContextFlags;
900     DWORD MxCsr;
901 
902     /* Segment */
903     WORD SegCs;
904     WORD SegDs;
905     WORD SegEs;
906     WORD SegFs;
907     WORD SegGs;
908     WORD SegSs;
909     DWORD EFlags;
910 
911     /* Debug */
912     DWORD64 Dr0;
913     DWORD64 Dr1;
914     DWORD64 Dr2;
915     DWORD64 Dr3;
916     DWORD64 Dr6;
917     DWORD64 Dr7;
918 
919     /* Integer */
920     DWORD64 Rax;
921     DWORD64 Rcx;
922     DWORD64 Rdx;
923     DWORD64 Rbx;
924     DWORD64 Rsp;
925     DWORD64 Rbp;
926     DWORD64 Rsi;
927     DWORD64 Rdi;
928     DWORD64 R8;
929     DWORD64 R9;
930     DWORD64 R10;
931     DWORD64 R11;
932     DWORD64 R12;
933     DWORD64 R13;
934     DWORD64 R14;
935     DWORD64 R15;
936 
937     /* Counter */
938     DWORD64 Rip;
939 
940     /* Floating point */
941     union {
942         XMM_SAVE_AREA32 FltSave;
943         struct {
944             M128A Header[2];
945             M128A Legacy[8];
946             M128A Xmm0;
947             M128A Xmm1;
948             M128A Xmm2;
949             M128A Xmm3;
950             M128A Xmm4;
951             M128A Xmm5;
952             M128A Xmm6;
953             M128A Xmm7;
954             M128A Xmm8;
955             M128A Xmm9;
956             M128A Xmm10;
957             M128A Xmm11;
958             M128A Xmm12;
959             M128A Xmm13;
960             M128A Xmm14;
961             M128A Xmm15;
962         } DUMMYSTRUCTNAME;
963     } DUMMYUNIONNAME;
964 
965     /* Vector */
966     M128A VectorRegister[26];
967     DWORD64 VectorControl;
968 
969     /* Debug control */
970     DWORD64 DebugControl;
971     DWORD64 LastBranchToRip;
972     DWORD64 LastBranchFromRip;
973     DWORD64 LastExceptionToRip;
974     DWORD64 LastExceptionFromRip;
975 } CONTEXT;
976 
977 #endif /* __x86_64__ */
978 
979 /* Alpha context definitions */
980 #if defined(_ALPHA_) || defined(__ALPHA__) || defined(__alpha__)
981 
982 #define CONTEXT_ALPHA   0x00020000
983 
984 #define CONTEXT_CONTROL         (CONTEXT_ALPHA | 0x00000001L)
985 #define CONTEXT_FLOATING_POINT  (CONTEXT_ALPHA | 0x00000002L)
986 #define CONTEXT_INTEGER         (CONTEXT_ALPHA | 0x00000004L)
987 #define CONTEXT_FULL  (CONTEXT_CONTROL | CONTEXT_FLOATING_POINT | CONTEXT_INTEGER)
988 
989 #define EXCEPTION_READ_FAULT    0
990 #define EXCEPTION_WRITE_FAULT   1
991 #define EXCEPTION_EXECUTE_FAULT 8
992 
993 typedef struct _CONTEXT
994 {
995     /* selected by CONTEXT_FLOATING_POINT */
996     ULONGLONG FltF0;
997     ULONGLONG FltF1;
998     ULONGLONG FltF2;
999     ULONGLONG FltF3;
1000     ULONGLONG FltF4;
1001     ULONGLONG FltF5;
1002     ULONGLONG FltF6;
1003     ULONGLONG FltF7;
1004     ULONGLONG FltF8;
1005     ULONGLONG FltF9;
1006     ULONGLONG FltF10;
1007     ULONGLONG FltF11;
1008     ULONGLONG FltF12;
1009     ULONGLONG FltF13;
1010     ULONGLONG FltF14;
1011     ULONGLONG FltF15;
1012     ULONGLONG FltF16;
1013     ULONGLONG FltF17;
1014     ULONGLONG FltF18;
1015     ULONGLONG FltF19;
1016     ULONGLONG FltF20;
1017     ULONGLONG FltF21;
1018     ULONGLONG FltF22;
1019     ULONGLONG FltF23;
1020     ULONGLONG FltF24;
1021     ULONGLONG FltF25;
1022     ULONGLONG FltF26;
1023     ULONGLONG FltF27;
1024     ULONGLONG FltF28;
1025     ULONGLONG FltF29;
1026     ULONGLONG FltF30;
1027     ULONGLONG FltF31;
1028 
1029     /* selected by CONTEXT_INTEGER */
1030     ULONGLONG IntV0;
1031     ULONGLONG IntT0;
1032     ULONGLONG IntT1;
1033     ULONGLONG IntT2;
1034     ULONGLONG IntT3;
1035     ULONGLONG IntT4;
1036     ULONGLONG IntT5;
1037     ULONGLONG IntT6;
1038     ULONGLONG IntT7;
1039     ULONGLONG IntS0;
1040     ULONGLONG IntS1;
1041     ULONGLONG IntS2;
1042     ULONGLONG IntS3;
1043     ULONGLONG IntS4;
1044     ULONGLONG IntS5;
1045     ULONGLONG IntFp;
1046     ULONGLONG IntA0;
1047     ULONGLONG IntA1;
1048     ULONGLONG IntA2;
1049     ULONGLONG IntA3;
1050     ULONGLONG IntA4;
1051     ULONGLONG IntA5;
1052     ULONGLONG IntT8;
1053     ULONGLONG IntT9;
1054     ULONGLONG IntT10;
1055     ULONGLONG IntT11;
1056     ULONGLONG IntRa;
1057     ULONGLONG IntT12;
1058     ULONGLONG IntAt;
1059     ULONGLONG IntGp;
1060     ULONGLONG IntSp;
1061     ULONGLONG IntZero;
1062 
1063     /* selected by CONTEXT_FLOATING_POINT */
1064     ULONGLONG Fpcr;
1065     ULONGLONG SoftFpcr;
1066 
1067     /* selected by CONTEXT_CONTROL */
1068     ULONGLONG Fir;
1069     DWORD Psr;
1070     DWORD ContextFlags;
1071     DWORD Fill[4];
1072 } CONTEXT;
1073 
1074 #define _QUAD_PSR_OFFSET   HighSoftFpcr
1075 #define _QUAD_FLAGS_OFFSET HighFir
1076 
1077 #endif  /* _ALPHA_ */
1078 
1079 #ifdef __arm__
1080 
1081 /* The following flags control the contents of the CONTEXT structure. */
1082 
1083 #define CONTEXT_ARM    0x0000040
1084 #define CONTEXT_CONTROL         (CONTEXT_ARM | 0x00000001L)
1085 #define CONTEXT_INTEGER         (CONTEXT_ARM | 0x00000002L)
1086 
1087 #define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_INTEGER)
1088 
1089 #define EXCEPTION_READ_FAULT    0
1090 #define EXCEPTION_WRITE_FAULT   1
1091 #define EXCEPTION_EXECUTE_FAULT 8
1092 
1093 typedef struct _CONTEXT {
1094         /* The flags values within this flag control the contents of
1095            a CONTEXT record.
1096 
1097            If the context record is used as an input parameter, then
1098            for each portion of the context record controlled by a flag
1099            whose value is set, it is assumed that that portion of the
1100            context record contains valid context. If the context record
1101            is being used to modify a thread's context, then only that
1102            portion of the threads context will be modified.
1103 
1104            If the context record is used as an IN OUT parameter to capture
1105            the context of a thread, then only those portions of the thread's
1106            context corresponding to set flags will be returned.
1107 
1108            The context record is never used as an OUT only parameter. */
1109 
1110         ULONG ContextFlags;
1111 
1112         /* This section is specified/returned if the ContextFlags word contains
1113            the flag CONTEXT_INTEGER. */
1114         ULONG R0;
1115         ULONG R1;
1116         ULONG R2;
1117         ULONG R3;
1118         ULONG R4;
1119         ULONG R5;
1120         ULONG R6;
1121         ULONG R7;
1122         ULONG R8;
1123         ULONG R9;
1124         ULONG R10;
1125         ULONG R11;
1126         ULONG R12;
1127 
1128         ULONG Sp;
1129         ULONG Lr;
1130         ULONG Pc;
1131         ULONG Psr;
1132 } CONTEXT;
1133 
1134 #endif /* __arm__ */
1135 
1136 
1137 /* Mips context definitions */
1138 #ifdef _MIPS_
1139 
1140 #define CONTEXT_R4000   0x00010000
1141 
1142 #define CONTEXT_CONTROL         (CONTEXT_R4000 | 0x00000001)
1143 #define CONTEXT_FLOATING_POINT  (CONTEXT_R4000 | 0x00000002)
1144 #define CONTEXT_INTEGER         (CONTEXT_R4000 | 0x00000004)
1145 
1146 #define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_FLOATING_POINT | CONTEXT_INTEGER)
1147 
1148 #define EXCEPTION_READ_FAULT    0
1149 #define EXCEPTION_WRITE_FAULT   1
1150 #define EXCEPTION_EXECUTE_FAULT 8
1151 
1152 typedef struct _CONTEXT
1153 {
1154     DWORD Argument[4];
1155     /* These are selected by CONTEXT_FLOATING_POINT */
1156     DWORD FltF0;
1157     DWORD FltF1;
1158     DWORD FltF2;
1159     DWORD FltF3;
1160     DWORD FltF4;
1161     DWORD FltF5;
1162     DWORD FltF6;
1163     DWORD FltF7;
1164     DWORD FltF8;
1165     DWORD FltF9;
1166     DWORD FltF10;
1167     DWORD FltF11;
1168     DWORD FltF12;
1169     DWORD FltF13;
1170     DWORD FltF14;
1171     DWORD FltF15;
1172     DWORD FltF16;
1173     DWORD FltF17;
1174     DWORD FltF18;
1175     DWORD FltF19;
1176     DWORD FltF20;
1177     DWORD FltF21;
1178     DWORD FltF22;
1179     DWORD FltF23;
1180     DWORD FltF24;
1181     DWORD FltF25;
1182     DWORD FltF26;
1183     DWORD FltF27;
1184     DWORD FltF28;
1185     DWORD FltF29;
1186     DWORD FltF30;
1187     DWORD FltF31;
1188 
1189     /* These are selected by CONTEXT_INTEGER */
1190     DWORD IntZero;
1191     DWORD IntAt;
1192     DWORD IntV0;
1193     DWORD IntV1;
1194     DWORD IntA0;
1195     DWORD IntA1;
1196     DWORD IntA2;
1197     DWORD IntA3;
1198     DWORD IntT0;
1199     DWORD IntT1;
1200     DWORD IntT2;
1201     DWORD IntT3;
1202     DWORD IntT4;
1203     DWORD IntT5;
1204     DWORD IntT6;
1205     DWORD IntT7;
1206     DWORD IntS0;
1207     DWORD IntS1;
1208     DWORD IntS2;
1209     DWORD IntS3;
1210     DWORD IntS4;
1211     DWORD IntS5;
1212     DWORD IntS6;
1213     DWORD IntS7;
1214     DWORD IntT8;
1215     DWORD IntT9;
1216     DWORD IntK0;
1217     DWORD IntK1;
1218     DWORD IntGp;
1219     DWORD IntSp;
1220     DWORD IntS8;
1221     DWORD IntRa;
1222     DWORD IntLo;
1223     DWORD IntHi;
1224 
1225     /* These are selected by CONTEXT_FLOATING_POINT */
1226     DWORD Fsr;
1227 
1228     /* These are selected by CONTEXT_CONTROL */
1229     DWORD Fir;
1230     DWORD Psr;
1231 
1232     DWORD ContextFlags;
1233     DWORD Fill[2];
1234 } CONTEXT;
1235 
1236 #endif  /* _MIPS_ */
1237 
1238 /* PowerPC context definitions */
1239 #ifdef __powerpc__
1240 
1241 #define CONTEXT_CONTROL         0x0001
1242 #define CONTEXT_FLOATING_POINT  0x0002
1243 #define CONTEXT_INTEGER         0x0004
1244 #define CONTEXT_DEBUG_REGISTERS 0x0008
1245 #define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_FLOATING_POINT | CONTEXT_INTEGER)
1246 
1247 #define EXCEPTION_READ_FAULT    0
1248 #define EXCEPTION_WRITE_FAULT   1
1249 #define EXCEPTION_EXECUTE_FAULT 8
1250 
1251 typedef struct
1252 {
1253     /* These are selected by CONTEXT_FLOATING_POINT */
1254     double Fpr0;
1255     double Fpr1;
1256     double Fpr2;
1257     double Fpr3;
1258     double Fpr4;
1259     double Fpr5;
1260     double Fpr6;
1261     double Fpr7;
1262     double Fpr8;
1263     double Fpr9;
1264     double Fpr10;
1265     double Fpr11;
1266     double Fpr12;
1267     double Fpr13;
1268     double Fpr14;
1269     double Fpr15;
1270     double Fpr16;
1271     double Fpr17;
1272     double Fpr18;
1273     double Fpr19;
1274     double Fpr20;
1275     double Fpr21;
1276     double Fpr22;
1277     double Fpr23;
1278     double Fpr24;
1279     double Fpr25;
1280     double Fpr26;
1281     double Fpr27;
1282     double Fpr28;
1283     double Fpr29;
1284     double Fpr30;
1285     double Fpr31;
1286     double Fpscr;
1287 
1288     /* These are selected by CONTEXT_INTEGER */
1289     DWORD Gpr0;
1290     DWORD Gpr1;
1291     DWORD Gpr2;
1292     DWORD Gpr3;
1293     DWORD Gpr4;
1294     DWORD Gpr5;
1295     DWORD Gpr6;
1296     DWORD Gpr7;
1297     DWORD Gpr8;
1298     DWORD Gpr9;
1299     DWORD Gpr10;
1300     DWORD Gpr11;
1301     DWORD Gpr12;
1302     DWORD Gpr13;
1303     DWORD Gpr14;
1304     DWORD Gpr15;
1305     DWORD Gpr16;
1306     DWORD Gpr17;
1307     DWORD Gpr18;
1308     DWORD Gpr19;
1309     DWORD Gpr20;
1310     DWORD Gpr21;
1311     DWORD Gpr22;
1312     DWORD Gpr23;
1313     DWORD Gpr24;
1314     DWORD Gpr25;
1315     DWORD Gpr26;
1316     DWORD Gpr27;
1317     DWORD Gpr28;
1318     DWORD Gpr29;
1319     DWORD Gpr30;
1320     DWORD Gpr31;
1321 
1322     DWORD Cr;
1323     DWORD Xer;
1324 
1325     /* These are selected by CONTEXT_CONTROL */
1326     DWORD Msr;
1327     DWORD Iar; /* Instruction Address Register , aka PC ... */
1328     DWORD Lr;
1329     DWORD Ctr;
1330 
1331     DWORD ContextFlags;
1332     
1333     DWORD Dar;   /* Fault registers for coredump */
1334     DWORD Dsisr; 
1335     DWORD Trap;  /* number of powerpc exception taken */
1336 
1337     /* These are selected by CONTEXT_DEBUG_REGISTERS */
1338     DWORD Dr0;
1339     DWORD Dr1;
1340     DWORD Dr2;
1341     DWORD Dr3;
1342     DWORD Dr4;
1343     DWORD Dr5;
1344     DWORD Dr6;
1345     DWORD Dr7;
1346 } CONTEXT;
1347 
1348 typedef struct _STACK_FRAME_HEADER
1349 {
1350     DWORD BackChain;
1351     DWORD GlueSaved1;
1352     DWORD GlueSaved2;
1353     DWORD Reserved1;
1354     DWORD Spare1;
1355     DWORD Spare2;
1356 
1357     DWORD Parameter0;
1358     DWORD Parameter1;
1359     DWORD Parameter2;
1360     DWORD Parameter3;
1361     DWORD Parameter4;
1362     DWORD Parameter5;
1363     DWORD Parameter6;
1364     DWORD Parameter7;
1365 } STACK_FRAME_HEADER,*PSTACK_FRAME_HEADER;
1366 
1367 #endif  /* __powerpc__ */
1368 
1369 #ifdef __sparc__
1370 
1371 /*
1372  * FIXME:
1373  *
1374  * There is no official CONTEXT structure defined for the SPARC
1375  * architecture, so I just made one up.
1376  *
1377  * This structure is valid only for 32-bit SPARC architectures,
1378  * not for 64-bit SPARC.
1379  *
1380  * Note that this structure contains only the 'top-level' registers;
1381  * the rest of the register window chain is not visible.
1382  *
1383  * The layout follows the Solaris 'prgregset_t' structure.
1384  *
1385  */
1386 
1387 #define CONTEXT_SPARC            0x10000000
1388 
1389 #define CONTEXT_CONTROL         (CONTEXT_SPARC | 0x00000001)
1390 #define CONTEXT_FLOATING_POINT  (CONTEXT_SPARC | 0x00000002)
1391 #define CONTEXT_INTEGER         (CONTEXT_SPARC | 0x00000004)
1392 
1393 #define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_FLOATING_POINT | CONTEXT_INTEGER)
1394 
1395 #define EXCEPTION_READ_FAULT    0
1396 #define EXCEPTION_WRITE_FAULT   1
1397 #define EXCEPTION_EXECUTE_FAULT 8
1398 
1399 typedef struct _CONTEXT
1400 {
1401     DWORD ContextFlags;
1402 
1403     /* These are selected by CONTEXT_INTEGER */
1404     DWORD g0;
1405     DWORD g1;
1406     DWORD g2;
1407     DWORD g3;
1408     DWORD g4;
1409     DWORD g5;
1410     DWORD g6;
1411     DWORD g7;
1412     DWORD o0;
1413     DWORD o1;
1414     DWORD o2;
1415     DWORD o3;
1416     DWORD o4;
1417     DWORD o5;
1418     DWORD o6;
1419     DWORD o7;
1420     DWORD l0;
1421     DWORD l1;
1422     DWORD l2;
1423     DWORD l3;
1424     DWORD l4;
1425     DWORD l5;
1426     DWORD l6;
1427     DWORD l7;
1428     DWORD i0;
1429     DWORD i1;
1430     DWORD i2;
1431     DWORD i3;
1432     DWORD i4;
1433     DWORD i5;
1434     DWORD i6;
1435     DWORD i7;
1436 
1437     /* These are selected by CONTEXT_CONTROL */
1438     DWORD psr;
1439     DWORD pc;
1440     DWORD npc;
1441     DWORD y;
1442     DWORD wim;
1443     DWORD tbr;
1444 
1445     /* FIXME: floating point registers missing */
1446 
1447 } CONTEXT;
1448 
1449 #endif  /* __sparc__ */
1450 
1451 #if !defined(CONTEXT_FULL) && !defined(RC_INVOKED)
1452 #error You need to define a CONTEXT for your CPU
1453 #endif
1454 
1455 typedef CONTEXT *PCONTEXT;
1456 
1457 /*
1458  * Language IDs
1459  */
1460 
1461 #define MAKELCID(l, s)          (MAKELONG(l, s))
1462 
1463 #define MAKELANGID(p, s)        ((((WORD)(s))<<10) | (WORD)(p))
1464 #define PRIMARYLANGID(l)        ((WORD)(l) & 0x3ff)
1465 #define SUBLANGID(l)            ((WORD)(l) >> 10)
1466 
1467 #define LANGIDFROMLCID(lcid)    ((WORD)(lcid))
1468 #define SORTIDFROMLCID(lcid)    ((WORD)((((DWORD)(lcid)) >> 16) & 0x0f))
1469 
1470 #define LANG_SYSTEM_DEFAULT     (MAKELANGID(LANG_NEUTRAL, SUBLANG_SYS_DEFAULT))
1471 #define LANG_USER_DEFAULT       (MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT))
1472 #define LOCALE_SYSTEM_DEFAULT   (MAKELCID(LANG_SYSTEM_DEFAULT, SORT_DEFAULT))
1473 #define LOCALE_USER_DEFAULT     (MAKELCID(LANG_USER_DEFAULT, SORT_DEFAULT))
1474 #define LOCALE_NEUTRAL          (MAKELCID(MAKELANGID(LANG_NEUTRAL,SUBLANG_NEUTRAL),SORT_DEFAULT))
1475 
1476 #define UNREFERENCED_PARAMETER(u)       (void)(u)
1477 #define DBG_UNREFERENCED_PARAMETER(u)   (void)(u)
1478 #define DBG_UNREFERENCED_LOCAL_VARIABLE(u) (void)(u)
1479 
1480 #define LANG_NEUTRAL        0x00
1481 #define LANG_INVARIANT      0x7f
1482 
1483 #define LANG_AFRIKAANS      0x36
1484 #define LANG_ALBANIAN       0x1c
1485 #define LANG_ALSATIAN       0x84
1486 #define LANG_AMHARIC        0x5e
1487 #define LANG_ARABIC         0x01
1488 #define LANG_ARMENIAN       0x2b
1489 #define LANG_ASSAMESE       0x4d
1490 #define LANG_AZERI          0x2c
1491 #define LANG_BASHKIR        0x6d
1492 #define LANG_BASQUE         0x2d
1493 #define LANG_BELARUSIAN     0x23
1494 #define LANG_BENGALI        0x45
1495 #define LANG_BOSNIAN        0x1a
1496 #define LANG_BOSNIAN_NEUTRAL      0x781a
1497 #define LANG_BRETON         0x7e
1498 #define LANG_BULGARIAN      0x02
1499 #define LANG_CATALAN        0x03
1500 #define LANG_CHINESE        0x04
1501 #define LANG_CHINESE_SIMPLIFIED   0x0004
1502 #define LANG_CHINESE_TRADITIONAL  0x7c04
1503 #define LANG_CORSICAN       0x83
1504 #define LANG_CROATIAN       0x1a
1505 #define LANG_CZECH          0x05
1506 #define LANG_DANISH         0x06
1507 #define LANG_DARI           0x8c
1508 #define LANG_DIVEHI         0x65
1509 #define LANG_DUTCH          0x13
1510 #define LANG_ENGLISH        0x09
1511 #define LANG_ESTONIAN       0x25
1512 #define LANG_FAEROESE       0x38
1513 #define LANG_FARSI          LANG_PERSIAN
1514 #define LANG_FILIPINO       0x64
1515 #define LANG_FINNISH        0x0b
1516 #define LANG_FRENCH         0x0c
1517 #define LANG_FRISIAN        0x62
1518 #define LANG_GALICIAN       0x56
1519 #define LANG_GEORGIAN       0x37
1520 #define LANG_GERMAN         0x07
1521 #define LANG_GREEK          0x08
1522 #define LANG_GREENLANDIC    0x6f
1523 #define LANG_GUJARATI       0x47
1524 #define LANG_HAUSA          0x68
1525 #define LANG_HEBREW         0x0d
1526 #define LANG_HINDI          0x39
1527 #define LANG_HUNGARIAN      0x0e
1528 #define LANG_ICELANDIC      0x0f
1529 #define LANG_IGBO           0x70
1530 #define LANG_INDONESIAN     0x21
1531 #define LANG_INUKTITUT      0x5d
1532 #define LANG_IRISH          0x3c
1533 #define LANG_ITALIAN        0x10
1534 #define LANG_JAPANESE       0x11
1535 #define LANG_KANNADA        0x4b
1536 #define LANG_KASHMIRI       0x60
1537 #define LANG_KAZAK          0x3f
1538 #define LANG_KHMER          0x53
1539 #define LANG_KICHE          0x86
1540 #define LANG_KINYARWANDA    0x87
1541 #define LANG_KONKANI        0x57
1542 #define LANG_KOREAN         0x12
1543 #define LANG_KYRGYZ         0x40
1544 #define LANG_LAO            0x54
1545 #define LANG_LATVIAN        0x26
1546 #define LANG_LITHUANIAN     0x27
1547 #define LANG_LOWER_SORBIAN  0x2e
1548 #define LANG_LUXEMBOURGISH  0x6e
1549 #define LANG_MACEDONIAN     0x2f
1550 #define LANG_MALAY          0x3e
1551 #define LANG_MALAYALAM      0x4c
1552 #define LANG_MALTESE        0x3a
1553 #define LANG_MANIPURI       0x58
1554 #define LANG_MAORI          0x81
1555 #define LANG_MAPUDUNGUN     0x7a
1556 #define LANG_MARATHI        0x4e
1557 #define LANG_MOHAWK         0x7c
1558 #define LANG_MONGOLIAN      0x50
1559 #define LANG_NEPALI         0x61
1560 #define LANG_NORWEGIAN      0x14
1561 #define LANG_OCCITAN        0x82
1562 #define LANG_ORIYA          0x48
1563 #define LANG_PASHTO         0x63
1564 #define LANG_PERSIAN        0x29
1565 #define LANG_POLISH         0x15
1566 #define LANG_PORTUGUESE     0x16
1567 #define LANG_PUNJABI        0x46
1568 #define LANG_QUECHUA        0x6b
1569 #define LANG_ROMANIAN       0x18
1570 #define LANG_ROMANSH        0x17
1571 #define LANG_RUSSIAN        0x19
1572 #define LANG_SAMI           0x3b
1573 #define LANG_SANSKRIT       0x4f
1574 #define LANG_SERBIAN        0x1a
1575 #define LANG_SERBIAN_NEUTRAL      0x7c1a
1576 #define LANG_SINDHI         0x59
1577 #define LANG_SINHALESE      0x5b
1578 #define LANG_SLOVAK         0x1b
1579 #define LANG_SLOVENIAN      0x24
1580 #define LANG_SOTHO          0x6c
1581 #define LANG_SPANISH        0x0a
1582 #define LANG_SWAHILI        0x41
1583 #define LANG_SWEDISH        0x1d
1584 #define LANG_SYRIAC         0x5a
1585 #define LANG_TAJIK          0x28
1586 #define LANG_TAMAZIGHT      0x5f
1587 #define LANG_TAMIL          0x49
1588 #define LANG_TATAR          0x44
1589 #define LANG_TELUGU         0x4a
1590 #define LANG_THAI           0x1e
1591 #define LANG_TIBETAN        0x51
1592 #define LANG_TIGRIGNA       0x73
1593 #define LANG_TSWANA         0x32
1594 #define LANG_TURKISH        0x1f
1595 #define LANG_TURKMEN        0x42
1596 #define LANG_UIGHUR         0x80
1597 #define LANG_UKRAINIAN      0x22
1598 #define LANG_UPPER_SORBIAN  0x2e
1599 #define LANG_URDU           0x20
1600 #define LANG_UZBEK          0x43
1601 #define LANG_VIETNAMESE     0x2a
1602 #define LANG_WELSH          0x52
1603 #define LANG_WOLOF          0x88
1604 #define LANG_XHOSA          0x34
1605 #define LANG_YAKUT          0x85
1606 #define LANG_YI             0x78
1607 #define LANG_YORUBA         0x6a
1608 #define LANG_ZULU           0x35
1609 
1610 /* These are documented by the MSDN but are missing from the Windows header */
1611 #define LANG_MALAGASY       0x8d
1612 
1613 /* FIXME: these are not defined anywhere */
1614 #define LANG_SUTU           0x30
1615 #define LANG_TSONGA         0x31
1616 #define LANG_VENDA          0x33
1617 
1618 /* non standard; keep the number high enough (but < 0xff) */
1619 #define LANG_ESPERANTO                   0x8f
1620 #define LANG_WALON                       0x90
1621 #define LANG_CORNISH                     0x91
1622 #define LANG_GAELIC                      0x94
1623 
1624 /* Sublanguage definitions */
1625 #define SUBLANG_NEUTRAL                  0x00    /* language neutral */
1626 #define SUBLANG_DEFAULT                  0x01    /* user default */
1627 #define SUBLANG_SYS_DEFAULT              0x02    /* system default */
1628 #define SUBLANG_CUSTOM_DEFAULT           0x03
1629 #define SUBLANG_CUSTOM_UNSPECIFIED       0x04
1630 #define SUBLANG_UI_CUSTOM_DEFAULT        0x05
1631 
1632 #define SUBLANG_AFRIKAANS_SOUTH_AFRICA     0x01
1633 #define SUBLANG_ALBANIAN_ALBANIA           0x01
1634 #define SUBLANG_ALSATIAN_FRANCE            0x01
1635 #define SUBLANG_AMHARIC_ETHIOPIA           0x01
1636 #define SUBLANG_ARABIC_SAUDI_ARABIA        0x01
1637 #define SUBLANG_ARABIC_IRAQ                0x02
1638 #define SUBLANG_ARABIC_EGYPT               0x03
1639 #define SUBLANG_ARABIC_LIBYA               0x04
1640 #define SUBLANG_ARABIC_ALGERIA             0x05
1641 #define SUBLANG_ARABIC_MOROCCO             0x06
1642 #define SUBLANG_ARABIC_TUNISIA             0x07
1643 #define SUBLANG_ARABIC_OMAN                0x08
1644 #define SUBLANG_ARABIC_YEMEN               0x09
1645 #define SUBLANG_ARABIC_SYRIA               0x0a
1646 #define SUBLANG_ARABIC_JORDAN              0x0b
1647 #define SUBLANG_ARABIC_LEBANON             0x0c
1648 #define SUBLANG_ARABIC_KUWAIT              0x0d
1649 #define SUBLANG_ARABIC_UAE                 0x0e
1650 #define SUBLANG_ARABIC_BAHRAIN             0x0f
1651 #define SUBLANG_ARABIC_QATAR               0x10
1652 #define SUBLANG_ARMENIAN_ARMENIA           0x01
1653 #define SUBLANG_ASSAMESE_INDIA             0x01
1654 #define SUBLANG_AZERI_LATIN                0x01
1655 #define SUBLANG_AZERI_CYRILLIC             0x02
1656 #define SUBLANG_BASHKIR_RUSSIA             0x01
1657 #define SUBLANG_BASQUE_BASQUE              0x01
1658 #define SUBLANG_BELARUSIAN_BELARUS         0x01
1659 #define SUBLANG_BENGALI_INDIA              0x01
1660 #define SUBLANG_BENGALI_BANGLADESH         0x02
1661 #define SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN 0x05
1662 #define SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC 0x08
1663 #define SUBLANG_BRETON_FRANCE              0x01
1664 #define SUBLANG_BULGARIAN_BULGARIA         0x01
1665 #define SUBLANG_CATALAN_CATALAN            0x01
1666 #define SUBLANG_CHINESE_TRADITIONAL        0x01
1667 #define SUBLANG_CHINESE_SIMPLIFIED         0x02
1668 #define SUBLANG_CHINESE_HONGKONG           0x03
1669 #define SUBLANG_CHINESE_SINGAPORE          0x04
1670 #define SUBLANG_CHINESE_MACAU              0x05
1671 #define SUBLANG_CORSICAN_FRANCE            0x01
1672 #define SUBLANG_CROATIAN_CROATIA           0x01
1673 #define SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN 0x04
1674 #define SUBLANG_CZECH_CZECH_REPUBLIC       0x01
1675 #define SUBLANG_DANISH_DENMARK             0x01
1676 #define SUBLANG_DARI_AFGHANISTAN           0x01
1677 #define SUBLANG_DIVEHI_MALDIVES            0x01
1678 #define SUBLANG_DUTCH                      0x01
1679 #define SUBLANG_DUTCH_BELGIAN              0x02
1680 #define SUBLANG_ENGLISH_US                 0x01
1681 #define SUBLANG_ENGLISH_UK                 0x02
1682 #define SUBLANG_ENGLISH_AUS                0x03
1683 #define SUBLANG_ENGLISH_CAN                0x04
1684 #define SUBLANG_ENGLISH_NZ                 0x05
1685 #define SUBLANG_ENGLISH_EIRE               0x06
1686 #define SUBLANG_ENGLISH_SOUTH_AFRICA       0x07
1687 #define SUBLANG_ENGLISH_JAMAICA            0x08
1688 #define SUBLANG_ENGLISH_CARIBBEAN          0x09
1689 #define SUBLANG_ENGLISH_BELIZE             0x0a
1690 #define SUBLANG_ENGLISH_TRINIDAD           0x0b
1691 #define SUBLANG_ENGLISH_ZIMBABWE           0x0c
1692 #define SUBLANG_ENGLISH_PHILIPPINES        0x0d
1693 #define SUBLANG_ENGLISH_INDIA              0x10
1694 #define SUBLANG_ENGLISH_MALAYSIA           0x11
1695 #define SUBLANG_ENGLISH_SINGAPORE          0x12
1696 #define SUBLANG_ESTONIAN_ESTONIA           0x01
1697 #define SUBLANG_FAEROESE_FAROE_ISLANDS     0x01
1698 #define SUBLANG_FILIPINO_PHILIPPINES       0x01
1699 #define SUBLANG_FINNISH_FINLAND            0x01
1700 #define SUBLANG_FRENCH                     0x01
1701 #define SUBLANG_FRENCH_BELGIAN             0x02
1702 #define SUBLANG_FRENCH_CANADIAN            0x03
1703 #define SUBLANG_FRENCH_SWISS               0x04
1704 #define SUBLANG_FRENCH_LUXEMBOURG          0x05
1705 #define SUBLANG_FRENCH_MONACO              0x06
1706 #define SUBLANG_FRISIAN_NETHERLANDS        0x01
1707 #define SUBLANG_GALICIAN_GALICIAN          0x01
1708 #define SUBLANG_GEORGIAN_GEORGIA           0x01
1709 #define SUBLANG_GERMAN                     0x01
1710 #define SUBLANG_GERMAN_SWISS               0x02
1711 #define SUBLANG_GERMAN_AUSTRIAN            0x03
1712 #define SUBLANG_GERMAN_LUXEMBOURG          0x04
1713 #define SUBLANG_GERMAN_LIECHTENSTEIN       0x05
1714 #define SUBLANG_GREEK_GREECE               0x01
1715 #define SUBLANG_GREENLANDIC_GREENLAND      0x01
1716 #define SUBLANG_GUJARATI_INDIA             0x01
1717 #define SUBLANG_HAUSA_NIGERIA_LATIN        0x01
1718 #define SUBLANG_HEBREW_ISRAEL              0x01
1719 #define SUBLANG_HINDI_INDIA                0x01
1720 #define SUBLANG_HUNGARIAN_HUNGARY          0x01
1721 #define SUBLANG_ICELANDIC_ICELAND          0x01
1722 #define SUBLANG_IGBO_NIGERIA               0x01
1723 #define SUBLANG_INDONESIAN_INDONESIA       0x01
1724 #define SUBLANG_INUKTITUT_CANADA           0x01
1725 #define SUBLANG_INUKTITUT_CANADA_LATIN     0x02
1726 #define SUBLANG_IRISH_IRELAND              0x02
1727 #define SUBLANG_ITALIAN                    0x01
1728 #define SUBLANG_ITALIAN_SWISS              0x02
1729 #define SUBLANG_JAPANESE_JAPAN             0x01
1730 #define SUBLANG_KANNADA_INDIA              0x01
1731 #define SUBLANG_KASHMIRI_SASIA             0x02
1732 #define SUBLANG_KASHMIRI_INDIA             0x02
1733 #define SUBLANG_KAZAK_KAZAKHSTAN           0x01
1734 #define SUBLANG_KHMER_CAMBODIA             0x01
1735 #define SUBLANG_KICHE_GUATEMALA            0x01
1736 #define SUBLANG_KINYARWANDA_RWANDA         0X01
1737 #define SUBLANG_KONKANI_INDIA              0x01
1738 #define SUBLANG_KOREAN                     0x01
1739 #define SUBLANG_KYRGYZ_KYRGYZSTAN          0x01
1740 #define SUBLANG_LAO_LAO                    0x01
1741 #define SUBLANG_LATVIAN_LATVIA             0x01
1742 #define SUBLANG_LITHUANIAN_LITHUANIA       0x01
1743 #define SUBLANG_LOWER_SORBIAN_GERMANY      0x02
1744 #define SUBLANG_LUXEMBOURGISH_LUXEMBOURG   0x01
1745 #define SUBLANG_MACEDONIAN_MACEDONIA       0x01
1746 #define SUBLANG_MALAY_MALAYSIA             0x01
1747 #define SUBLANG_MALAY_BRUNEI_DARUSSALAM    0x02
1748 #define SUBLANG_MALAYALAM_INDIA            0x01
1749 #define SUBLANG_MALTESE_MALTA              0x01
1750 #define SUBLANG_MAORI_NEW_ZEALAND          0x01
1751 #define SUBLANG_MAPUDUNGUN_CHILE           0x01
1752 #define SUBLANG_MARATHI_INDIA              0x01
1753 #define SUBLANG_MOHAWK_MOHAWK              0x01
1754 #define SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA 0x01
1755 #define SUBLANG_MONGOLIAN_PRC              0x02
1756 #define SUBLANG_NEPALI_INDIA               0x02
1757 #define SUBLANG_NEPALI_NEPAL               0x01
1758 #define SUBLANG_NORWEGIAN_BOKMAL           0x01
1759 #define SUBLANG_NORWEGIAN_NYNORSK          0x02
1760 #define SUBLANG_OCCITAN_FRANCE             0x01
1761 #define SUBLANG_ORIYA_INDIA                0x01
1762 #define SUBLANG_PASHTO_AFGHANISTAN         0x01
1763 #define SUBLANG_PERSIAN_IRAN               0x01
1764 #define SUBLANG_POLISH_POLAND              0x01
1765 #define SUBLANG_PORTUGUESE                 0x02
1766 #define SUBLANG_PORTUGUESE_BRAZILIAN       0x01
1767 #define SUBLANG_PUNJABI_INDIA              0x01
1768 #define SUBLANG_QUECHUA_BOLIVIA            0x01
1769 #define SUBLANG_QUECHUA_ECUADOR            0x02
1770 #define SUBLANG_QUECHUA_PERU               0x03
1771 #define SUBLANG_ROMANIAN_ROMANIA           0x01
1772 #define SUBLANG_ROMANSH_SWITZERLAND        0x01
1773 #define SUBLANG_RUSSIAN_RUSSIA             0x01
1774 #define SUBLANG_SAMI_NORTHERN_NORWAY       0x01
1775 #define SUBLANG_SAMI_NORTHERN_SWEDEN       0x02
1776 #define SUBLANG_SAMI_NORTHERN_FINLAND      0x03
1777 #define SUBLANG_SAMI_LULE_NORWAY           0x04
1778 #define SUBLANG_SAMI_LULE_SWEDEN           0x05
1779 #define SUBLANG_SAMI_SOUTHERN_NORWAY       0x06
1780 #define SUBLANG_SAMI_SOUTHERN_SWEDEN       0x07
1781 #define SUBLANG_SAMI_SKOLT_FINLAND         0x08
1782 #define SUBLANG_SAMI_INARI_FINLAND         0x09
1783 #define SUBLANG_SANSKRIT_INDIA             0x01
1784 #define SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_LATIN 0x06
1785 #define SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_CYRILLIC 0x07
1786 #define SUBLANG_SERBIAN_CROATIA            0x01
1787 #define SUBLANG_SERBIAN_LATIN              0x02
1788 #define SUBLANG_SERBIAN_CYRILLIC           0x03
1789 #define SUBLANG_SINDHI_AFGHANISTAN         0x02
1790 #define SUBLANG_SINHALESE_SRI_LANKA        0x01
1791 #define SUBLANG_SLOVAK_SLOVAKIA            0x01
1792 #define SUBLANG_SLOVENIAN_SLOVENIA         0x01
1793 #define SUBLANG_SOTHO_NORTHERN_SOUTH_AFRICA 0x01
1794 #define SUBLANG_SPANISH                    0x01
1795 #define SUBLANG_SPANISH_MEXICAN            0x02
1796 #define SUBLANG_SPANISH_MODERN             0x03
1797 #define SUBLANG_SPANISH_GUATEMALA          0x04
1798 #define SUBLANG_SPANISH_COSTA_RICA         0x05
1799 #define SUBLANG_SPANISH_PANAMA             0x06
1800 #define SUBLANG_SPANISH_DOMINICAN_REPUBLIC 0x07
1801 #define SUBLANG_SPANISH_VENEZUELA          0x08
1802 #define SUBLANG_SPANISH_COLOMBIA           0x09
1803 #define SUBLANG_SPANISH_PERU               0x0a
1804 #define SUBLANG_SPANISH_ARGENTINA          0x0b
1805 #define SUBLANG_SPANISH_ECUADOR            0x0c
1806 #define SUBLANG_SPANISH_CHILE              0x0d
1807 #define SUBLANG_SPANISH_URUGUAY            0x0e
1808 #define SUBLANG_SPANISH_PARAGUAY           0x0f
1809 #define SUBLANG_SPANISH_BOLIVIA            0x10
1810 #define SUBLANG_SPANISH_EL_SALVADOR        0x11
1811 #define SUBLANG_SPANISH_HONDURAS           0x12
1812 #define SUBLANG_SPANISH_NICARAGUA          0x13
1813 #define SUBLANG_SPANISH_PUERTO_RICO        0x14
1814 #define SUBLANG_SPANISH_US                 0x15
1815 #define SUBLANG_SWAHILI_KENYA              0x01
1816 #define SUBLANG_SWEDISH                    0x01
1817 #define SUBLANG_SWEDISH_FINLAND            0x02
1818 #define SUBLANG_SYRIAC_SYRIA               0x01
1819 #define SUBLANG_TAJIK_TAJIKISTAN           0x01
1820 #define SUBLANG_TAMAZIGHT_ALGERIA_LATIN    0x02
1821 #define SUBLANG_TAMIL_INDIA                0x01
1822 #define SUBLANG_TATAR_RUSSIA               0x01
1823 #define SUBLANG_TELUGU_INDIA               0x01
1824 #define SUBLANG_THAI_THAILAND              0x01
1825 #define SUBLANG_TIBETAN_PRC                0x01
1826 #define SUBLANG_TIBETAN_BHUTAN             0x02
1827 #define SUBLANG_TIGRIGNA_ERITREA           0x02
1828 #define SUBLANG_TSWANA_SOUTH_AFRICA        0x01
1829 #define SUBLANG_TURKISH_TURKEY             0x01
1830 #define SUBLANG_TURKMEN_TURKMENISTAN       0x01
1831 #define SUBLANG_UIGHUR_PRC                 0x01
1832 #define SUBLANG_UKRAINIAN_UKRAINE          0x01
1833 #define SUBLANG_UPPER_SORBIAN_GERMANY      0x01
1834 #define SUBLANG_URDU_PAKISTAN              0x01
1835 #define SUBLANG_URDU_INDIA                 0x02
1836 #define SUBLANG_UZBEK_LATIN                0x01
1837 #define SUBLANG_UZBEK_CYRILLIC             0x02
1838 #define SUBLANG_VIETNAMESE_VIETNAM         0x01
1839 #define SUBLANG_WELSH_UNITED_KINGDOM       0x01
1840 #define SUBLANG_WOLOF_SENEGAL              0x01
1841 #define SUBLANG_XHOSA_SOUTH_AFRICA         0x01
1842 #define SUBLANG_YAKUT_RUSSIA               0x01
1843 #define SUBLANG_YI_PRC                     0x01
1844 #define SUBLANG_YORUBA_NIGERIA             0x01
1845 #define SUBLANG_ZULU_SOUTH_AFRICA          0x01
1846 
1847 /* These are documented by the MSDN but are missing from the Windows header */
1848 #define SUBLANG_ENGLISH_IRELAND            SUBLANG_ENGLISH_EIRE
1849 #define SUBLANG_HAUSA_NIGERIA              SUBLANG_HAUSA_NIGERIA_LATIN
1850 #define SUBLANG_LAO_LAO_PDR                SUBLANG_LAO_LAO
1851 #define SUBLANG_LITHUANIAN                 SUBLANG_LITHUANIAN_LITHUANIA
1852 #define SUBLANG_PORTUGUESE_PORTUGAL        SUBLANG_PORTUGUESE
1853 #define SUBLANG_SWAHILI                    SUBLANG_SWAHILI_KENYA
1854 #define SUBLANG_SWEDISH_SWEDEN             SUBLANG_SWEDISH
1855 #define SUBLANG_SYRIAC                     SUBLANG_SYRIAC_SYRIA
1856 
1857 /* FIXME: these are not defined anywhere */
1858 #define SUBLANG_DUTCH_SURINAM              0x03
1859 #define SUBLANG_ROMANIAN                   SUBLANG_ROMANIAN_ROMANIA
1860 #define SUBLANG_ROMANIAN_MOLDAVIA          0x02
1861 #define SUBLANG_RUSSIAN                    SUBLANG_RUSSIAN_RUSSIA
1862 #define SUBLANG_RUSSIAN_MOLDAVIA           0x02
1863 #define SUBLANG_CROATIAN                   SUBLANG_CROATIAN_CROATIA
1864 #define SUBLANG_LITHUANIAN_CLASSIC         0x02
1865 #define SUBLANG_GAELIC                     0x01
1866 #define SUBLANG_GAELIC_SCOTTISH            0x02
1867 #define SUBLANG_GAELIC_MANX                0x03
1868 
1869 
1870 /*
1871  * Sort definitions
1872  */
1873 
1874 #define SORT_DEFAULT                     0x0
1875 #define SORT_JAPANESE_XJIS               0x0
1876 #define SORT_JAPANESE_UNICODE            0x1
1877 #define SORT_CHINESE_BIG5                0x0
1878 #define SORT_CHINESE_UNICODE             0x1
1879 #define SORT_KOREAN_KSC                  0x0
1880 #define SORT_KOREAN_UNICODE              0x1
1881 
1882 
1883 
1884 /*
1885  * Definitions for IsTextUnicode()
1886  */
1887 
1888 #define IS_TEXT_UNICODE_ASCII16            0x0001
1889 #define IS_TEXT_UNICODE_STATISTICS         0x0002
1890 #define IS_TEXT_UNICODE_CONTROLS           0x0004
1891 #define IS_TEXT_UNICODE_SIGNATURE          0x0008
1892 #define IS_TEXT_UNICODE_UNICODE_MASK       0x000F
1893 #define IS_TEXT_UNICODE_REVERSE_ASCII16    0x0010
1894 #define IS_TEXT_UNICODE_REVERSE_STATISTICS 0x0020
1895 #define IS_TEXT_UNICODE_REVERSE_CONTROLS   0x0040
1896 #define IS_TEXT_UNICODE_REVERSE_SIGNATURE  0x0080
1897 #define IS_TEXT_UNICODE_REVERSE_MASK       0x00F0
1898 #define IS_TEXT_UNICODE_ILLEGAL_CHARS      0x0100
1899 #define IS_TEXT_UNICODE_ODD_LENGTH         0x0200
1900 #define IS_TEXT_UNICODE_DBCS_LEADBYTE      0x0400
1901 #define IS_TEXT_UNICODE_NOT_UNICODE_MASK   0x0F00
1902 #define IS_TEXT_UNICODE_NULL_BYTES         0x1000
1903 #define IS_TEXT_UNICODE_NOT_ASCII_MASK     0xF000
1904 
1905 #define MAXIMUM_WAIT_OBJECTS 64
1906 #define MAXIMUM_SUSPEND_COUNT 127
1907 
1908 #define WT_EXECUTEDEFAULT              0x00
1909 #define WT_EXECUTEINIOTHREAD           0x01
1910 #define WT_EXECUTEINUITHREAD           0x02
1911 #define WT_EXECUTEINWAITTHREAD         0x04
1912 #define WT_EXECUTEONLYONCE             0x08
1913 #define WT_EXECUTELONGFUNCTION         0x10
1914 #define WT_EXECUTEINTIMERTHREAD        0x20
1915 #define WT_EXECUTEINPERSISTENTIOTHREAD 0x40
1916 #define WT_EXECUTEINPERSISTENTTHREAD   0x80
1917 #define WT_EXECUTEINLONGTHREAD         0x10
1918 #define WT_EXECUTEDELETEWAIT           0x08
1919 #define WT_TRANSFER_IMPERSONATION      0x0100
1920 
1921 
1922 #define EXCEPTION_CONTINUABLE        0
1923 #define EXCEPTION_NONCONTINUABLE     0x01
1924 
1925 /*
1926  * The exception record used by Win32 to give additional information
1927  * about exception to exception handlers.
1928  */
1929 
1930 #define EXCEPTION_MAXIMUM_PARAMETERS 15
1931 
1932 typedef struct _EXCEPTION_RECORD
1933 {
1934     DWORD    ExceptionCode;
1935     DWORD    ExceptionFlags;
1936     struct  _EXCEPTION_RECORD *ExceptionRecord;
1937 
1938     PVOID    ExceptionAddress;
1939     DWORD    NumberParameters;
1940     ULONG_PTR ExceptionInformation[EXCEPTION_MAXIMUM_PARAMETERS];
1941 } EXCEPTION_RECORD, *PEXCEPTION_RECORD;
1942 
1943 /*
1944  * The exception pointers structure passed to exception filters
1945  * in except() and the UnhandledExceptionFilter().
1946  */
1947 
1948 typedef struct _EXCEPTION_POINTERS
1949 {
1950   PEXCEPTION_RECORD  ExceptionRecord;
1951   PCONTEXT           ContextRecord;
1952 } EXCEPTION_POINTERS, *PEXCEPTION_POINTERS;
1953 
1954 
1955 /*
1956  * The exception frame, used for registering exception handlers
1957  * Win32 cares only about this, but compilers generally emit
1958  * larger exception frames for their own use.
1959  */
1960 
1961 struct _EXCEPTION_REGISTRATION_RECORD;
1962 
1963 typedef DWORD (*PEXCEPTION_HANDLER)(PEXCEPTION_RECORD,struct _EXCEPTION_REGISTRATION_RECORD*,
1964                                     PCONTEXT,struct _EXCEPTION_REGISTRATION_RECORD **);
1965 
1966 typedef struct _EXCEPTION_REGISTRATION_RECORD
1967 {
1968   struct _EXCEPTION_REGISTRATION_RECORD *Prev;
1969   PEXCEPTION_HANDLER       Handler;
1970 } EXCEPTION_REGISTRATION_RECORD;
1971 
1972 /*
1973  * function pointer to an exception filter
1974  */
1975 
1976 typedef LONG (CALLBACK *PVECTORED_EXCEPTION_HANDLER)(PEXCEPTION_POINTERS ExceptionInfo);
1977 
1978 typedef struct _NT_TIB
1979 {
1980         struct _EXCEPTION_REGISTRATION_RECORD *ExceptionList;
1981         PVOID StackBase;
1982         PVOID StackLimit;
1983         PVOID SubSystemTib;
1984         union {
1985           PVOID FiberData;
1986           DWORD Version;
1987         } DUMMYUNIONNAME;
1988         PVOID ArbitraryUserPointer;
1989         struct _NT_TIB *Self;
1990 } NT_TIB, *PNT_TIB;
1991 
1992 struct _TEB;
1993 
1994 #if defined(__i386__) && defined(__GNUC__)
1995 extern inline struct _TEB * WINAPI NtCurrentTeb(void);
1996 extern inline struct _TEB * WINAPI NtCurrentTeb(void)
1997 {
1998     struct _TEB *teb;
1999     __asm__(".byte 0x64\n\tmovl (0x18),%0" : "=r" (teb));
2000     return teb;
2001 }
2002 #elif defined(__i386__) && defined(_MSC_VER)
2003 extern inline struct _TEB * WINAPI NtCurrentTeb(void)
2004 {
2005   struct _TEB *teb;
2006   __asm mov eax, fs:[0x18];
2007   __asm mov teb, eax;
2008   return teb;
2009 }
2010 #else
2011 extern struct _TEB * WINAPI NtCurrentTeb(void);
2012 #endif
2013 
2014 #ifdef NONAMELESSUNION
2015 #define GetCurrentFiber()  (((NT_TIB *)NtCurrentTeb())->u.FiberData)
2016 #else
2017 #define GetCurrentFiber()  (((NT_TIB *)NtCurrentTeb())->FiberData)
2018 #endif
2019 #define GetFiberData()     (*(void **)GetCurrentFiber())
2020 
2021 #define TLS_MINIMUM_AVAILABLE 64
2022 
2023 /*
2024  * File formats definitions
2025  */
2026 
2027 #include <pshpack2.h>
2028 typedef struct _IMAGE_DOS_HEADER {
2029     WORD  e_magic;      /* 00: MZ Header signature */
2030     WORD  e_cblp;       /* 02: Bytes on last page of file */
2031     WORD  e_cp;         /* 04: Pages in file */
2032     WORD  e_crlc;       /* 06: Relocations */
2033     WORD  e_cparhdr;    /* 08: Size of header in paragraphs */
2034     WORD  e_minalloc;   /* 0a: Minimum extra paragraphs needed */
2035     WORD  e_maxalloc;   /* 0c: Maximum extra paragraphs needed */
2036     WORD  e_ss;         /* 0e: Initial (relative) SS value */
2037     WORD  e_sp;         /* 10: Initial SP value */
2038     WORD  e_csum;       /* 12: Checksum */
2039     WORD  e_ip;         /* 14: Initial IP value */
2040     WORD  e_cs;         /* 16: Initial (relative) CS value */
2041     WORD  e_lfarlc;     /* 18: File address of relocation table */
2042     WORD  e_ovno;       /* 1a: Overlay number */
2043     WORD  e_res[4];     /* 1c: Reserved words */
2044     WORD  e_oemid;      /* 24: OEM identifier (for e_oeminfo) */
2045     WORD  e_oeminfo;    /* 26: OEM information; e_oemid specific */
2046     WORD  e_res2[10];   /* 28: Reserved words */
2047     DWORD e_lfanew;     /* 3c: Offset to extended header */
2048 } IMAGE_DOS_HEADER, *PIMAGE_DOS_HEADER;
2049 #include <poppack.h>
2050 
2051 #define IMAGE_DOS_SIGNATURE    0x5A4D     /* MZ   */
2052 #define IMAGE_OS2_SIGNATURE    0x454E     /* NE   */
2053 #define IMAGE_OS2_SIGNATURE_LE 0x454C     /* LE   */
2054 #define IMAGE_OS2_SIGNATURE_LX 0x584C     /* LX */
2055 #define IMAGE_VXD_SIGNATURE    0x454C     /* LE   */
2056 #define IMAGE_NT_SIGNATURE     0x00004550 /* PE00 */
2057 
2058 /*
2059  * This is the Windows executable (NE) header.
2060  * the name IMAGE_OS2_HEADER is misleading, but in the SDK this way.
2061  */
2062 #include <pshpack2.h>
2063 typedef struct
2064 {
2065     WORD  ne_magic;             /* 00 NE signature 'NE' */
2066     BYTE  ne_ver;               /* 02 Linker version number */
2067     BYTE  ne_rev;               /* 03 Linker revision number */
2068     WORD  ne_enttab;            /* 04 Offset to entry table relative to NE */
2069     WORD  ne_cbenttab;          /* 06 Length of entry table in bytes */
2070     LONG  ne_crc;               /* 08 Checksum */
2071     WORD  ne_flags;             /* 0c Flags about segments in this file */
2072     WORD  ne_autodata;          /* 0e Automatic data segment number */
2073     WORD  ne_heap;              /* 10 Initial size of local heap */
2074     WORD  ne_stack;             /* 12 Initial size of stack */
2075     DWORD ne_csip;              /* 14 Initial CS:IP */
2076     DWORD ne_sssp;              /* 18 Initial SS:SP */
2077     WORD  ne_cseg;              /* 1c # of entries in segment table */
2078     WORD  ne_cmod;              /* 1e # of entries in module reference tab. */
2079     WORD  ne_cbnrestab;         /* 20 Length of nonresident-name table     */
2080     WORD  ne_segtab;            /* 22 Offset to segment table */
2081     WORD  ne_rsrctab;           /* 24 Offset to resource table */
2082     WORD  ne_restab;            /* 26 Offset to resident-name table */
2083     WORD  ne_modtab;            /* 28 Offset to module reference table */
2084     WORD  ne_imptab;            /* 2a Offset to imported name table */
2085     DWORD ne_nrestab;           /* 2c Offset to nonresident-name table */
2086     WORD  ne_cmovent;           /* 30 # of movable entry points */
2087     WORD  ne_align;             /* 32 Logical sector alignment shift count */
2088     WORD  ne_cres;              /* 34 # of resource segments */
2089     BYTE  ne_exetyp;            /* 36 Flags indicating target OS */
2090     BYTE  ne_flagsothers;       /* 37 Additional information flags */
2091     WORD  ne_pretthunks;        /* 38 Offset to return thunks */
2092     WORD  ne_psegrefbytes;      /* 3a Offset to segment ref. bytes */
2093     WORD  ne_swaparea;          /* 3c Reserved by Microsoft */
2094     WORD  ne_expver;            /* 3e Expected Windows version number */
2095 } IMAGE_OS2_HEADER, *PIMAGE_OS2_HEADER;
2096 #include <poppack.h>
2097 
2098 #include <pshpack2.h>
2099 typedef struct _IMAGE_VXD_HEADER {
2100   WORD  e32_magic;
2101   BYTE  e32_border;
2102   BYTE  e32_worder;
2103   DWORD e32_level;
2104   WORD  e32_cpu;
2105   WORD  e32_os;
2106   DWORD e32_ver;
2107   DWORD e32_mflags;
2108   DWORD e32_mpages;
2109   DWORD e32_startobj;
2110   DWORD e32_eip;
2111   DWORD e32_stackobj;
2112   DWORD e32_esp;
2113   DWORD e32_pagesize;
2114   DWORD e32_lastpagesize;
2115   DWORD e32_fixupsize;
2116   DWORD e32_fixupsum;
2117   DWORD e32_ldrsize;
2118   DWORD e32_ldrsum;
2119   DWORD e32_objtab;
2120   DWORD e32_objcnt;
2121   DWORD e32_objmap;
2122   DWORD e32_itermap;
2123   DWORD e32_rsrctab;
2124   DWORD e32_rsrccnt;
2125   DWORD e32_restab;
2126   DWORD e32_enttab;
2127   DWORD e32_dirtab;
2128   DWORD e32_dircnt;
2129   DWORD e32_fpagetab;
2130   DWORD e32_frectab;
2131   DWORD e32_impmod;
2132   DWORD e32_impmodcnt;
2133   DWORD e32_impproc;
2134   DWORD e32_pagesum;
2135   DWORD e32_datapage;
2136   DWORD e32_preload;
2137   DWORD e32_nrestab;
2138   DWORD e32_cbnrestab;
2139   DWORD e32_nressum;
2140   DWORD e32_autodata;
2141   DWORD e32_debuginfo;
2142   DWORD e32_debuglen;
2143   DWORD e32_instpreload;
2144   DWORD e32_instdemand;
2145   DWORD e32_heapsize;
2146   BYTE  e32_res3[12];
2147   DWORD e32_winresoff;
2148   DWORD e32_winreslen;
2149   WORD  e32_devid;
2150   WORD  e32_ddkver;
2151 } IMAGE_VXD_HEADER, *PIMAGE_VXD_HEADER;
2152 #include <poppack.h>
2153 
2154 /* These defines describe the meanings of the bits in the Characteristics
2155    field */
2156 
2157 #define IMAGE_FILE_RELOCS_STRIPPED      0x0001 /* No relocation info */
2158 #define IMAGE_FILE_EXECUTABLE_IMAGE     0x0002
2159 #define IMAGE_FILE_LINE_NUMS_STRIPPED   0x0004
2160 #define IMAGE_FILE_LOCAL_SYMS_STRIPPED  0x0008
2161 #define IMAGE_FILE_AGGRESIVE_WS_TRIM    0x0010
2162 #define IMAGE_FILE_LARGE_ADDRESS_AWARE  0x0020
2163 #define IMAGE_FILE_16BIT_MACHINE        0x0040
2164 #define IMAGE_FILE_BYTES_REVERSED_LO    0x0080
2165 #define IMAGE_FILE_32BIT_MACHINE        0x0100
2166 #define IMAGE_FILE_DEBUG_STRIPPED       0x0200
2167 #define IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP      0x0400
2168 #define IMAGE_FILE_NET_RUN_FROM_SWAP    0x0800
2169 #define IMAGE_FILE_SYSTEM               0x1000
2170 #define IMAGE_FILE_DLL                  0x2000
2171 #define IMAGE_FILE_UP_SYSTEM_ONLY       0x4000
2172 #define IMAGE_FILE_BYTES_REVERSED_HI    0x8000
2173 
2174 /* These are the settings of the Machine field. */
2175 #define IMAGE_FILE_MACHINE_UNKNOWN      0
2176 #define IMAGE_FILE_MACHINE_I860         0x014d
2177 #define IMAGE_FILE_MACHINE_I386         0x014c
2178 #define IMAGE_FILE_MACHINE_R3000        0x0162
2179 #define IMAGE_FILE_MACHINE_R4000        0x0166
2180 #define IMAGE_FILE_MACHINE_R10000       0x0168
2181 #define IMAGE_FILE_MACHINE_WCEMIPSV2    0x0169
2182 #define IMAGE_FILE_MACHINE_ALPHA        0x0184
2183 #define IMAGE_FILE_MACHINE_SH3          0x01a2
2184 #define IMAGE_FILE_MACHINE_SH3DSP       0x01a3
2185 #define IMAGE_FILE_MACHINE_SH3E         0x01a4
2186 #define IMAGE_FILE_MACHINE_SH4          0x01a6
2187 #define IMAGE_FILE_MACHINE_SH5          0x01a8
2188 #define IMAGE_FILE_MACHINE_ARM          0x01c0
2189 #define IMAGE_FILE_MACHINE_THUMB        0x01c2
2190 #define IMAGE_FILE_MACHINE_AM33         0x01d3
2191 #define IMAGE_FILE_MACHINE_POWERPC      0x01f0
2192 #define IMAGE_FILE_MACHINE_POWERPCFP    0x01f1
2193 #define IMAGE_FILE_MACHINE_IA64         0x0200
2194 #define IMAGE_FILE_MACHINE_MIPS16       0x0266
2195 #define IMAGE_FILE_MACHINE_ALPHA64      0x0284
2196 #define IMAGE_FILE_MACHINE_MIPSFPU      0x0366
2197 #define IMAGE_FILE_MACHINE_MIPSFPU16    0x0466
2198 #define IMAGE_FILE_MACHINE_AXP64        IMAGE_FILE_MACHINE_ALPHA64
2199 #define IMAGE_FILE_MACHINE_TRICORE      0x0520
2200 #define IMAGE_FILE_MACHINE_CEF          0x0cef
2201 #define IMAGE_FILE_MACHINE_EBC          0x0ebc
2202 #define IMAGE_FILE_MACHINE_AMD64        0x8664
2203 #define IMAGE_FILE_MACHINE_M32R         0x9041
2204 #define IMAGE_FILE_MACHINE_CEE          0xc0ee
2205 
2206 #define IMAGE_SIZEOF_FILE_HEADER                20
2207 #define IMAGE_SIZEOF_ROM_OPTIONAL_HEADER        56
2208 #define IMAGE_SIZEOF_STD_OPTIONAL_HEADER        28
2209 #define IMAGE_SIZEOF_NT_OPTIONAL32_HEADER       224
2210 #define IMAGE_SIZEOF_NT_OPTIONAL64_HEADER       240
2211 #define IMAGE_SIZEOF_SHORT_NAME                 8
2212 #define IMAGE_SIZEOF_SECTION_HEADER             40
2213 #define IMAGE_SIZEOF_SYMBOL                     18
2214 #define IMAGE_SIZEOF_AUX_SYMBOL                 18
2215 #define IMAGE_SIZEOF_RELOCATION                 10
2216 #define IMAGE_SIZEOF_BASE_RELOCATION            8
2217 #define IMAGE_SIZEOF_LINENUMBER                 6
2218 #define IMAGE_SIZEOF_ARCHIVE_MEMBER_HDR         60
2219 
2220 /* Possible Magic values */
2221 #define IMAGE_NT_OPTIONAL_HDR32_MAGIC      0x10b
2222 #define IMAGE_NT_OPTIONAL_HDR64_MAGIC      0x20b
2223 #define IMAGE_ROM_OPTIONAL_HDR_MAGIC       0x107
2224 
2225 #ifdef _WIN64
2226 #define IMAGE_SIZEOF_NT_OPTIONAL_HEADER IMAGE_SIZEOF_NT_OPTIONAL64_HEADER
2227 #define IMAGE_NT_OPTIONAL_HDR_MAGIC     IMAGE_NT_OPTIONAL_HDR64_MAGIC
2228 #else
2229 #define IMAGE_SIZEOF_NT_OPTIONAL_HEADER IMAGE_SIZEOF_NT_OPTIONAL32_HEADER
2230 #define IMAGE_NT_OPTIONAL_HDR_MAGIC     IMAGE_NT_OPTIONAL_HDR32_MAGIC
2231 #endif
2232 
2233 /* These are indexes into the DataDirectory array */
2234 #define IMAGE_FILE_EXPORT_DIRECTORY             0
2235 #define IMAGE_FILE_IMPORT_DIRECTORY             1
2236 #define IMAGE_FILE_RESOURCE_DIRECTORY           2
2237 #define IMAGE_FILE_EXCEPTION_DIRECTORY          3
2238 #define IMAGE_FILE_SECURITY_DIRECTORY           4
2239 #define IMAGE_FILE_BASE_RELOCATION_TABLE        5
2240 #define IMAGE_FILE_DEBUG_DIRECTORY              6
2241 #define IMAGE_FILE_DESCRIPTION_STRING           7
2242 #define IMAGE_FILE_MACHINE_VALUE                8  /* Mips */
2243 #define IMAGE_FILE_THREAD_LOCAL_STORAGE         9
2244 #define IMAGE_FILE_CALLBACK_DIRECTORY           10
2245 
2246 /* Directory Entries, indices into the DataDirectory array */
2247 
2248 #define IMAGE_DIRECTORY_ENTRY_EXPORT            0
2249 #define IMAGE_DIRECTORY_ENTRY_IMPORT            1
2250 #define IMAGE_DIRECTORY_ENTRY_RESOURCE          2
2251 #define IMAGE_DIRECTORY_ENTRY_EXCEPTION         3
2252 #define IMAGE_DIRECTORY_ENTRY_SECURITY          4
2253 #define IMAGE_DIRECTORY_ENTRY_BASERELOC         5
2254 #define IMAGE_DIRECTORY_ENTRY_DEBUG             6
2255 #define IMAGE_DIRECTORY_ENTRY_COPYRIGHT         7
2256 #define IMAGE_DIRECTORY_ENTRY_GLOBALPTR         8   /* (MIPS GP) */
2257 #define IMAGE_DIRECTORY_ENTRY_TLS               9
2258 #define IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG       10
2259 #define IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT      11
2260 #define IMAGE_DIRECTORY_ENTRY_IAT               12  /* Import Address Table */
2261 #define IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT      13
2262 #define IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR    14
2263 
2264 /* Subsystem Values */
2265 
2266 #define IMAGE_SUBSYSTEM_UNKNOWN                 0
2267 #define IMAGE_SUBSYSTEM_NATIVE                  1
2268 #define IMAGE_SUBSYSTEM_WINDOWS_GUI             2       /* Windows GUI subsystem */
2269 #define IMAGE_SUBSYSTEM_WINDOWS_CUI             3       /* Windows character subsystem */
2270 #define IMAGE_SUBSYSTEM_OS2_CUI                 5
2271 #define IMAGE_SUBSYSTEM_POSIX_CUI               7
2272 #define IMAGE_SUBSYSTEM_NATIVE_WINDOWS          8       /* native Win9x driver */
2273 #define IMAGE_SUBSYSTEM_WINDOWS_CE_GUI          9       /* Windows CE subsystem */
2274 #define IMAGE_SUBSYSTEM_EFI_APPLICATION         10
2275 #define IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER 11
2276 #define IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER      12
2277 #define IMAGE_SUBSYSTEM_EFI_ROM                 13
2278 #define IMAGE_SUBSYSTEM_XBOX                    14
2279 
2280 /* DLL Characteristics */
2281 #define IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE          0x0040
2282 #define IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY       0x0080
2283 #define IMAGE_DLLCHARACTERISTICS_NX_COMPAT             0x0100
2284 #define IMAGE_DLLCHARACTERISTICS_NO_ISOLATION          0x0200
2285 #define IMAGE_DLLCHARACTERISTICS_NO_SEH                0x0400
2286 #define IMAGE_DLLCHARACTERISTICS_NO_BIND               0x0800
2287 #define IMAGE_DLLCHARACTERISTICS_WDM_DRIVER            0x2000
2288 #define IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE 0x8000
2289 
2290 typedef struct _IMAGE_FILE_HEADER {
2291   WORD  Machine;
2292   WORD  NumberOfSections;
2293   DWORD TimeDateStamp;
2294   DWORD PointerToSymbolTable;
2295   DWORD NumberOfSymbols;
2296   WORD  SizeOfOptionalHeader;
2297   WORD  Characteristics;
2298 } IMAGE_FILE_HEADER, *PIMAGE_FILE_HEADER;
2299 
2300 typedef struct _IMAGE_DATA_DIRECTORY {
2301   DWORD VirtualAddress;
2302   DWORD Size;
2303 } IMAGE_DATA_DIRECTORY, *PIMAGE_DATA_DIRECTORY;
2304 
2305 #define IMAGE_NUMBEROF_DIRECTORY_ENTRIES 16
2306 
2307 typedef struct _IMAGE_OPTIONAL_HEADER64 {
2308   WORD  Magic; /* 0x20b */
2309   BYTE MajorLinkerVersion;
2310   BYTE MinorLinkerVersion;
2311   DWORD SizeOfCode;
2312   DWORD SizeOfInitializedData;
2313   DWORD SizeOfUninitializedData;
2314   DWORD AddressOfEntryPoint;
2315   DWORD BaseOfCode;
2316   ULONGLONG ImageBase;
2317   DWORD SectionAlignment;
2318   DWORD FileAlignment;
2319   WORD MajorOperatingSystemVersion;
2320   WORD MinorOperatingSystemVersion;
2321   WORD MajorImageVersion;
2322   WORD MinorImageVersion;
2323   WORD MajorSubsystemVersion;
2324   WORD MinorSubsystemVersion;
2325   DWORD Win32VersionValue;
2326   DWORD SizeOfImage;
2327   DWORD SizeOfHeaders;
2328   DWORD CheckSum;
2329   WORD Subsystem;
2330   WORD DllCharacteristics;
2331   ULONGLONG SizeOfStackReserve;
2332   ULONGLONG SizeOfStackCommit;
2333   ULONGLONG SizeOfHeapReserve;
2334   ULONGLONG SizeOfHeapCommit;
2335   DWORD LoaderFlags;
2336   DWORD NumberOfRvaAndSizes;
2337   IMAGE_DATA_DIRECTORY DataDirectory[IMAGE_NUMBEROF_DIRECTORY_ENTRIES];
2338 } IMAGE_OPTIONAL_HEADER64, *PIMAGE_OPTIONAL_HEADER64;
2339 
2340 typedef struct _IMAGE_NT_HEADERS64 {
2341   DWORD Signature;
2342   IMAGE_FILE_HEADER FileHeader;
2343   IMAGE_OPTIONAL_HEADER64 OptionalHeader;
2344 } IMAGE_NT_HEADERS64, *PIMAGE_NT_HEADERS64;
2345 
2346 typedef struct _IMAGE_OPTIONAL_HEADER {
2347 
2348   /* Standard fields */
2349 
2350   WORD  Magic; /* 0x10b or 0x107 */     /* 0x00 */
2351   BYTE  MajorLinkerVersion;
2352   BYTE  MinorLinkerVersion;
2353   DWORD SizeOfCode;
2354   DWORD SizeOfInitializedData;
2355   DWORD SizeOfUninitializedData;
2356   DWORD AddressOfEntryPoint;            /* 0x10 */
2357   DWORD BaseOfCode;
2358   DWORD BaseOfData;
2359 
2360   /* NT additional fields */
2361 
2362   DWORD ImageBase;
2363   DWORD SectionAlignment;               /* 0x20 */
2364   DWORD FileAlignment;
2365   WORD  MajorOperatingSystemVersion;
2366   WORD  MinorOperatingSystemVersion;
2367   WORD  MajorImageVersion;
2368   WORD  MinorImageVersion;
2369   WORD  MajorSubsystemVersion;          /* 0x30 */
2370   WORD  MinorSubsystemVersion;
2371   DWORD Win32VersionValue;
2372   DWORD SizeOfImage;
2373   DWORD SizeOfHeaders;
2374   DWORD CheckSum;                       /* 0x40 */
2375   WORD  Subsystem;
2376   WORD  DllCharacteristics;
2377   DWORD SizeOfStackReserve;
2378   DWORD SizeOfStackCommit;
2379   DWORD SizeOfHeapReserve;              /* 0x50 */
2380   DWORD SizeOfHeapCommit;
2381   DWORD LoaderFlags;
2382   DWORD NumberOfRvaAndSizes;
2383   IMAGE_DATA_DIRECTORY DataDirectory[IMAGE_NUMBEROF_DIRECTORY_ENTRIES]; /* 0x60 */
2384   /* 0xE0 */
2385 } IMAGE_OPTIONAL_HEADER32, *PIMAGE_OPTIONAL_HEADER32;
2386 
2387 typedef struct _IMAGE_NT_HEADERS {
2388   DWORD Signature; /* "PE"\0\0 */       /* 0x00 */
2389   IMAGE_FILE_HEADER FileHeader;         /* 0x04 */
2390   IMAGE_OPTIONAL_HEADER32 OptionalHeader;       /* 0x18 */
2391 } IMAGE_NT_HEADERS32, *PIMAGE_NT_HEADERS32;
2392 
2393 #ifdef _WIN64
2394 typedef IMAGE_NT_HEADERS64  IMAGE_NT_HEADERS;
2395 typedef PIMAGE_NT_HEADERS64 PIMAGE_NT_HEADERS;
2396 typedef IMAGE_OPTIONAL_HEADER64 IMAGE_OPTIONAL_HEADER;
2397 typedef PIMAGE_OPTIONAL_HEADER64 PIMAGE_OPTIONAL_HEADER;
2398 #else
2399 typedef IMAGE_NT_HEADERS32  IMAGE_NT_HEADERS;
2400 typedef PIMAGE_NT_HEADERS32 PIMAGE_NT_HEADERS;
2401 typedef IMAGE_OPTIONAL_HEADER32 IMAGE_OPTIONAL_HEADER;
2402 typedef PIMAGE_OPTIONAL_HEADER32 PIMAGE_OPTIONAL_HEADER;
2403 #endif
2404 
2405 #define IMAGE_SIZEOF_SHORT_NAME 8
2406 
2407 typedef struct _IMAGE_SECTION_HEADER {
2408   BYTE  Name[IMAGE_SIZEOF_SHORT_NAME];
2409   union {
2410     DWORD PhysicalAddress;
2411     DWORD VirtualSize;
2412   } Misc;
2413   DWORD VirtualAddress;
2414   DWORD SizeOfRawData;
2415   DWORD PointerToRawData;
2416   DWORD PointerToRelocations;
2417   DWORD PointerToLinenumbers;
2418   WORD  NumberOfRelocations;
2419   WORD  NumberOfLinenumbers;
2420   DWORD Characteristics;
2421 } IMAGE_SECTION_HEADER, *PIMAGE_SECTION_HEADER;
2422 
2423 #define IMAGE_SIZEOF_SECTION_HEADER 40
2424 
2425 #define IMAGE_FIRST_SECTION(ntheader) \
2426   ((PIMAGE_SECTION_HEADER)(ULONG_PTR)((const BYTE *)&((const IMAGE_NT_HEADERS *)(ntheader))->OptionalHeader + \
2427                            ((const IMAGE_NT_HEADERS *)(ntheader))->FileHeader.SizeOfOptionalHeader))
2428 
2429 /* These defines are for the Characteristics bitfield. */
2430 /* #define IMAGE_SCN_TYPE_REG                   0x00000000 - Reserved */
2431 /* #define IMAGE_SCN_TYPE_DSECT                 0x00000001 - Reserved */
2432 /* #define IMAGE_SCN_TYPE_NOLOAD                0x00000002 - Reserved */
2433 /* #define IMAGE_SCN_TYPE_GROUP                 0x00000004 - Reserved */
2434 #define IMAGE_SCN_TYPE_NO_PAD                   0x00000008 /* Reserved */
2435 /* #define IMAGE_SCN_TYPE_COPY                  0x00000010 - Reserved */
2436 
2437 #define IMAGE_SCN_CNT_CODE                      0x00000020
2438 #define IMAGE_SCN_CNT_INITIALIZED_DATA          0x00000040
2439 #define IMAGE_SCN_CNT_UNINITIALIZED_DATA        0x00000080
2440 
2441 #define IMAGE_SCN_LNK_OTHER                     0x00000100
2442 #define IMAGE_SCN_LNK_INFO                      0x00000200
2443 /* #define      IMAGE_SCN_TYPE_OVER             0x00000400 - Reserved */
2444 #define IMAGE_SCN_LNK_REMOVE                    0x00000800
2445 #define IMAGE_SCN_LNK_COMDAT                    0x00001000
2446 
2447 /*                                              0x00002000 - Reserved */
2448 /* #define IMAGE_SCN_MEM_PROTECTED              0x00004000 - Obsolete */
2449 #define IMAGE_SCN_MEM_FARDATA                   0x00008000
2450 
2451 /* #define IMAGE_SCN_MEM_SYSHEAP                0x00010000 - Obsolete */
2452 #define IMAGE_SCN_MEM_PURGEABLE                 0x00020000
2453 #define IMAGE_SCN_MEM_16BIT                     0x00020000
2454 #define IMAGE_SCN_MEM_LOCKED                    0x00040000
2455 #define IMAGE_SCN_MEM_PRELOAD                   0x00080000
2456 
2457 #define IMAGE_SCN_ALIGN_1BYTES                  0x00100000
2458 #define IMAGE_SCN_ALIGN_2BYTES                  0x00200000
2459 #define IMAGE_SCN_ALIGN_4BYTES                  0x00300000
2460 #define IMAGE_SCN_ALIGN_8BYTES                  0x00400000
2461 #define IMAGE_SCN_ALIGN_16BYTES                 0x00500000  /* Default */
2462 #define IMAGE_SCN_ALIGN_32BYTES                 0x00600000
2463 #define IMAGE_SCN_ALIGN_64BYTES                 0x00700000
2464 #define IMAGE_SCN_ALIGN_128BYTES                0x00800000
2465 #define IMAGE_SCN_ALIGN_256BYTES                0x00900000
2466 #define IMAGE_SCN_ALIGN_512BYTES                0x00A00000
2467 #define IMAGE_SCN_ALIGN_1024BYTES               0x00B00000
2468 #define IMAGE_SCN_ALIGN_2048BYTES               0x00C00000
2469 #define IMAGE_SCN_ALIGN_4096BYTES               0x00D00000
2470 #define IMAGE_SCN_ALIGN_8192BYTES               0x00E00000
2471 /*                                              0x00F00000 - Unused */
2472 #define IMAGE_SCN_ALIGN_MASK                    0x00F00000
2473 
2474 #define IMAGE_SCN_LNK_NRELOC_OVFL               0x01000000
2475 
2476 
2477 #define IMAGE_SCN_MEM_DISCARDABLE               0x02000000
2478 #define IMAGE_SCN_MEM_NOT_CACHED                0x04000000
2479 #define IMAGE_SCN_MEM_NOT_PAGED                 0x08000000
2480 #define IMAGE_SCN_MEM_SHARED                    0x10000000
2481 #define IMAGE_SCN_MEM_EXECUTE                   0x20000000
2482 #define IMAGE_SCN_MEM_READ                      0x40000000
2483 #define IMAGE_SCN_MEM_WRITE                     0x80000000
2484 
2485 #include <pshpack2.h>
2486 
2487 typedef struct _IMAGE_SYMBOL {
2488     union {
2489         BYTE    ShortName[8];
2490         struct {
2491             DWORD   Short;
2492             DWORD   Long;
2493         } Name;
2494         DWORD   LongName[2];
2495     } N;
2496     DWORD   Value;
2497     SHORT   SectionNumber;
2498     WORD    Type;
2499     BYTE    StorageClass;
2500     BYTE    NumberOfAuxSymbols;
2501 } IMAGE_SYMBOL;
2502 typedef IMAGE_SYMBOL *PIMAGE_SYMBOL;
2503 
2504 #define IMAGE_SIZEOF_SYMBOL 18
2505 
2506 typedef struct _IMAGE_LINENUMBER {
2507     union {
2508         DWORD   SymbolTableIndex;
2509         DWORD   VirtualAddress;
2510     } Type;
2511     WORD    Linenumber;
2512 } IMAGE_LINENUMBER;
2513 typedef IMAGE_LINENUMBER *PIMAGE_LINENUMBER;
2514 
2515 #define IMAGE_SIZEOF_LINENUMBER  6
2516 
2517 typedef union _IMAGE_AUX_SYMBOL {
2518     struct {
2519         DWORD    TagIndex;
2520         union {
2521             struct {
2522                 WORD    Linenumber;
2523                 WORD    Size;
2524             } LnSz;
2525            DWORD    TotalSize;
2526         } Misc;
2527         union {
2528             struct {
2529                 DWORD    PointerToLinenumber;
2530                 DWORD    PointerToNextFunction;
2531             } Function;
2532             struct {
2533                 WORD     Dimension[4];
2534             } Array;
2535         } FcnAry;
2536         WORD    TvIndex;
2537     } Sym;
2538     struct {
2539         BYTE    Name[IMAGE_SIZEOF_SYMBOL];
2540     } File;
2541     struct {
2542         DWORD   Length;
2543         WORD    NumberOfRelocations;
2544         WORD    NumberOfLinenumbers;
2545         DWORD   CheckSum;
2546         SHORT   Number;
2547         BYTE    Selection;
2548     } Section;
2549 } IMAGE_AUX_SYMBOL;
2550 typedef IMAGE_AUX_SYMBOL *PIMAGE_AUX_SYMBOL;
2551 
2552 #define IMAGE_SIZEOF_AUX_SYMBOL 18
2553 
2554 #include <poppack.h>
2555 
2556 #define IMAGE_SYM_UNDEFINED           (SHORT)0
2557 #define IMAGE_SYM_ABSOLUTE            (SHORT)-1
2558 #define IMAGE_SYM_DEBUG               (SHORT)-2
2559 
2560 #define IMAGE_SYM_TYPE_NULL                 0x0000
2561 #define IMAGE_SYM_TYPE_VOID                 0x0001
2562 #define IMAGE_SYM_TYPE_CHAR                 0x0002
2563 #define IMAGE_SYM_TYPE_SHORT                0x0003
2564 #define IMAGE_SYM_TYPE_INT                  0x0004
2565 #define IMAGE_SYM_TYPE_LONG                 0x0005
2566 #define IMAGE_SYM_TYPE_FLOAT                0x0006
2567 #define IMAGE_SYM_TYPE_DOUBLE               0x0007
2568 #define IMAGE_SYM_TYPE_STRUCT               0x0008
2569 #define IMAGE_SYM_TYPE_UNION                0x0009
2570 #define IMAGE_SYM_TYPE_ENUM                 0x000A
2571 #define IMAGE_SYM_TYPE_MOE                  0x000B
2572 #define IMAGE_SYM_TYPE_BYTE                 0x000C
2573 #define IMAGE_SYM_TYPE_WORD                 0x000D
2574 #define IMAGE_SYM_TYPE_UINT                 0x000E
2575 #define IMAGE_SYM_TYPE_DWORD                0x000F
2576 #define IMAGE_SYM_TYPE_PCODE                0x8000
2577 
2578 #define IMAGE_SYM_DTYPE_NULL                0
2579 #define IMAGE_SYM_DTYPE_POINTER             1
2580 #define IMAGE_SYM_DTYPE_FUNCTION            2
2581 #define IMAGE_SYM_DTYPE_ARRAY               3
2582 
2583 #define IMAGE_SYM_CLASS_END_OF_FUNCTION     (BYTE )-1
2584 #define IMAGE_SYM_CLASS_NULL                0x0000
2585 #define IMAGE_SYM_CLASS_AUTOMATIC           0x0001
2586 #define IMAGE_SYM_CLASS_EXTERNAL            0x0002
2587 #define IMAGE_SYM_CLASS_STATIC              0x0003
2588 #define IMAGE_SYM_CLASS_REGISTER            0x0004
2589 #define IMAGE_SYM_CLASS_EXTERNAL_DEF        0x0005
2590 #define IMAGE_SYM_CLASS_LABEL               0x0006
2591 #define IMAGE_SYM_CLASS_UNDEFINED_LABEL     0x0007
2592 #define IMAGE_SYM_CLASS_MEMBER_OF_STRUCT    0x0008
2593 #define IMAGE_SYM_CLASS_ARGUMENT            0x0009
2594 #define IMAGE_SYM_CLASS_STRUCT_TAG          0x000A
2595 #define IMAGE_SYM_CLASS_MEMBER_OF_UNION     0x000B
2596 #define IMAGE_SYM_CLASS_UNION_TAG           0x000C
2597 #define IMAGE_SYM_CLASS_TYPE_DEFINITION     0x000D
2598 #define IMAGE_SYM_CLASS_UNDEFINED_STATIC    0x000E
2599 #define IMAGE_SYM_CLASS_ENUM_TAG            0x000F
2600 #define IMAGE_SYM_CLASS_MEMBER_OF_ENUM      0x0010
2601 #define IMAGE_SYM_CLASS_REGISTER_PARAM      0x0011
2602 #define IMAGE_SYM_CLASS_BIT_FIELD           0x0012
2603 
2604 #define IMAGE_SYM_CLASS_FAR_EXTERNAL        0x0044
2605 #define IMAGE_SYM_CLASS_BLOCK               0x0064
2606 #define IMAGE_SYM_CLASS_FUNCTION            0x0065
2607 #define IMAGE_SYM_CLASS_END_OF_STRUCT       0x0066
2608 #define IMAGE_SYM_CLASS_FILE                0x0067
2609 #define IMAGE_SYM_CLASS_SECTION             0x0068
2610 #define IMAGE_SYM_CLASS_WEAK_EXTERNAL       0x0069
2611 
2612 #define N_BTMASK                            0x000F
2613 #define N_TMASK                             0x0030
2614 #define N_TMASK1                            0x00C0
2615 #define N_TMASK2                            0x00F0
2616 #define N_BTSHFT                            4
2617 #define N_TSHIFT                            2
2618 
2619 #define BTYPE(x) ((x) & N_BTMASK)
2620 
2621 #ifndef ISPTR
2622 #define ISPTR(x) (((x) & N_TMASK) == (IMAGE_SYM_DTYPE_POINTER << N_BTSHFT))
2623 #endif
2624 
2625 #ifndef ISFCN
2626 #define ISFCN(x) (((x) & N_TMASK) == (IMAGE_SYM_DTYPE_FUNCTION << N_BTSHFT))
2627 #endif
2628 
2629 #ifndef ISARY
2630 #define ISARY(x) (((x) & N_TMASK) == (IMAGE_SYM_DTYPE_ARRAY << N_BTSHFT))
2631 #endif
2632 
2633 #ifndef ISTAG
2634 #define ISTAG(x) ((x)==IMAGE_SYM_CLASS_STRUCT_TAG || (x)==IMAGE_SYM_CLASS_UNION_TAG || (x)==IMAGE_SYM_CLASS_ENUM_TAG)
2635 #endif
2636 
2637 #ifndef INCREF
2638 #define INCREF(x) ((((x)&~N_BTMASK)<<N_TSHIFT)|(IMAGE_SYM_DTYPE_POINTER<<N_BTSHFT)|((x)&N_BTMASK))
2639 #endif
2640 #ifndef DECREF
2641 #define DECREF(x) ((((x)>>N_TSHIFT)&~N_BTMASK)|((x)&N_BTMASK))
2642 #endif
2643 
2644 #define IMAGE_COMDAT_SELECT_NODUPLICATES    1
2645 #define IMAGE_COMDAT_SELECT_ANY             2
2646 #define IMAGE_COMDAT_SELECT_SAME_SIZE       3
2647 #define IMAGE_COMDAT_SELECT_EXACT_MATCH     4
2648 #define IMAGE_COMDAT_SELECT_ASSOCIATIVE     5
2649 #define IMAGE_COMDAT_SELECT_LARGEST         6
2650 #define IMAGE_COMDAT_SELECT_NEWEST          7
2651 
2652 #define IMAGE_WEAK_EXTERN_SEARCH_NOLIBRARY  1
2653 #define IMAGE_WEAK_EXTERN_SEARCH_LIBRARY    2
2654 #define IMAGE_WEAK_EXTERN_SEARCH_ALIAS      3
2655 
2656 /* Export module directory */
2657 
2658 typedef struct _IMAGE_EXPORT_DIRECTORY {
2659         DWORD   Characteristics;
2660         DWORD   TimeDateStamp;
2661         WORD    MajorVersion;
2662         WORD    MinorVersion;
2663         DWORD   Name;
2664         DWORD   Base;
2665         DWORD   NumberOfFunctions;
2666         DWORD   NumberOfNames;
2667         DWORD   AddressOfFunctions;
2668         DWORD   AddressOfNames;
2669         DWORD   AddressOfNameOrdinals;
2670 } IMAGE_EXPORT_DIRECTORY,*PIMAGE_EXPORT_DIRECTORY;
2671 
2672 /* Import name entry */
2673 typedef struct _IMAGE_IMPORT_BY_NAME {
2674         WORD    Hint;
2675         BYTE    Name[1];
2676 } IMAGE_IMPORT_BY_NAME,*PIMAGE_IMPORT_BY_NAME;
2677 
2678 #include <pshpack8.h>
2679 /* Import thunk */
2680 typedef struct _IMAGE_THUNK_DATA64 {
2681         union {
2682                 ULONGLONG ForwarderString;
2683                 ULONGLONG Function;
2684                 ULONGLONG Ordinal;
2685                 ULONGLONG AddressOfData;
2686         } u1;
2687 } IMAGE_THUNK_DATA64,*PIMAGE_THUNK_DATA64;
2688 #include <poppack.h>
2689 
2690 typedef struct _IMAGE_THUNK_DATA32 {
2691         union {
2692                 DWORD ForwarderString;
2693                 DWORD Function;
2694                 DWORD Ordinal;
2695                 DWORD AddressOfData;
2696         } u1;
2697 } IMAGE_THUNK_DATA32,*PIMAGE_THUNK_DATA32;
2698 
2699 /* Import module directory */
2700 
2701 typedef struct _IMAGE_IMPORT_DESCRIPTOR {
2702         union {
2703                 DWORD   Characteristics; /* 0 for terminating null import descriptor  */
2704                 DWORD   OriginalFirstThunk;     /* RVA to original unbound IAT */
2705         } DUMMYUNIONNAME;
2706         DWORD   TimeDateStamp;  /* 0 if not bound,
2707                                  * -1 if bound, and real date\time stamp
2708                                  *    in IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT
2709                                  * (new BIND)
2710                                  * otherwise date/time stamp of DLL bound to
2711                                  * (Old BIND)
2712                                  */
2713         DWORD   ForwarderChain; /* -1 if no forwarders */
2714         DWORD   Name;
2715         /* RVA to IAT (if bound this IAT has actual addresses) */
2716         DWORD   FirstThunk;
2717 } IMAGE_IMPORT_DESCRIPTOR,*PIMAGE_IMPORT_DESCRIPTOR;
2718 
2719 #define IMAGE_ORDINAL_FLAG64             (((ULONGLONG)0x80000000 << 32) | 0x00000000)
2720 #define IMAGE_ORDINAL_FLAG32             0x80000000
2721 #define IMAGE_SNAP_BY_ORDINAL64(ordinal) (((ordinal) & IMAGE_ORDINAL_FLAG64) != 0)
2722 #define IMAGE_SNAP_BY_ORDINAL32(ordinal) (((ordinal) & IMAGE_ORDINAL_FLAG32) != 0)
2723 #define IMAGE_ORDINAL64(ordinal)         ((ordinal) & 0xffff)
2724 #define IMAGE_ORDINAL32(ordinal)         ((ordinal) & 0xffff)
2725 
2726 #ifdef _WIN64
2727 #define IMAGE_ORDINAL_FLAG              IMAGE_ORDINAL_FLAG64
2728 #define IMAGE_SNAP_BY_ORDINAL(Ordinal)  IMAGE_SNAP_BY_ORDINAL64(Ordinal)
2729 #define IMAGE_ORDINAL(Ordinal)          IMAGE_ORDINAL64(Ordinal)
2730 typedef IMAGE_THUNK_DATA64              IMAGE_THUNK_DATA;
2731 typedef PIMAGE_THUNK_DATA64             PIMAGE_THUNK_DATA;
2732 #else
2733 #define IMAGE_ORDINAL_FLAG              IMAGE_ORDINAL_FLAG32
2734 #define IMAGE_SNAP_BY_ORDINAL(Ordinal)  IMAGE_SNAP_BY_ORDINAL32(Ordinal)
2735 #define IMAGE_ORDINAL(Ordinal)          IMAGE_ORDINAL32(Ordinal)
2736 typedef IMAGE_THUNK_DATA32              IMAGE_THUNK_DATA;
2737 typedef PIMAGE_THUNK_DATA32             PIMAGE_THUNK_DATA;
2738 #endif
2739 
2740 typedef struct _IMAGE_BOUND_IMPORT_DESCRIPTOR
2741 {
2742     DWORD   TimeDateStamp;
2743     WORD    OffsetModuleName;
2744     WORD    NumberOfModuleForwarderRefs;
2745 /* Array of zero or more IMAGE_BOUND_FORWARDER_REF follows */
2746 } IMAGE_BOUND_IMPORT_DESCRIPTOR,  *PIMAGE_BOUND_IMPORT_DESCRIPTOR;
2747 
2748 typedef struct _IMAGE_BOUND_FORWARDER_REF
2749 {
2750     DWORD   TimeDateStamp;
2751     WORD    OffsetModuleName;
2752     WORD    Reserved;
2753 } IMAGE_BOUND_FORWARDER_REF, *PIMAGE_BOUND_FORWARDER_REF;
2754 
2755 typedef struct _IMAGE_BASE_RELOCATION
2756 {
2757         DWORD   VirtualAddress;
2758         DWORD   SizeOfBlock;
2759         /* WORD TypeOffset[1]; */
2760 } IMAGE_BASE_RELOCATION,*PIMAGE_BASE_RELOCATION;
2761 
2762 #include <pshpack2.h>
2763 
2764 typedef struct _IMAGE_RELOCATION
2765 {
2766     union {
2767         DWORD   VirtualAddress;
2768         DWORD   RelocCount;
2769     } DUMMYUNIONNAME;
2770     DWORD   SymbolTableIndex;
2771     WORD    Type;
2772 } IMAGE_RELOCATION, *PIMAGE_RELOCATION;
2773 
2774 #include <poppack.h>
2775 
2776 #define IMAGE_SIZEOF_RELOCATION 10
2777 
2778 /* generic relocation types */
2779 #define IMAGE_REL_BASED_ABSOLUTE                0
2780 #define IMAGE_REL_BASED_HIGH                    1
2781 #define IMAGE_REL_BASED_LOW                     2
2782 #define IMAGE_REL_BASED_HIGHLOW                 3
2783 #define IMAGE_REL_BASED_HIGHADJ                 4
2784 #define IMAGE_REL_BASED_MIPS_JMPADDR            5
2785 #define IMAGE_REL_BASED_SECTION                 6
2786 #define IMAGE_REL_BASED_REL                     7
2787 #define IMAGE_REL_BASED_MIPS_JMPADDR16          9
2788 #define IMAGE_REL_BASED_IA64_IMM64              9 /* yes, 9 too */
2789 #define IMAGE_REL_BASED_DIR64                   10
2790 #define IMAGE_REL_BASED_HIGH3ADJ                11
2791 
2792 /* I386 relocation types */
2793 #define IMAGE_REL_I386_ABSOLUTE                 0
2794 #define IMAGE_REL_I386_DIR16                    1
2795 #define IMAGE_REL_I386_REL16                    2
2796 #define IMAGE_REL_I386_DIR32                    6
2797 #define IMAGE_REL_I386_DIR32NB                  7
2798 #define IMAGE_REL_I386_SEG12                    9
2799 #define IMAGE_REL_I386_SECTION                  10
2800 #define IMAGE_REL_I386_SECREL                   11
2801 #define IMAGE_REL_I386_REL32                    20
2802 
2803 /* MIPS relocation types */
2804 #define IMAGE_REL_MIPS_ABSOLUTE         0x0000
2805 #define IMAGE_REL_MIPS_REFHALF          0x0001
2806 #define IMAGE_REL_MIPS_REFWORD          0x0002
2807 #define IMAGE_REL_MIPS_JMPADDR          0x0003
2808 #define IMAGE_REL_MIPS_REFHI            0x0004
2809 #define IMAGE_REL_MIPS_REFLO            0x0005
2810 #define IMAGE_REL_MIPS_GPREL            0x0006
2811 #define IMAGE_REL_MIPS_LITERAL          0x0007
2812 #define IMAGE_REL_MIPS_SECTION          0x000A
2813 #define IMAGE_REL_MIPS_SECREL           0x000B
2814 #define IMAGE_REL_MIPS_SECRELLO         0x000C
2815 #define IMAGE_REL_MIPS_SECRELHI         0x000D
2816 #define IMAGE_REL_MIPS_JMPADDR16        0x0010
2817 #define IMAGE_REL_MIPS_REFWORDNB        0x0022
2818 #define IMAGE_REL_MIPS_PAIR             0x0025
2819 
2820 /* ALPHA relocation types */
2821 #define IMAGE_REL_ALPHA_ABSOLUTE        0x0000
2822 #define IMAGE_REL_ALPHA_REFLONG         0x0001
2823 #define IMAGE_REL_ALPHA_REFQUAD         0x0002
2824 #define IMAGE_REL_ALPHA_GPREL           0x0003
2825 #define IMAGE_REL_ALPHA_LITERAL         0x0004
2826 #define IMAGE_REL_ALPHA_LITUSE          0x0005
2827 #define IMAGE_REL_ALPHA_GPDISP          0x0006
2828 #define IMAGE_REL_ALPHA_BRADDR          0x0007
2829 #define IMAGE_REL_ALPHA_HINT            0x0008
2830 #define IMAGE_REL_ALPHA_INLINE_REFLONG  0x0009
2831 #define IMAGE_REL_ALPHA_REFHI           0x000A
2832 #define IMAGE_REL_ALPHA_REFLO           0x000B
2833 #define IMAGE_REL_ALPHA_PAIR            0x000C
2834 #define IMAGE_REL_ALPHA_MATCH           0x000D
2835 #define IMAGE_REL_ALPHA_SECTION         0x000E
2836 #define IMAGE_REL_ALPHA_SECREL          0x000F
2837 #define IMAGE_REL_ALPHA_REFLONGNB       0x0010
2838 #define IMAGE_REL_ALPHA_SECRELLO        0x0011
2839 #define IMAGE_REL_ALPHA_SECRELHI        0x0012
2840 #define IMAGE_REL_ALPHA_REFQ3           0x0013
2841 #define IMAGE_REL_ALPHA_REFQ2           0x0014
2842 #define IMAGE_REL_ALPHA_REFQ1           0x0015
2843 #define IMAGE_REL_ALPHA_GPRELLO         0x0016
2844 #define IMAGE_REL_ALPHA_GPRELHI         0x0017
2845 
2846 /* PowerPC relocation types */
2847 #define IMAGE_REL_PPC_ABSOLUTE          0x0000
2848 #define IMAGE_REL_PPC_ADDR64            0x0001
2849 #define IMAGE_REL_PPC_ADDR            0x0002
2850 #define IMAGE_REL_PPC_ADDR24            0x0003
2851 #define IMAGE_REL_PPC_ADDR16            0x0004
2852 #define IMAGE_REL_PPC_ADDR14            0x0005
2853 #define IMAGE_REL_PPC_REL24             0x0006
2854 #define IMAGE_REL_PPC_REL14             0x0007
2855 #define IMAGE_REL_PPC_TOCREL16          0x0008
2856 #define IMAGE_REL_PPC_TOCREL14          0x0009
2857 #define IMAGE_REL_PPC_ADDR32NB          0x000A
2858 #define IMAGE_REL_PPC_SECREL            0x000B
2859 #define IMAGE_REL_PPC_SECTION           0x000C
2860 #define IMAGE_REL_PPC_IFGLUE            0x000D
2861 #define IMAGE_REL_PPC_IMGLUE            0x000E
2862 #define IMAGE_REL_PPC_SECREL16          0x000F
2863 #define IMAGE_REL_PPC_REFHI             0x0010
2864 #define IMAGE_REL_PPC_REFLO             0x0011
2865 #define IMAGE_REL_PPC_PAIR              0x0012
2866 #define IMAGE_REL_PPC_SECRELLO          0x0013
2867 #define IMAGE_REL_PPC_SECRELHI          0x0014
2868 #define IMAGE_REL_PPC_GPREL             0x0015
2869 #define IMAGE_REL_PPC_TYPEMASK          0x00FF
2870 /* modifier bits */
2871 #define IMAGE_REL_PPC_NEG               0x0100
2872 #define IMAGE_REL_PPC_BRTAKEN           0x0200
2873 #define IMAGE_REL_PPC_BRNTAKEN          0x0400
2874 #define IMAGE_REL_PPC_TOCDEFN           0x0800
2875 
2876 /* SH3 ? relocation type */
2877 #define IMAGE_REL_SH3_ABSOLUTE          0x0000
2878 #define IMAGE_REL_SH3_DIRECT16          0x0001
2879 #define IMAGE_REL_SH3_DIRECT          0x0002
2880 #define IMAGE_REL_SH3_DIRECT8           0x0003
2881 #define IMAGE_REL_SH3_DIRECT8_WORD      0x0004
2882 #define IMAGE_REL_SH3_DIRECT8_LONG      0x0005
2883 #define IMAGE_REL_SH3_DIRECT4           0x0006
2884 #define IMAGE_REL_SH3_DIRECT4_WORD      0x0007
2885 #define IMAGE_REL_SH3_DIRECT4_LONG      0x0008
2886 #define IMAGE_REL_SH3_PCREL8_WORD       0x0009
2887 #define IMAGE_REL_SH3_PCREL8_LONG       0x000A
2888 #define IMAGE_REL_SH3_PCREL12_WORD      0x000B
2889 #define IMAGE_REL_SH3_STARTOF_SECTION   0x000C
2890 #define IMAGE_REL_SH3_SIZEOF_SECTION    0x000D
2891 #define IMAGE_REL_SH3_SECTION           0x000E
2892 #define IMAGE_REL_SH3_SECREL            0x000F
2893 #define IMAGE_REL_SH3_DIRECT32_NB       0x0010
2894 
2895 /* ARM (Archimedes?) relocation types */
2896 #define IMAGE_REL_ARM_ABSOLUTE          0x0000
2897 #define IMAGE_REL_ARM_ADDR              0x0001
2898 #define IMAGE_REL_ARM_ADDR32NB          0x0002
2899 #define IMAGE_REL_ARM_BRANCH24          0x0003
2900 #define IMAGE_REL_ARM_BRANCH11          0x0004
2901 #define IMAGE_REL_ARM_SECTION           0x000E
2902 #define IMAGE_REL_ARM_SECREL            0x000F
2903 
2904 /* IA64 relocation types */
2905 #define IMAGE_REL_IA64_ABSOLUTE         0x0000
2906 #define IMAGE_REL_IA64_IMM14            0x0001
2907 #define IMAGE_REL_IA64_IMM22            0x0002
2908 #define IMAGE_REL_IA64_IMM64            0x0003
2909 #define IMAGE_REL_IA64_DIR              0x0004
2910 #define IMAGE_REL_IA64_DIR64            0x0005
2911 #define IMAGE_REL_IA64_PCREL21B         0x0006
2912 #define IMAGE_REL_IA64_PCREL21M         0x0007
2913 #define IMAGE_REL_IA64_PCREL21F         0x0008
2914 #define IMAGE_REL_IA64_GPREL22          0x0009
2915 #define IMAGE_REL_IA64_LTOFF22          0x000A
2916 #define IMAGE_REL_IA64_SECTION          0x000B
2917 #define IMAGE_REL_IA64_SECREL22         0x000C
2918 #define IMAGE_REL_IA64_SECREL64I        0x000D
2919 #define IMAGE_REL_IA64_SECREL           0x000E
2920 #define IMAGE_REL_IA64_LTOFF64          0x000F
2921 #define IMAGE_REL_IA64_DIR32NB          0x0010
2922 #define IMAGE_REL_IA64_RESERVED_11      0x0011
2923 #define IMAGE_REL_IA64_RESERVED_12      0x0012
2924 #define IMAGE_REL_IA64_RESERVED_13      0x0013
2925 #define IMAGE_REL_IA64_RESERVED_14      0x0014
2926 #define IMAGE_REL_IA64_RESERVED_15      0x0015
2927 #define IMAGE_REL_IA64_RESERVED_16      0x0016
2928 #define IMAGE_REL_IA64_ADDEND           0x001F
2929 
2930 /* AMD64 relocation types */
2931 #define IMAGE_REL_AMD64_ABSOLUTE        0x0000
2932 #define IMAGE_REL_AMD64_ADDR64          0x0001
2933 #define IMAGE_REL_AMD64_ADDR32          0x0002
2934 #define IMAGE_REL_AMD64_ADDR32NB        0x0003
2935 #define IMAGE_REL_AMD64_REL32           0x0004
2936 #define IMAGE_REL_AMD64_REL32_1         0x0005
2937 #define IMAGE_REL_AMD64_REL32_2         0x0006
2938 #define IMAGE_REL_AMD64_REL32_3         0x0007
2939 #define IMAGE_REL_AMD64_REL32_4         0x0008
2940 #define IMAGE_REL_AMD64_REL32_5         0x0009
2941 #define IMAGE_REL_AMD64_SECTION         0x000A
2942 #define IMAGE_REL_AMD64_SECREL          0x000B
2943 #define IMAGE_REL_AMD64_SECREL7         0x000C
2944 #define IMAGE_REL_AMD64_TOKEN           0x000D
2945 #define IMAGE_REL_AMD64_SREL32          0x000E
2946 #define IMAGE_REL_AMD64_PAIR            0x000F
2947 #define IMAGE_REL_AMD64_SSPAN32         0x0010
2948 
2949 /* archive format */
2950 
2951 #define IMAGE_ARCHIVE_START_SIZE             8
2952 #define IMAGE_ARCHIVE_START                  "!<arch>\n"
2953 #define IMAGE_ARCHIVE_END                    "`\n"
2954 #define IMAGE_ARCHIVE_PAD                    "\n"
2955 #define IMAGE_ARCHIVE_LINKER_MEMBER          "/               "
2956 #define IMAGE_ARCHIVE_LONGNAMES_MEMBER       "//              "
2957 
2958 typedef struct _IMAGE_ARCHIVE_MEMBER_HEADER
2959 {
2960     BYTE     Name[16];
2961     BYTE     Date[12];
2962     BYTE     UserID[6];
2963     BYTE     GroupID[6];
2964     BYTE     Mode[8];
2965     BYTE     Size[10];
2966     BYTE     EndHeader[2];
2967 } IMAGE_ARCHIVE_MEMBER_HEADER, *PIMAGE_ARCHIVE_MEMBER_HEADER;
2968 
2969 #define IMAGE_SIZEOF_ARCHIVE_MEMBER_HDR 60
2970 
2971 typedef struct _IMPORT_OBJECT_HEADER
2972 {
2973     WORD     Sig1;
2974     WORD     Sig2;
2975     WORD     Version;
2976     WORD     Machine;
2977     DWORD    TimeDateStamp;
2978     DWORD    SizeOfData;
2979     union
2980     {
2981         WORD Ordinal;
2982         WORD Hint;
2983     } DUMMYUNIONNAME;
2984     WORD     Type : 2;
2985     WORD     NameType : 3;
2986     WORD     Reserved : 11;
2987 } IMPORT_OBJECT_HEADER;
2988 
2989 #define IMPORT_OBJECT_HDR_SIG2  0xffff
2990 
2991 typedef enum IMPORT_OBJECT_TYPE
2992 {
2993     IMPORT_OBJECT_CODE = 0,
2994     IMPORT_OBJECT_DATA = 1,
2995     IMPORT_OBJECT_CONST = 2
2996 } IMPORT_OBJECT_TYPE;
2997 
2998 typedef enum IMPORT_OBJECT_NAME_TYPE
2999 {
3000     IMPORT_OBJECT_ORDINAL = 0,
3001     IMPORT_OBJECT_NAME = 1,
3002     IMPORT_OBJECT_NAME_NO_PREFIX = 2,
3003     IMPORT_OBJECT_NAME_UNDECORATE = 3
3004 } IMPORT_OBJECT_NAME_TYPE;
3005 
3006 typedef struct _ANON_OBJECT_HEADER
3007 {
3008     WORD     Sig1;
3009     WORD     Sig2;
3010     WORD     Version;
3011     WORD     Machine;
3012     DWORD    TimeDateStamp;
3013     CLSID    ClassID;
3014     DWORD    SizeOfData;
3015 } ANON_OBJECT_HEADER;
3016 
3017 /*
3018  * Resource directory stuff
3019  */
3020 typedef struct _IMAGE_RESOURCE_DIRECTORY {
3021         DWORD   Characteristics;
3022         DWORD   TimeDateStamp;
3023         WORD    MajorVersion;
3024         WORD    MinorVersion;
3025         WORD    NumberOfNamedEntries;
3026         WORD    NumberOfIdEntries;
3027         /*  IMAGE_RESOURCE_DIRECTORY_ENTRY DirectoryEntries[]; */
3028 } IMAGE_RESOURCE_DIRECTORY,*PIMAGE_RESOURCE_DIRECTORY;
3029 
3030 #define IMAGE_RESOURCE_NAME_IS_STRING           0x80000000
3031 #define IMAGE_RESOURCE_DATA_IS_DIRECTORY        0x80000000
3032 
3033 typedef struct _IMAGE_RESOURCE_DIRECTORY_ENTRY {
3034         union {
3035                 struct {
3036 #ifdef BITFIELDS_BIGENDIAN
3037                         unsigned NameIsString:1;
3038                         unsigned NameOffset:31;
3039 #else
3040                         unsigned NameOffset:31;
3041                         unsigned NameIsString:1;
3042 #endif
3043                 } DUMMYSTRUCTNAME1;
3044                 DWORD   Name;
3045                 struct {
3046 #ifdef WORDS_BIGENDIAN
3047                         WORD    __pad;
3048                         WORD    Id;
3049 #else
3050                         WORD    Id;
3051                         WORD    __pad;
3052 #endif
3053                 } DUMMYSTRUCTNAME2;
3054         } DUMMYUNIONNAME1;
3055         union {
3056                 DWORD   OffsetToData;
3057                 struct {
3058 #ifdef BITFIELDS_BIGENDIAN
3059                         unsigned DataIsDirectory:1;
3060                         unsigned OffsetToDirectory:31;
3061 #else
3062                         unsigned OffsetToDirectory:31;
3063                         unsigned DataIsDirectory:1;
3064 #endif
3065                 } DUMMYSTRUCTNAME3;
3066         } DUMMYUNIONNAME2;
3067 } IMAGE_RESOURCE_DIRECTORY_ENTRY,*PIMAGE_RESOURCE_DIRECTORY_ENTRY;
3068 
3069 
3070 typedef struct _IMAGE_RESOURCE_DIRECTORY_STRING {
3071         WORD    Length;
3072         CHAR    NameString[ 1 ];
3073 } IMAGE_RESOURCE_DIRECTORY_STRING,*PIMAGE_RESOURCE_DIRECTORY_STRING;
3074 
3075 typedef struct _IMAGE_RESOURCE_DIR_STRING_U {
3076         WORD    Length;
3077         WCHAR   NameString[ 1 ];
3078 } IMAGE_RESOURCE_DIR_STRING_U,*PIMAGE_RESOURCE_DIR_STRING_U;
3079 
3080 typedef struct _IMAGE_RESOURCE_DATA_ENTRY {
3081         DWORD   OffsetToData;
3082         DWORD   Size;
3083         DWORD   CodePage;
3084         DWORD   Reserved;
3085 } IMAGE_RESOURCE_DATA_ENTRY,*PIMAGE_RESOURCE_DATA_ENTRY;
3086 
3087 
3088 typedef VOID (CALLBACK *PIMAGE_TLS_CALLBACK)(
3089         LPVOID DllHandle,DWORD Reason,LPVOID Reserved
3090 );
3091 
3092 typedef struct _IMAGE_TLS_DIRECTORY64 {
3093     ULONGLONG   StartAddressOfRawData;
3094     ULONGLONG   EndAddressOfRawData;
3095     ULONGLONG   AddressOfIndex;
3096     ULONGLONG   AddressOfCallBacks;
3097     DWORD       SizeOfZeroFill;
3098     DWORD       Characteristics;
3099 } IMAGE_TLS_DIRECTORY64, *PIMAGE_TLS_DIRECTORY64;
3100 
3101 typedef struct _IMAGE_TLS_DIRECTORY32 {
3102     DWORD   StartAddressOfRawData;
3103     DWORD   EndAddressOfRawData;
3104     DWORD   AddressOfIndex;
3105     DWORD   AddressOfCallBacks;
3106     DWORD   SizeOfZeroFill;
3107     DWORD   Characteristics;
3108 } IMAGE_TLS_DIRECTORY32, *PIMAGE_TLS_DIRECTORY32;
3109 
3110 #ifdef _WIN64
3111 typedef IMAGE_TLS_DIRECTORY64           IMAGE_TLS_DIRECTORY;
3112 typedef PIMAGE_TLS_DIRECTORY64          PIMAGE_TLS_DIRECTORY;
3113 #else
3114 typedef IMAGE_TLS_DIRECTORY32           IMAGE_TLS_DIRECTORY;
3115 typedef PIMAGE_TLS_DIRECTORY32          PIMAGE_TLS_DIRECTORY;
3116 #endif
3117 
3118 typedef struct _IMAGE_DEBUG_DIRECTORY {
3119   DWORD Characteristics;
3120   DWORD TimeDateStamp;
3121   WORD  MajorVersion;
3122   WORD  MinorVersion;
3123   DWORD Type;
3124   DWORD SizeOfData;
3125   DWORD AddressOfRawData;
3126   DWORD PointerToRawData;
3127 } IMAGE_DEBUG_DIRECTORY, *PIMAGE_DEBUG_DIRECTORY;
3128 
3129 #define IMAGE_DEBUG_TYPE_UNKNOWN        0
3130 #define IMAGE_DEBUG_TYPE_COFF           1
3131 #define IMAGE_DEBUG_TYPE_CODEVIEW       2
3132 #define IMAGE_DEBUG_TYPE_FPO            3
3133 #define IMAGE_DEBUG_TYPE_MISC           4
3134 #define IMAGE_DEBUG_TYPE_EXCEPTION      5
3135 #define IMAGE_DEBUG_TYPE_FIXUP          6
3136 #define IMAGE_DEBUG_TYPE_OMAP_TO_SRC    7
3137 #define IMAGE_DEBUG_TYPE_OMAP_FROM_SRC  8
3138 #define IMAGE_DEBUG_TYPE_BORLAND        9
3139 #define IMAGE_DEBUG_TYPE_RESERVED10    10
3140 
3141 typedef enum ReplacesCorHdrNumericDefines
3142 {
3143     COMIMAGE_FLAGS_ILONLY           = 0x00000001,
3144     COMIMAGE_FLAGS_32BITREQUIRED    = 0x00000002,
3145     COMIMAGE_FLAGS_IL_LIBRARY       = 0x00000004,
3146     COMIMAGE_FLAGS_STRONGNAMESIGNED = 0x00000008,
3147     COMIMAGE_FLAGS_TRACKDEBUGDATA   = 0x00010000,
3148 
3149     COR_VERSION_MAJOR_V2       = 2,
3150     COR_VERSION_MAJOR          = COR_VERSION_MAJOR_V2,
3151     COR_VERSION_MINOR          = 0,
3152     COR_DELETED_NAME_LENGTH    = 8,
3153     COR_VTABLEGAP_NAME_LENGTH  = 8,
3154 
3155     NATIVE_TYPE_MAX_CB = 1,
3156     COR_ILMETHOD_SECT_SMALL_MAX_DATASIZE = 0xff,
3157 
3158     IMAGE_COR_MIH_METHODRVA  = 0x01,
3159     IMAGE_COR_MIH_EHRVA      = 0x02,
3160     IMAGE_COR_MIH_BASICBLOCK = 0x08,
3161 
3162     COR_VTABLE_32BIT             = 0x01,
3163     COR_VTABLE_64BIT             = 0x02,
3164     COR_VTABLE_FROM_UNMANAGED    = 0x04,
3165     COR_VTABLE_CALL_MOST_DERIVED = 0x10,
3166 
3167     IMAGE_COR_EATJ_THUNK_SIZE = 32,
3168 
3169     MAX_CLASS_NAME   = 1024,
3170     MAX_PACKAGE_NAME = 1024,
3171 } ReplacesCorHdrNumericDefines;
3172 
3173 typedef struct IMAGE_COR20_HEADER
3174 {
3175     DWORD cb;
3176     WORD  MajorRuntimeVersion;
3177     WORD  MinorRuntimeVersion;
3178 
3179     IMAGE_DATA_DIRECTORY MetaData;
3180     DWORD Flags;
3181     DWORD EntryPointToken;
3182 
3183     IMAGE_DATA_DIRECTORY Resources;
3184     IMAGE_DATA_DIRECTORY StrongNameSignature;
3185     IMAGE_DATA_DIRECTORY CodeManagerTable;
3186     IMAGE_DATA_DIRECTORY VTableFixups;
3187     IMAGE_DATA_DIRECTORY ExportAddressTableJumps;
3188     IMAGE_DATA_DIRECTORY ManagedNativeHeader;
3189 
3190 } IMAGE_COR20_HEADER, *PIMAGE_COR20_HEADER;
3191 
3192 typedef struct _IMAGE_COFF_SYMBOLS_HEADER {
3193   DWORD NumberOfSymbols;
3194   DWORD LvaToFirstSymbol;
3195   DWORD NumberOfLinenumbers;
3196   DWORD LvaToFirstLinenumber;
3197   DWORD RvaToFirstByteOfCode;
3198   DWORD RvaToLastByteOfCode;
3199   DWORD RvaToFirstByteOfData;
3200   DWORD RvaToLastByteOfData;
3201 } IMAGE_COFF_SYMBOLS_HEADER, *PIMAGE_COFF_SYMBOLS_HEADER;
3202 
3203 #define FRAME_FPO       0
3204 #define FRAME_TRAP      1
3205 #define FRAME_TSS       2
3206 #define FRAME_NONFPO    3
3207 
3208 typedef struct _FPO_DATA {
3209   DWORD ulOffStart;
3210   DWORD cbProcSize;
3211   DWORD cdwLocals;
3212   WORD  cdwParams;
3213   WORD  cbProlog : 8;
3214   WORD  cbRegs   : 3;
3215   WORD  fHasSEH  : 1;
3216   WORD  fUseBP   : 1;
3217   WORD  reserved : 1;
3218   WORD  cbFrame  : 2;
3219 } FPO_DATA, *PFPO_DATA;
3220 
3221 typedef struct _IMAGE_LOAD_CONFIG_DIRECTORY {
3222   DWORD Size;
3223   DWORD TimeDateStamp;
3224   WORD  MajorVersion;
3225   WORD  MinorVersion;
3226   DWORD GlobalFlagsClear;
3227   DWORD GlobalFlagsSet;
3228   DWORD CriticalSectionDefaultTimeout;
3229   DWORD DeCommitFreeBlockThreshold;
3230   DWORD DeCommitTotalFreeThreshold;
3231   PVOID LockPrefixTable;
3232   DWORD MaximumAllocationSize;
3233   DWORD VirtualMemoryThreshold;
3234   DWORD ProcessHeapFlags;
3235   DWORD ProcessAffinityMask;
3236   WORD  CSDVersion;
3237   WORD  Reserved1;
3238   PVOID EditList;
3239   DWORD SecurityCookie;
3240   DWORD SEHandlerTable;
3241   DWORD SEHandlerCount;
3242 } IMAGE_LOAD_CONFIG_DIRECTORY, *PIMAGE_LOAD_CONFIG_DIRECTORY;
3243 
3244 typedef struct _IMAGE_FUNCTION_ENTRY {
3245   DWORD StartingAddress;
3246   DWORD EndingAddress;
3247   DWORD EndOfPrologue;
3248 } IMAGE_FUNCTION_ENTRY, *PIMAGE_FUNCTION_ENTRY;
3249 
3250 #define IMAGE_DEBUG_MISC_EXENAME    1
3251 
3252 typedef struct _IMAGE_DEBUG_MISC {
3253     DWORD       DataType;
3254     DWORD       Length;
3255     BYTE        Unicode;
3256     BYTE        Reserved[ 3 ];
3257     BYTE        Data[ 1 ];
3258 } IMAGE_DEBUG_MISC, *PIMAGE_DEBUG_MISC;
3259 
3260 /* This is the structure that appears at the very start of a .DBG file. */
3261 
3262 typedef struct _IMAGE_SEPARATE_DEBUG_HEADER {
3263         WORD    Signature;
3264         WORD    Flags;
3265         WORD    Machine;
3266         WORD    Characteristics;
3267         DWORD   TimeDateStamp;
3268         DWORD   CheckSum;
3269         DWORD   ImageBase;
3270         DWORD   SizeOfImage;
3271         DWORD   NumberOfSections;
3272         DWORD   ExportedNamesSize;
3273         DWORD   DebugDirectorySize;
3274         DWORD   SectionAlignment;
3275         DWORD   Reserved[ 2 ];
3276 } IMAGE_SEPARATE_DEBUG_HEADER,*PIMAGE_SEPARATE_DEBUG_HEADER;
3277 
3278 #define IMAGE_SEPARATE_DEBUG_SIGNATURE 0x4944
3279 
3280 
3281 typedef struct tagMESSAGE_RESOURCE_ENTRY {
3282         WORD    Length;
3283         WORD    Flags;
3284         BYTE    Text[1];
3285 } MESSAGE_RESOURCE_ENTRY,*PMESSAGE_RESOURCE_ENTRY;
3286 #define MESSAGE_RESOURCE_UNICODE        0x0001
3287 
3288 typedef struct tagMESSAGE_RESOURCE_BLOCK {
3289         DWORD   LowId;
3290         DWORD   HighId;
3291         DWORD   OffsetToEntries;
3292 } MESSAGE_RESOURCE_BLOCK,*PMESSAGE_RESOURCE_BLOCK;
3293 
3294 typedef struct tagMESSAGE_RESOURCE_DATA {
3295         DWORD                   NumberOfBlocks;
3296         MESSAGE_RESOURCE_BLOCK  Blocks[ 1 ];
3297 } MESSAGE_RESOURCE_DATA,*PMESSAGE_RESOURCE_DATA;
3298 
3299 /*
3300  * Here follows typedefs for security and tokens.
3301  */
3302 
3303 /*
3304  * First a constant for the following typedefs.
3305  */
3306 
3307 #define ANYSIZE_ARRAY   1
3308 
3309 /* FIXME:  Orphan.  What does it point to? */
3310 typedef PVOID PACCESS_TOKEN;
3311 typedef PVOID PSECURITY_DESCRIPTOR;
3312 typedef PVOID PSID;
3313 
3314 /*
3315  * TOKEN_INFORMATION_CLASS
3316  */
3317 
3318 typedef enum _TOKEN_INFORMATION_CLASS {
3319   TokenUser = 1,
3320   TokenGroups,
3321   TokenPrivileges,
3322   TokenOwner,
3323   TokenPrimaryGroup,
3324   TokenDefaultDacl,
3325   TokenSource,
3326   TokenType,
3327   TokenImpersonationLevel,
3328   TokenStatistics,
3329   TokenRestrictedSids,
3330   TokenSessionId,
3331   TokenGroupsAndPrivileges,
3332   TokenSessionReference,
3333   TokenSandBoxInert
3334 } TOKEN_INFORMATION_CLASS;
3335 
3336 #define TOKEN_TOKEN_ADJUST_DEFAULT   0x0080
3337 #define TOKEN_ADJUST_GROUPS          0x0040
3338 #define TOKEN_ADJUST_PRIVILEGES      0x0020
3339 #define TOKEN_ADJUST_SESSIONID       0x0100
3340 #define TOKEN_ASSIGN_PRIMARY         0x0001
3341 #define TOKEN_DUPLICATE              0x0002
3342 #define TOKEN_EXECUTE                STANDARD_RIGHTS_EXECUTE
3343 #define TOKEN_IMPERSONATE            0x0004
3344 #define TOKEN_QUERY                  0x0008
3345 #define TOKEN_QUERY_SOURCE           0x0010
3346 #define TOKEN_ADJUST_DEFAULT         0x0080
3347 #define TOKEN_READ                   (STANDARD_RIGHTS_READ|TOKEN_QUERY)
3348 #define TOKEN_WRITE                  (STANDARD_RIGHTS_WRITE     | \
3349                                         TOKEN_ADJUST_PRIVILEGES | \
3350                                         TOKEN_ADJUST_GROUPS | \
3351                                         TOKEN_ADJUST_DEFAULT )
3352 #define TOKEN_ALL_ACCESS             (STANDARD_RIGHTS_REQUIRED | \
3353                                         TOKEN_ASSIGN_PRIMARY | \
3354                                         TOKEN_DUPLICATE | \
3355                                         TOKEN_IMPERSONATE | \
3356                                         TOKEN_QUERY | \
3357                                         TOKEN_QUERY_SOURCE | \
3358                                         TOKEN_ADJUST_PRIVILEGES | \
3359                                         TOKEN_ADJUST_GROUPS | \
3360                                         TOKEN_ADJUST_SESSIONID | \
3361                                         TOKEN_ADJUST_DEFAULT )
3362 
3363 #ifndef _SECURITY_DEFINED
3364 #define _SECURITY_DEFINED
3365 
3366 
3367 typedef DWORD ACCESS_MASK, *PACCESS_MASK;
3368 
3369 typedef struct _GENERIC_MAPPING {
3370     ACCESS_MASK GenericRead;
3371     ACCESS_MASK GenericWrite;
3372     ACCESS_MASK GenericExecute;
3373     ACCESS_MASK GenericAll;
3374 } GENERIC_MAPPING, *PGENERIC_MAPPING;
3375 
3376 #ifndef SID_IDENTIFIER_AUTHORITY_DEFINED
3377 #define SID_IDENTIFIER_AUTHORITY_DEFINED
3378 typedef struct {
3379     BYTE Value[6];
3380 } SID_IDENTIFIER_AUTHORITY, *PSID_IDENTIFIER_AUTHORITY;
3381 #endif /* !defined(SID_IDENTIFIER_AUTHORITY_DEFINED) */
3382 
3383 #ifndef SID_DEFINED
3384 #define SID_DEFINED
3385 typedef struct _SID {
3386     BYTE Revision;
3387     BYTE SubAuthorityCount;
3388     SID_IDENTIFIER_AUTHORITY IdentifierAuthority;
3389     DWORD SubAuthority[1];
3390 } SID,*PISID;
3391 #endif /* !defined(SID_DEFINED) */
3392 
3393 #define SID_REVISION                    (1)     /* Current revision */
3394 #define SID_MAX_SUB_AUTHORITIES         (15)    /* current max subauths */
3395 #define SID_RECOMMENDED_SUB_AUTHORITIES (1)     /* recommended subauths */
3396 
3397 #define SECURITY_MAX_SID_SIZE (sizeof(SID) - sizeof(DWORD) + (SID_MAX_SUB_AUTHORITIES * sizeof(DWORD)))
3398 
3399 /*
3400  * ACL
3401  */
3402 
3403 #define ACL_REVISION1 1
3404 #define ACL_REVISION2 2
3405 #define ACL_REVISION3 3
3406 #define ACL_REVISION4 4
3407 
3408 #define MIN_ACL_REVISION ACL_REVISION2
3409 #define MAX_ACL_REVISION ACL_REVISION4
3410 
3411 #define ACL_REVISION 2
3412 
3413 typedef struct _ACL {
3414     BYTE AclRevision;
3415     BYTE Sbz1;
3416     WORD AclSize;
3417     WORD AceCount;
3418     WORD Sbz2;
3419 } ACL, *PACL;
3420 
3421 typedef enum _ACL_INFORMATION_CLASS
3422 {
3423   AclRevisionInformation = 1, 
3424   AclSizeInformation
3425 } ACL_INFORMATION_CLASS;
3426 
3427 typedef struct _ACL_REVISION_INFORMATION
3428 {
3429     DWORD AclRevision;
3430 } ACL_REVISION_INFORMATION, *PACL_REVISION_INFORMATION;
3431 
3432 typedef struct _ACL_SIZE_INFORMATION
3433 {
3434     DWORD AceCount;
3435     DWORD AclBytesInUse;
3436     DWORD AclBytesFree;
3437 } ACL_SIZE_INFORMATION, *PACL_SIZE_INFORMATION;
3438 
3439 /* SECURITY_DESCRIPTOR */
3440 #define SECURITY_DESCRIPTOR_REVISION    1
3441 #define SECURITY_DESCRIPTOR_REVISION1   1
3442 
3443 
3444 /*
3445  * Privilege Names
3446  */
3447 #define SE_CREATE_TOKEN_NAME            TEXT("SeCreateTokenPrivilege")
3448 #define SE_ASSIGNPRIMARYTOKEN_NAME      TEXT("SeAssignPrimaryTokenPrivilege")
3449 #define SE_LOCK_MEMORY_NAME             TEXT("SeLockMemoryPrivilege")
3450 #define SE_INCREASE_QUOTA_NAME          TEXT("SeIncreaseQuotaPrivilege")
3451 #define SE_UNSOLICITED_INPUT_NAME       TEXT("SeUnsolicitedInputPrivilege")
3452 #define SE_MACHINE_ACCOUNT_NAME         TEXT("SeMachineAccountPrivilege")
3453 #define SE_TCB_NAME                     TEXT("SeTcbPrivilege")
3454 #define SE_SECURITY_NAME                TEXT("SeSecurityPrivilege")
3455 #define SE_TAKE_OWNERSHIP_NAME          TEXT("SeTakeOwnershipPrivilege")
3456 #define SE_LOAD_DRIVER_NAME             TEXT("SeLoadDriverPrivilege")
3457 #define SE_SYSTEM_PROFILE_NAME          TEXT("SeSystemProfilePrivilege")
3458 #define SE_SYSTEMTIME_NAME              TEXT("SeSystemtimePrivilege")
3459 #define SE_PROF_SINGLE_PROCESS_NAME     TEXT("SeProfileSingleProcessPrivilege")
3460 #define SE_INC_BASE_PRIORITY_NAME       TEXT("SeIncreaseBasePriorityPrivilege")
3461 #define SE_CREATE_PAGEFILE_NAME         TEXT("SeCreatePagefilePrivilege")
3462 #define SE_CREATE_PERMANENT_NAME        TEXT("SeCreatePermanentPrivilege")
3463 #define SE_BACKUP_NAME                  TEXT("SeBackupPrivilege")
3464 #define SE_RESTORE_NAME                 TEXT("SeRestorePrivilege")
3465 #define SE_SHUTDOWN_NAME                TEXT("SeShutdownPrivilege")
3466 #define SE_DEBUG_NAME                   TEXT("SeDebugPrivilege")
3467 #define SE_AUDIT_NAME                   TEXT("SeAuditPrivilege")
3468 #define SE_SYSTEM_ENVIRONMENT_NAME      TEXT("SeSystemEnvironmentPrivilege")
3469 #define SE_CHANGE_NOTIFY_NAME           TEXT("SeChangeNotifyPrivilege")
3470 #define SE_REMOTE_SHUTDOWN_NAME         TEXT("SeRemoteShutdownPrivilege")
3471 #define SE_UNDOCK_NAME                  TEXT("SeUndockPrivilege")
3472 #define SE_ENABLE_DELEGATION_NAME       TEXT("SeEnableDelegationPrivilege")
3473 #define SE_MANAGE_VOLUME_NAME           TEXT("SeManageVolumePrivilege")
3474 #define SE_IMPERSONATE_NAME             TEXT("SeImpersonatePrivilege")
3475 #define SE_CREATE_GLOBAL_NAME           TEXT("SeCreateGlobalPrivilege")
3476 
3477 #define SE_GROUP_MANDATORY              0x00000001
3478 #define SE_GROUP_ENABLED_BY_DEFAULT     0x00000002
3479 #define SE_GROUP_ENABLED                0x00000004
3480 #define SE_GROUP_OWNER                  0x00000008
3481 #define SE_GROUP_USE_FOR_DENY_ONLY      0x00000010
3482 #define SE_GROUP_LOGON_ID               0xC0000000
3483 #define SE_GROUP_RESOURCE               0x20000000
3484 
3485 #define SE_PRIVILEGE_ENABLED_BY_DEFAULT 0x00000001
3486 #define SE_PRIVILEGE_ENABLED            0x00000002
3487 #define SE_PRIVILEGE_REMOVE             0x00000004
3488 #define SE_PRIVILEGE_USED_FOR_ACCESS    0x80000000
3489 
3490 #define PRIVILEGE_SET_ALL_NECESSARY     1
3491 
3492 #define SE_OWNER_DEFAULTED              0x00000001
3493 #define SE_GROUP_DEFAULTED              0x00000002
3494 #define SE_DACL_PRESENT                 0x00000004
3495 #define SE_DACL_DEFAULTED               0x00000008
3496 #define SE_SACL_PRESENT                 0x00000010
3497 #define SE_SACL_DEFAULTED               0x00000020
3498 #define SE_DACL_AUTO_INHERIT_REQ        0x00000100
3499 #define SE_SACL_AUTO_INHERIT_REQ        0x00000200
3500 #define SE_DACL_AUTO_INHERITED          0x00000400
3501 #define SE_SACL_AUTO_INHERITED          0x00000800
3502 #define SE_DACL_PROTECTED               0x00001000
3503 #define SE_SACL_PROTECTED               0x00002000
3504 #define SE_RM_CONTROL_VALID             0x00004000
3505 #define SE_SELF_RELATIVE                0x00008000
3506 
3507 typedef DWORD SECURITY_INFORMATION, *PSECURITY_INFORMATION;
3508 typedef WORD SECURITY_DESCRIPTOR_CONTROL, *PSECURITY_DESCRIPTOR_CONTROL;
3509 
3510 /* The security descriptor structure */
3511 typedef struct {
3512     BYTE Revision;
3513     BYTE Sbz1;
3514     SECURITY_DESCRIPTOR_CONTROL Control;
3515     DWORD Owner;
3516     DWORD Group;
3517     DWORD Sacl;
3518     DWORD Dacl;
3519 } SECURITY_DESCRIPTOR_RELATIVE, *PISECURITY_DESCRIPTOR_RELATIVE;
3520 
3521 typedef struct {
3522     BYTE Revision;
3523     BYTE Sbz1;
3524     SECURITY_DESCRIPTOR_CONTROL Control;
3525     PSID Owner;
3526     PSID Group;
3527     PACL Sacl;
3528     PACL Dacl;
3529 } SECURITY_DESCRIPTOR, *PISECURITY_DESCRIPTOR;
3530 
3531 #define SECURITY_DESCRIPTOR_MIN_LENGTH   (sizeof(SECURITY_DESCRIPTOR))
3532 
3533 #endif /* _SECURITY_DEFINED */
3534 
3535 /*
3536  * SID_AND_ATTRIBUTES
3537  */
3538 
3539 typedef struct _SID_AND_ATTRIBUTES {
3540   PSID  Sid;
3541   DWORD Attributes;
3542 } SID_AND_ATTRIBUTES, *PSID_AND_ATTRIBUTES;
3543 
3544 /* security entities */
3545 #define SECURITY_NULL_RID                       (0x00000000L)
3546 #define SECURITY_WORLD_RID                      (0x00000000L)
3547 #define SECURITY_LOCAL_RID                      (0X00000000L)
3548 
3549 #define SECURITY_NULL_SID_AUTHORITY             {0,0,0,0,0,0}
3550 
3551 /* S-1-1 */
3552 #define SECURITY_WORLD_SID_AUTHORITY            {0,0,0,0,0,1}
3553 
3554 /* S-1-2 */
3555 #define SECURITY_LOCAL_SID_AUTHORITY            {0,0,0,0,0,2}
3556 
3557 /* S-1-3 */
3558 #define SECURITY_CREATOR_SID_AUTHORITY          {0,0,0,0,0,3}
3559 #define SECURITY_CREATOR_OWNER_RID              (0x00000000L)
3560 #define SECURITY_CREATOR_GROUP_RID              (0x00000001L)
3561 #define SECURITY_CREATOR_OWNER_SERVER_RID       (0x00000002L)
3562 #define SECURITY_CREATOR_GROUP_SERVER_RID       (0x00000003L)
3563 
3564 /* S-1-4 */
3565 #define SECURITY_NON_UNIQUE_AUTHORITY           {0,0,0,0,0,4}
3566 
3567 /* S-1-5 */
3568 #define SECURITY_NT_AUTHORITY                   {0,0,0,0,0,5}
3569 #define SECURITY_DIALUP_RID                     0x00000001L
3570 #define SECURITY_NETWORK_RID                    0x00000002L
3571 #define SECURITY_BATCH_RID                      0x00000003L
3572 #define SECURITY_INTERACTIVE_RID                0x00000004L
3573 #define SECURITY_LOGON_IDS_RID                  0x00000005L
3574 #define SECURITY_SERVICE_RID                    0x00000006L
3575 #define SECURITY_ANONYMOUS_LOGON_RID            0x00000007L
3576 #define SECURITY_PROXY_RID                      0x00000008L
3577 #define SECURITY_ENTERPRISE_CONTROLLERS_RID     0x00000009L
3578 #define SECURITY_SERVER_LOGON_RID               SECURITY_ENTERPRISE_CONTROLLERS_RID
3579 #define SECURITY_PRINCIPAL_SELF_RID             0x0000000AL
3580 #define SECURITY_AUTHENTICATED_USER_RID         0x0000000BL
3581 #define SECURITY_RESTRICTED_CODE_RID            0x0000000CL
3582 #define SECURITY_TERMINAL_SERVER_RID            0x0000000DL
3583 #define SECURITY_REMOTE_LOGON_RID               0x0000000EL
3584 #define SECURITY_THIS_ORGANIZATION_RID          0x0000000FL
3585 #define SECURITY_LOCAL_SYSTEM_RID               0x00000012L
3586 #define SECURITY_LOCAL_SERVICE_RID              0x00000013L
3587 #define SECURITY_NETWORK_SERVICE_RID            0x00000014L
3588 #define SECURITY_NT_NON_UNIQUE                  0x00000015L
3589 #define SECURITY_BUILTIN_DOMAIN_RID             0x00000020L
3590 
3591 #define SECURITY_PACKAGE_BASE_RID               0x00000040L
3592 #define SECURITY_PACKAGE_NTLM_RID               0x0000000AL
3593 #define SECURITY_PACKAGE_SCHANNEL_RID           0x0000000EL
3594 #define SECURITY_PACKAGE_DIGEST_RID             0x00000015L
3595 #define SECURITY_MAX_ALWAYS_FILTERED            0x000003E7L
3596 #define SECURITY_MIN_NEVER_FILTERED             0x000003E8L
3597 #define SECURITY_OTHER_ORGANIZATION_RID         0x000003E8L
3598 
3599 #define FOREST_USER_RID_MAX                     0x000001F3L
3600 #define DOMAIN_USER_RID_ADMIN                   0x000001F4L
3601 #define DOMAIN_USER_RID_GUEST                   0x000001F5L
3602 #define DOMAIN_USER_RID_KRBTGT                  0x000001F6L
3603 #define DOMAIN_USER_RID_MAX                     0x000003E7L
3604 
3605 #define DOMAIN_GROUP_RID_ADMINS                 0x00000200L
3606 #define DOMAIN_GROUP_RID_USERS                  0x00000201L
3607 #define DOMAIN_GROUP_RID_GUESTS                 0x00000202L
3608 #define DOMAIN_GROUP_RID_COMPUTERS              0x00000203L
3609 #define DOMAIN_GROUP_RID_CONTROLLERS            0x00000204L
3610 #define DOMAIN_GROUP_RID_CERT_ADMINS            0x00000205L
3611 #define DOMAIN_GROUP_RID_SCHEMA_ADMINS          0x00000206L
3612 #define DOMAIN_GROUP_RID_ENTERPRISE_ADMINS      0x00000207L
3613 #define DOMAIN_GROUP_RID_POLICY_ADMINS          0x00000208L
3614 
3615 #define DOMAIN_ALIAS_RID_ADMINS                 0x00000220L
3616 #define DOMAIN_ALIAS_RID_USERS                  0x00000221L
3617 #define DOMAIN_ALIAS_RID_GUESTS                 0x00000222L
3618 #define DOMAIN_ALIAS_RID_POWER_USERS            0x00000223L
3619 
3620 #define DOMAIN_ALIAS_RID_ACCOUNT_OPS            0x00000224L
3621 #define DOMAIN_ALIAS_RID_SYSTEM_OPS             0x00000225L
3622 #define DOMAIN_ALIAS_RID_PRINT_OPS              0x00000226L
3623 #define DOMAIN_ALIAS_RID_BACKUP_OPS             0x00000227L
3624 
3625 #define DOMAIN_ALIAS_RID_REPLICATOR             0x00000228L
3626 #define DOMAIN_ALIAS_RID_RAS_SERVERS            0x00000229L
3627 #define DOMAIN_ALIAS_RID_PREW2KCOMPACCESS       0x0000022AL
3628 #define DOMAIN_ALIAS_RID_REMOTE_DESKTOP_USERS   0x0000022BL
3629 #define DOMAIN_ALIAS_RID_NETWORK_CONFIGURATION_OPS 0x0000022CL
3630 #define DOMAIN_ALIAS_RID_INCOMING_FOREST_TRUST_BUILDERS 0x0000022DL
3631 
3632 #define DOMAIN_ALIAS_RID_MONITORING_USERS       0x0000022EL
3633 #define DOMAIN_ALIAS_RID_LOGGING_USERS          0x0000022FL
3634 #define DOMAIN_ALIAS_RID_AUTHORIZATIONACCESS    0x00000230L
3635 #define DOMAIN_ALIAS_RID_TS_LICENSE_SERVERS     0x00000231L