~ [ 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 NTSYSAPI void WINAPI RtlCaptureContext(CONTEXT*);
1458 
1459 /*
1460  * Language IDs
1461  */
1462 
1463 #define MAKELCID(l, s)          (MAKELONG(l, s))
1464 
1465 #define MAKELANGID(p, s)        ((((WORD)(s))<<10) | (WORD)(p))
1466 #define PRIMARYLANGID(l)        ((WORD)(l) & 0x3ff)
1467 #define SUBLANGID(l)            ((WORD)(l) >> 10)
1468 
1469 #define LANGIDFROMLCID(lcid)    ((WORD)(lcid))
1470 #define SORTIDFROMLCID(lcid)    ((WORD)((((DWORD)(lcid)) >> 16) & 0x0f))
1471 
1472 #define LANG_SYSTEM_DEFAULT     (MAKELANGID(LANG_NEUTRAL, SUBLANG_SYS_DEFAULT))
1473 #define LANG_USER_DEFAULT       (MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT))
1474 #define LOCALE_SYSTEM_DEFAULT   (MAKELCID(LANG_SYSTEM_DEFAULT, SORT_DEFAULT))
1475 #define LOCALE_USER_DEFAULT     (MAKELCID(LANG_USER_DEFAULT, SORT_DEFAULT))
1476 #define LOCALE_NEUTRAL          (MAKELCID(MAKELANGID(LANG_NEUTRAL,SUBLANG_NEUTRAL),SORT_DEFAULT))
1477 
1478 #define UNREFERENCED_PARAMETER(u)       (void)(u)
1479 #define DBG_UNREFERENCED_PARAMETER(u)   (void)(u)
1480 #define DBG_UNREFERENCED_LOCAL_VARIABLE(u) (void)(u)
1481 
1482 #define LANG_NEUTRAL        0x00
1483 #define LANG_INVARIANT      0x7f
1484 
1485 #define LANG_AFRIKAANS      0x36
1486 #define LANG_ALBANIAN       0x1c
1487 #define LANG_ALSATIAN       0x84
1488 #define LANG_AMHARIC        0x5e
1489 #define LANG_ARABIC         0x01
1490 #define LANG_ARMENIAN       0x2b
1491 #define LANG_ASSAMESE       0x4d
1492 #define LANG_AZERI          0x2c
1493 #define LANG_BASHKIR        0x6d
1494 #define LANG_BASQUE         0x2d
1495 #define LANG_BELARUSIAN     0x23
1496 #define LANG_BENGALI        0x45
1497 #define LANG_BOSNIAN        0x1a
1498 #define LANG_BOSNIAN_NEUTRAL      0x781a
1499 #define LANG_BRETON         0x7e
1500 #define LANG_BULGARIAN      0x02
1501 #define LANG_CATALAN        0x03
1502 #define LANG_CHINESE        0x04
1503 #define LANG_CHINESE_SIMPLIFIED   0x0004
1504 #define LANG_CHINESE_TRADITIONAL  0x7c04
1505 #define LANG_CORSICAN       0x83
1506 #define LANG_CROATIAN       0x1a
1507 #define LANG_CZECH          0x05
1508 #define LANG_DANISH         0x06
1509 #define LANG_DARI           0x8c
1510 #define LANG_DIVEHI         0x65
1511 #define LANG_DUTCH          0x13
1512 #define LANG_ENGLISH        0x09
1513 #define LANG_ESTONIAN       0x25
1514 #define LANG_FAEROESE       0x38
1515 #define LANG_FARSI          LANG_PERSIAN
1516 #define LANG_FILIPINO       0x64
1517 #define LANG_FINNISH        0x0b
1518 #define LANG_FRENCH         0x0c
1519 #define LANG_FRISIAN        0x62
1520 #define LANG_GALICIAN       0x56
1521 #define LANG_GEORGIAN       0x37
1522 #define LANG_GERMAN         0x07
1523 #define LANG_GREEK          0x08
1524 #define LANG_GREENLANDIC    0x6f
1525 #define LANG_GUJARATI       0x47
1526 #define LANG_HAUSA          0x68
1527 #define LANG_HEBREW         0x0d
1528 #define LANG_HINDI          0x39
1529 #define LANG_HUNGARIAN      0x0e
1530 #define LANG_ICELANDIC      0x0f
1531 #define LANG_IGBO           0x70
1532 #define LANG_INDONESIAN     0x21
1533 #define LANG_INUKTITUT      0x5d
1534 #define LANG_IRISH          0x3c
1535 #define LANG_ITALIAN        0x10
1536 #define LANG_JAPANESE       0x11
1537 #define LANG_KANNADA        0x4b
1538 #define LANG_KASHMIRI       0x60
1539 #define LANG_KAZAK          0x3f
1540 #define LANG_KHMER          0x53
1541 #define LANG_KICHE          0x86
1542 #define LANG_KINYARWANDA    0x87
1543 #define LANG_KONKANI        0x57
1544 #define LANG_KOREAN         0x12
1545 #define LANG_KYRGYZ         0x40
1546 #define LANG_LAO            0x54
1547 #define LANG_LATVIAN        0x26
1548 #define LANG_LITHUANIAN     0x27
1549 #define LANG_LOWER_SORBIAN  0x2e
1550 #define LANG_LUXEMBOURGISH  0x6e
1551 #define LANG_MACEDONIAN     0x2f
1552 #define LANG_MALAY          0x3e
1553 #define LANG_MALAYALAM      0x4c
1554 #define LANG_MALTESE        0x3a
1555 #define LANG_MANIPURI       0x58
1556 #define LANG_MAORI          0x81
1557 #define LANG_MAPUDUNGUN     0x7a
1558 #define LANG_MARATHI        0x4e
1559 #define LANG_MOHAWK         0x7c
1560 #define LANG_MONGOLIAN      0x50
1561 #define LANG_NEPALI         0x61
1562 #define LANG_NORWEGIAN      0x14
1563 #define LANG_OCCITAN        0x82
1564 #define LANG_ORIYA          0x48
1565 #define LANG_PASHTO         0x63
1566 #define LANG_PERSIAN        0x29
1567 #define LANG_POLISH         0x15
1568 #define LANG_PORTUGUESE     0x16
1569 #define LANG_PUNJABI        0x46
1570 #define LANG_QUECHUA        0x6b
1571 #define LANG_ROMANIAN       0x18
1572 #define LANG_ROMANSH        0x17
1573 #define LANG_RUSSIAN        0x19
1574 #define LANG_SAMI           0x3b
1575 #define LANG_SANSKRIT       0x4f
1576 #define LANG_SERBIAN        0x1a
1577 #define LANG_SERBIAN_NEUTRAL      0x7c1a
1578 #define LANG_SINDHI         0x59
1579 #define LANG_SINHALESE      0x5b
1580 #define LANG_SLOVAK         0x1b
1581 #define LANG_SLOVENIAN      0x24
1582 #define LANG_SOTHO          0x6c
1583 #define LANG_SPANISH        0x0a
1584 #define LANG_SWAHILI        0x41
1585 #define LANG_SWEDISH        0x1d
1586 #define LANG_SYRIAC         0x5a
1587 #define LANG_TAJIK          0x28
1588 #define LANG_TAMAZIGHT      0x5f
1589 #define LANG_TAMIL          0x49
1590 #define LANG_TATAR          0x44
1591 #define LANG_TELUGU         0x4a
1592 #define LANG_THAI           0x1e
1593 #define LANG_TIBETAN        0x51
1594 #define LANG_TIGRIGNA       0x73
1595 #define LANG_TSWANA         0x32
1596 #define LANG_TURKISH        0x1f
1597 #define LANG_TURKMEN        0x42
1598 #define LANG_UIGHUR         0x80
1599 #define LANG_UKRAINIAN      0x22
1600 #define LANG_UPPER_SORBIAN  0x2e
1601 #define LANG_URDU           0x20
1602 #define LANG_UZBEK          0x43
1603 #define LANG_VIETNAMESE     0x2a
1604 #define LANG_WELSH          0x52
1605 #define LANG_WOLOF          0x88
1606 #define LANG_XHOSA          0x34
1607 #define LANG_YAKUT          0x85
1608 #define LANG_YI             0x78
1609 #define LANG_YORUBA         0x6a
1610 #define LANG_ZULU           0x35
1611 
1612 /* These are documented by the MSDN but are missing from the Windows header */
1613 #define LANG_MALAGASY       0x8d
1614 
1615 /* FIXME: these are not defined anywhere */
1616 #define LANG_SUTU           0x30
1617 #define LANG_TSONGA         0x31
1618 #define LANG_VENDA          0x33
1619 
1620 /* non standard; keep the number high enough (but < 0xff) */
1621 #define LANG_ESPERANTO                   0x8f
1622 #define LANG_WALON                       0x90
1623 #define LANG_CORNISH                     0x91
1624 #define LANG_GAELIC                      0x94
1625 
1626 /* Sublanguage definitions */
1627 #define SUBLANG_NEUTRAL                  0x00    /* language neutral */
1628 #define SUBLANG_DEFAULT                  0x01    /* user default */
1629 #define SUBLANG_SYS_DEFAULT              0x02    /* system default */
1630 #define SUBLANG_CUSTOM_DEFAULT           0x03
1631 #define SUBLANG_CUSTOM_UNSPECIFIED       0x04
1632 #define SUBLANG_UI_CUSTOM_DEFAULT        0x05
1633 
1634 #define SUBLANG_AFRIKAANS_SOUTH_AFRICA     0x01
1635 #define SUBLANG_ALBANIAN_ALBANIA           0x01
1636 #define SUBLANG_ALSATIAN_FRANCE            0x01
1637 #define SUBLANG_AMHARIC_ETHIOPIA           0x01
1638 #define SUBLANG_ARABIC_SAUDI_ARABIA        0x01
1639 #define SUBLANG_ARABIC_IRAQ                0x02
1640 #define SUBLANG_ARABIC_EGYPT               0x03
1641 #define SUBLANG_ARABIC_LIBYA               0x04
1642 #define SUBLANG_ARABIC_ALGERIA             0x05
1643 #define SUBLANG_ARABIC_MOROCCO             0x06
1644 #define SUBLANG_ARABIC_TUNISIA             0x07
1645 #define SUBLANG_ARABIC_OMAN                0x08
1646 #define SUBLANG_ARABIC_YEMEN               0x09
1647 #define SUBLANG_ARABIC_SYRIA               0x0a
1648 #define SUBLANG_ARABIC_JORDAN              0x0b
1649 #define SUBLANG_ARABIC_LEBANON             0x0c
1650 #define SUBLANG_ARABIC_KUWAIT              0x0d
1651 #define SUBLANG_ARABIC_UAE                 0x0e
1652 #define SUBLANG_ARABIC_BAHRAIN             0x0f
1653 #define SUBLANG_ARABIC_QATAR               0x10
1654 #define SUBLANG_ARMENIAN_ARMENIA           0x01
1655 #define SUBLANG_ASSAMESE_INDIA             0x01
1656 #define SUBLANG_AZERI_LATIN                0x01
1657 #define SUBLANG_AZERI_CYRILLIC             0x02
1658 #define SUBLANG_BASHKIR_RUSSIA             0x01
1659 #define SUBLANG_BASQUE_BASQUE              0x01
1660 #define SUBLANG_BELARUSIAN_BELARUS         0x01
1661 #define SUBLANG_BENGALI_INDIA              0x01
1662 #define SUBLANG_BENGALI_BANGLADESH         0x02
1663 #define SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN 0x05
1664 #define SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC 0x08
1665 #define SUBLANG_BRETON_FRANCE              0x01
1666 #define SUBLANG_BULGARIAN_BULGARIA         0x01
1667 #define SUBLANG_CATALAN_CATALAN            0x01
1668 #define SUBLANG_CHINESE_TRADITIONAL        0x01
1669 #define SUBLANG_CHINESE_SIMPLIFIED         0x02
1670 #define SUBLANG_CHINESE_HONGKONG           0x03
1671 #define SUBLANG_CHINESE_SINGAPORE          0x04
1672 #define SUBLANG_CHINESE_MACAU              0x05
1673 #define SUBLANG_CORSICAN_FRANCE            0x01
1674 #define SUBLANG_CROATIAN_CROATIA           0x01
1675 #define SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN 0x04
1676 #define SUBLANG_CZECH_CZECH_REPUBLIC       0x01
1677 #define SUBLANG_DANISH_DENMARK             0x01
1678 #define SUBLANG_DARI_AFGHANISTAN           0x01
1679 #define SUBLANG_DIVEHI_MALDIVES            0x01
1680 #define SUBLANG_DUTCH                      0x01
1681 #define SUBLANG_DUTCH_BELGIAN              0x02
1682 #define SUBLANG_ENGLISH_US                 0x01
1683 #define SUBLANG_ENGLISH_UK                 0x02
1684 #define SUBLANG_ENGLISH_AUS                0x03
1685 #define SUBLANG_ENGLISH_CAN                0x04
1686 #define SUBLANG_ENGLISH_NZ                 0x05
1687 #define SUBLANG_ENGLISH_EIRE               0x06
1688 #define SUBLANG_ENGLISH_SOUTH_AFRICA       0x07
1689 #define SUBLANG_ENGLISH_JAMAICA            0x08
1690 #define SUBLANG_ENGLISH_CARIBBEAN          0x09
1691 #define SUBLANG_ENGLISH_BELIZE             0x0a
1692 #define SUBLANG_ENGLISH_TRINIDAD           0x0b
1693 #define SUBLANG_ENGLISH_ZIMBABWE           0x0c
1694 #define SUBLANG_ENGLISH_PHILIPPINES        0x0d
1695 #define SUBLANG_ENGLISH_INDIA              0x10
1696 #define SUBLANG_ENGLISH_MALAYSIA           0x11
1697 #define SUBLANG_ENGLISH_SINGAPORE          0x12
1698 #define SUBLANG_ESTONIAN_ESTONIA           0x01
1699 #define SUBLANG_FAEROESE_FAROE_ISLANDS     0x01
1700 #define SUBLANG_FILIPINO_PHILIPPINES       0x01
1701 #define SUBLANG_FINNISH_FINLAND            0x01
1702 #define SUBLANG_FRENCH                     0x01
1703 #define SUBLANG_FRENCH_BELGIAN             0x02
1704 #define SUBLANG_FRENCH_CANADIAN            0x03
1705 #define SUBLANG_FRENCH_SWISS               0x04
1706 #define SUBLANG_FRENCH_LUXEMBOURG          0x05
1707 #define SUBLANG_FRENCH_MONACO              0x06
1708 #define SUBLANG_FRISIAN_NETHERLANDS        0x01
1709 #define SUBLANG_GALICIAN_GALICIAN          0x01
1710 #define SUBLANG_GEORGIAN_GEORGIA           0x01
1711 #define SUBLANG_GERMAN                     0x01
1712 #define SUBLANG_GERMAN_SWISS               0x02
1713 #define SUBLANG_GERMAN_AUSTRIAN            0x03
1714 #define SUBLANG_GERMAN_LUXEMBOURG          0x04
1715 #define SUBLANG_GERMAN_LIECHTENSTEIN       0x05
1716 #define SUBLANG_GREEK_GREECE               0x01
1717 #define SUBLANG_GREENLANDIC_GREENLAND      0x01
1718 #define SUBLANG_GUJARATI_INDIA             0x01
1719 #define SUBLANG_HAUSA_NIGERIA_LATIN        0x01
1720 #define SUBLANG_HEBREW_ISRAEL              0x01
1721 #define SUBLANG_HINDI_INDIA                0x01
1722 #define SUBLANG_HUNGARIAN_HUNGARY          0x01
1723 #define SUBLANG_ICELANDIC_ICELAND          0x01
1724 #define SUBLANG_IGBO_NIGERIA               0x01
1725 #define SUBLANG_INDONESIAN_INDONESIA       0x01
1726 #define SUBLANG_INUKTITUT_CANADA           0x01
1727 #define SUBLANG_INUKTITUT_CANADA_LATIN     0x02
1728 #define SUBLANG_IRISH_IRELAND              0x02
1729 #define SUBLANG_ITALIAN                    0x01
1730 #define SUBLANG_ITALIAN_SWISS              0x02
1731 #define SUBLANG_JAPANESE_JAPAN             0x01
1732 #define SUBLANG_KANNADA_INDIA              0x01
1733 #define SUBLANG_KASHMIRI_SASIA             0x02
1734 #define SUBLANG_KASHMIRI_INDIA             0x02
1735 #define SUBLANG_KAZAK_KAZAKHSTAN           0x01
1736 #define SUBLANG_KHMER_CAMBODIA             0x01
1737 #define SUBLANG_KICHE_GUATEMALA            0x01
1738 #define SUBLANG_KINYARWANDA_RWANDA         0X01
1739 #define SUBLANG_KONKANI_INDIA              0x01
1740 #define SUBLANG_KOREAN                     0x01
1741 #define SUBLANG_KYRGYZ_KYRGYZSTAN          0x01
1742 #define SUBLANG_LAO_LAO                    0x01
1743 #define SUBLANG_LATVIAN_LATVIA             0x01
1744 #define SUBLANG_LITHUANIAN_LITHUANIA       0x01
1745 #define SUBLANG_LOWER_SORBIAN_GERMANY      0x02
1746 #define SUBLANG_LUXEMBOURGISH_LUXEMBOURG   0x01
1747 #define SUBLANG_MACEDONIAN_MACEDONIA       0x01
1748 #define SUBLANG_MALAY_MALAYSIA             0x01
1749 #define SUBLANG_MALAY_BRUNEI_DARUSSALAM    0x02
1750 #define SUBLANG_MALAYALAM_INDIA            0x01
1751 #define SUBLANG_MALTESE_MALTA              0x01
1752 #define SUBLANG_MAORI_NEW_ZEALAND          0x01
1753 #define SUBLANG_MAPUDUNGUN_CHILE           0x01
1754 #define SUBLANG_MARATHI_INDIA              0x01
1755 #define SUBLANG_MOHAWK_MOHAWK              0x01
1756 #define SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA 0x01
1757 #define SUBLANG_MONGOLIAN_PRC              0x02
1758 #define SUBLANG_NEPALI_INDIA               0x02
1759 #define SUBLANG_NEPALI_NEPAL               0x01
1760 #define SUBLANG_NORWEGIAN_BOKMAL           0x01
1761 #define SUBLANG_NORWEGIAN_NYNORSK          0x02
1762 #define SUBLANG_OCCITAN_FRANCE             0x01
1763 #define SUBLANG_ORIYA_INDIA                0x01
1764 #define SUBLANG_PASHTO_AFGHANISTAN         0x01
1765 #define SUBLANG_PERSIAN_IRAN               0x01
1766 #define SUBLANG_POLISH_POLAND              0x01
1767 #define SUBLANG_PORTUGUESE                 0x02
1768 #define SUBLANG_PORTUGUESE_BRAZILIAN       0x01
1769 #define SUBLANG_PUNJABI_INDIA              0x01
1770 #define SUBLANG_QUECHUA_BOLIVIA            0x01
1771 #define SUBLANG_QUECHUA_ECUADOR            0x02
1772 #define SUBLANG_QUECHUA_PERU               0x03
1773 #define SUBLANG_ROMANIAN_ROMANIA           0x01
1774 #define SUBLANG_ROMANSH_SWITZERLAND        0x01
1775 #define SUBLANG_RUSSIAN_RUSSIA             0x01
1776 #define SUBLANG_SAMI_NORTHERN_NORWAY       0x01
1777 #define SUBLANG_SAMI_NORTHERN_SWEDEN       0x02
1778 #define SUBLANG_SAMI_NORTHERN_FINLAND      0x03
1779 #define SUBLANG_SAMI_LULE_NORWAY           0x04
1780 #define SUBLANG_SAMI_LULE_SWEDEN           0x05
1781 #define SUBLANG_SAMI_SOUTHERN_NORWAY       0x06
1782 #define SUBLANG_SAMI_SOUTHERN_SWEDEN       0x07
1783 #define SUBLANG_SAMI_SKOLT_FINLAND         0x08
1784 #define SUBLANG_SAMI_INARI_FINLAND         0x09
1785 #define SUBLANG_SANSKRIT_INDIA             0x01
1786 #define SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_LATIN 0x06
1787 #define SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_CYRILLIC 0x07
1788 #define SUBLANG_SERBIAN_CROATIA            0x01
1789 #define SUBLANG_SERBIAN_LATIN              0x02
1790 #define SUBLANG_SERBIAN_CYRILLIC           0x03
1791 #define SUBLANG_SINDHI_AFGHANISTAN         0x02
1792 #define SUBLANG_SINHALESE_SRI_LANKA        0x01
1793 #define SUBLANG_SLOVAK_SLOVAKIA            0x01
1794 #define SUBLANG_SLOVENIAN_SLOVENIA         0x01
1795 #define SUBLANG_SOTHO_NORTHERN_SOUTH_AFRICA 0x01
1796 #define SUBLANG_SPANISH                    0x01
1797 #define SUBLANG_SPANISH_MEXICAN            0x02
1798 #define SUBLANG_SPANISH_MODERN             0x03
1799 #define SUBLANG_SPANISH_GUATEMALA          0x04
1800 #define SUBLANG_SPANISH_COSTA_RICA         0x05
1801 #define SUBLANG_SPANISH_PANAMA             0x06
1802 #define SUBLANG_SPANISH_DOMINICAN_REPUBLIC 0x07
1803 #define SUBLANG_SPANISH_VENEZUELA          0x08
1804 #define SUBLANG_SPANISH_COLOMBIA           0x09
1805 #define SUBLANG_SPANISH_PERU               0x0a
1806 #define SUBLANG_SPANISH_ARGENTINA          0x0b
1807 #define SUBLANG_SPANISH_ECUADOR            0x0c
1808 #define SUBLANG_SPANISH_CHILE              0x0d
1809 #define SUBLANG_SPANISH_URUGUAY            0x0e
1810 #define SUBLANG_SPANISH_PARAGUAY           0x0f
1811 #define SUBLANG_SPANISH_BOLIVIA            0x10
1812 #define SUBLANG_SPANISH_EL_SALVADOR        0x11
1813 #define SUBLANG_SPANISH_HONDURAS           0x12
1814 #define SUBLANG_SPANISH_NICARAGUA          0x13
1815 #define SUBLANG_SPANISH_PUERTO_RICO        0x14
1816 #define SUBLANG_SPANISH_US                 0x15
1817 #define SUBLANG_SWAHILI_KENYA              0x01
1818 #define SUBLANG_SWEDISH                    0x01
1819 #define SUBLANG_SWEDISH_FINLAND            0x02
1820 #define SUBLANG_SYRIAC_SYRIA               0x01
1821 #define SUBLANG_TAJIK_TAJIKISTAN           0x01
1822 #define SUBLANG_TAMAZIGHT_ALGERIA_LATIN    0x02
1823 #define SUBLANG_TAMIL_INDIA                0x01
1824 #define SUBLANG_TATAR_RUSSIA               0x01
1825 #define SUBLANG_TELUGU_INDIA               0x01
1826 #define SUBLANG_THAI_THAILAND              0x01
1827 #define SUBLANG_TIBETAN_PRC                0x01
1828 #define SUBLANG_TIBETAN_BHUTAN             0x02
1829 #define SUBLANG_TIGRIGNA_ERITREA           0x02
1830 #define SUBLANG_TSWANA_SOUTH_AFRICA        0x01
1831 #define SUBLANG_TURKISH_TURKEY             0x01
1832 #define SUBLANG_TURKMEN_TURKMENISTAN       0x01
1833 #define SUBLANG_UIGHUR_PRC                 0x01
1834 #define SUBLANG_UKRAINIAN_UKRAINE          0x01
1835 #define SUBLANG_UPPER_SORBIAN_GERMANY      0x01
1836 #define SUBLANG_URDU_PAKISTAN              0x01
1837 #define SUBLANG_URDU_INDIA                 0x02
1838 #define SUBLANG_UZBEK_LATIN                0x01
1839 #define SUBLANG_UZBEK_CYRILLIC             0x02
1840 #define SUBLANG_VIETNAMESE_VIETNAM         0x01
1841 #define SUBLANG_WELSH_UNITED_KINGDOM       0x01
1842 #define SUBLANG_WOLOF_SENEGAL              0x01
1843 #define SUBLANG_XHOSA_SOUTH_AFRICA         0x01
1844 #define SUBLANG_YAKUT_RUSSIA               0x01
1845 #define SUBLANG_YI_PRC                     0x01
1846 #define SUBLANG_YORUBA_NIGERIA             0x01
1847 #define SUBLANG_ZULU_SOUTH_AFRICA          0x01
1848 
1849 /* These are documented by the MSDN but are missing from the Windows header */
1850 #define SUBLANG_ENGLISH_IRELAND            SUBLANG_ENGLISH_EIRE
1851 #define SUBLANG_HAUSA_NIGERIA              SUBLANG_HAUSA_NIGERIA_LATIN
1852 #define SUBLANG_LAO_LAO_PDR                SUBLANG_LAO_LAO
1853 #define SUBLANG_LITHUANIAN                 SUBLANG_LITHUANIAN_LITHUANIA
1854 #define SUBLANG_PORTUGUESE_PORTUGAL        SUBLANG_PORTUGUESE
1855 #define SUBLANG_SWAHILI                    SUBLANG_SWAHILI_KENYA
1856 #define SUBLANG_SWEDISH_SWEDEN             SUBLANG_SWEDISH
1857 #define SUBLANG_SYRIAC                     SUBLANG_SYRIAC_SYRIA
1858 
1859 /* FIXME: these are not defined anywhere */
1860 #define SUBLANG_DUTCH_SURINAM              0x03
1861 #define SUBLANG_ROMANIAN                   SUBLANG_ROMANIAN_ROMANIA
1862 #define SUBLANG_ROMANIAN_MOLDAVIA          0x02
1863 #define SUBLANG_RUSSIAN                    SUBLANG_RUSSIAN_RUSSIA
1864 #define SUBLANG_RUSSIAN_MOLDAVIA           0x02
1865 #define SUBLANG_CROATIAN                   SUBLANG_CROATIAN_CROATIA
1866 #define SUBLANG_LITHUANIAN_CLASSIC         0x02
1867 #define SUBLANG_GAELIC                     0x01
1868 #define SUBLANG_GAELIC_SCOTTISH            0x02
1869 #define SUBLANG_GAELIC_MANX                0x03
1870 
1871 
1872 /*
1873  * Sort definitions
1874  */
1875 
1876 #define SORT_DEFAULT                     0x0
1877 #define SORT_JAPANESE_XJIS               0x0
1878 #define SORT_JAPANESE_UNICODE            0x1
1879 #define SORT_CHINESE_BIG5                0x0
1880 #define SORT_CHINESE_UNICODE             0x1
1881 #define SORT_KOREAN_KSC                  0x0
1882 #define SORT_KOREAN_UNICODE              0x1
1883 
1884 
1885 
1886 /*
1887  * Definitions for IsTextUnicode()
1888  */
1889 
1890 #define IS_TEXT_UNICODE_ASCII16            0x0001
1891 #define IS_TEXT_UNICODE_STATISTICS         0x0002
1892 #define IS_TEXT_UNICODE_CONTROLS           0x0004
1893 #define IS_TEXT_UNICODE_SIGNATURE          0x0008
1894 #define IS_TEXT_UNICODE_UNICODE_MASK       0x000F
1895 #define IS_TEXT_UNICODE_REVERSE_ASCII16    0x0010
1896 #define IS_TEXT_UNICODE_REVERSE_STATISTICS 0x0020
1897 #define IS_TEXT_UNICODE_REVERSE_CONTROLS   0x0040
1898 #define IS_TEXT_UNICODE_REVERSE_SIGNATURE  0x0080
1899 #define IS_TEXT_UNICODE_REVERSE_MASK       0x00F0
1900 #define IS_TEXT_UNICODE_ILLEGAL_CHARS      0x0100
1901 #define IS_TEXT_UNICODE_ODD_LENGTH         0x0200
1902 #define IS_TEXT_UNICODE_DBCS_LEADBYTE      0x0400
1903 #define IS_TEXT_UNICODE_NOT_UNICODE_MASK   0x0F00
1904 #define IS_TEXT_UNICODE_NULL_BYTES         0x1000
1905 #define IS_TEXT_UNICODE_NOT_ASCII_MASK     0xF000
1906 
1907 #define MAXIMUM_WAIT_OBJECTS 64
1908 #define MAXIMUM_SUSPEND_COUNT 127
1909 
1910 #define WT_EXECUTEDEFAULT              0x00
1911 #define WT_EXECUTEINIOTHREAD           0x01
1912 #define WT_EXECUTEINUITHREAD           0x02
1913 #define WT_EXECUTEINWAITTHREAD         0x04
1914 #define WT_EXECUTEONLYONCE             0x08
1915 #define WT_EXECUTELONGFUNCTION         0x10
1916 #define WT_EXECUTEINTIMERTHREAD        0x20
1917 #define WT_EXECUTEINPERSISTENTIOTHREAD 0x40
1918 #define WT_EXECUTEINPERSISTENTTHREAD   0x80
1919 #define WT_EXECUTEINLONGTHREAD         0x10
1920 #define WT_EXECUTEDELETEWAIT           0x08
1921 #define WT_TRANSFER_IMPERSONATION      0x0100
1922 
1923 
1924 #define EXCEPTION_CONTINUABLE        0
1925 #define EXCEPTION_NONCONTINUABLE     0x01
1926 
1927 /*
1928  * The exception record used by Win32 to give additional information
1929  * about exception to exception handlers.
1930  */
1931 
1932 #define EXCEPTION_MAXIMUM_PARAMETERS 15
1933 
1934 typedef struct _EXCEPTION_RECORD
1935 {
1936     DWORD    ExceptionCode;
1937     DWORD    ExceptionFlags;
1938     struct  _EXCEPTION_RECORD *ExceptionRecord;
1939 
1940     PVOID    ExceptionAddress;
1941     DWORD    NumberParameters;
1942     ULONG_PTR ExceptionInformation[EXCEPTION_MAXIMUM_PARAMETERS];
1943 } EXCEPTION_RECORD, *PEXCEPTION_RECORD;
1944 
1945 /*
1946  * The exception pointers structure passed to exception filters
1947  * in except() and the UnhandledExceptionFilter().
1948  */
1949 
1950 typedef struct _EXCEPTION_POINTERS
1951 {
1952   PEXCEPTION_RECORD  ExceptionRecord;
1953   PCONTEXT           ContextRecord;
1954 } EXCEPTION_POINTERS, *PEXCEPTION_POINTERS;
1955 
1956 
1957 /*
1958  * The exception frame, used for registering exception handlers
1959  * Win32 cares only about this, but compilers generally emit
1960  * larger exception frames for their own use.
1961  */
1962 
1963 struct _EXCEPTION_REGISTRATION_RECORD;
1964 
1965 typedef DWORD (*PEXCEPTION_HANDLER)(PEXCEPTION_RECORD,struct _EXCEPTION_REGISTRATION_RECORD*,
1966                                     PCONTEXT,struct _EXCEPTION_REGISTRATION_RECORD **);
1967 
1968 typedef struct _EXCEPTION_REGISTRATION_RECORD
1969 {
1970   struct _EXCEPTION_REGISTRATION_RECORD *Prev;
1971   PEXCEPTION_HANDLER       Handler;
1972 } EXCEPTION_REGISTRATION_RECORD;
1973 
1974 /*
1975  * function pointer to an exception filter
1976  */
1977 
1978 typedef LONG (CALLBACK *PVECTORED_EXCEPTION_HANDLER)(PEXCEPTION_POINTERS ExceptionInfo);
1979 
1980 typedef struct _NT_TIB
1981 {
1982         struct _EXCEPTION_REGISTRATION_RECORD *ExceptionList;
1983         PVOID StackBase;
1984         PVOID StackLimit;
1985         PVOID SubSystemTib;
1986         union {
1987           PVOID FiberData;
1988           DWORD Version;
1989         } DUMMYUNIONNAME;
1990         PVOID ArbitraryUserPointer;
1991         struct _NT_TIB *Self;
1992 } NT_TIB, *PNT_TIB;
1993 
1994 struct _TEB;
1995 
1996 #if defined(__i386__) && defined(__GNUC__)
1997 extern inline struct _TEB * WINAPI NtCurrentTeb(void);
1998 extern inline struct _TEB * WINAPI NtCurrentTeb(void)
1999 {
2000     struct _TEB *teb;
2001     __asm__(".byte 0x64\n\tmovl (0x18),%0" : "=r" (teb));
2002     return teb;
2003 }
2004 #elif defined(__i386__) && defined(_MSC_VER)
2005 extern inline struct _TEB * WINAPI NtCurrentTeb(void)
2006 {
2007   struct _TEB *teb;
2008   __asm mov eax, fs:[0x18];
2009   __asm mov teb, eax;
2010   return teb;
2011 }
2012 #elif defined(__x86_64__) && defined(__GNUC__)
2013 extern inline struct _TEB * WINAPI NtCurrentTeb(void)
2014 {
2015     struct _TEB *teb;
2016     __asm__(".byte 0x65\n\tmovq (0x30),%0" : "=r" (teb));
2017     return teb;
2018 }
2019 #elif defined(__x86_64__) && defined (_MSC_VER)
2020 extern inline struct _TEB * WINAPI NtCurrentTeb(void)
2021 {
2022   struct _TEB *teb;
2023   __asm mov rax, gs:[0x30];
2024   __asm mov teb, rax;
2025   return teb;
2026 }
2027 #else
2028 extern struct _TEB * WINAPI NtCurrentTeb(void);
2029 #endif
2030 
2031 #ifdef NONAMELESSUNION
2032 #define GetCurrentFiber()  (((NT_TIB *)NtCurrentTeb())->u.FiberData)
2033 #else
2034 #define GetCurrentFiber()  (((NT_TIB *)NtCurrentTeb())->FiberData)
2035 #endif
2036 #define GetFiberData()     (*(void **)GetCurrentFiber())
2037 
2038 #define TLS_MINIMUM_AVAILABLE 64
2039 
2040 /*
2041  * File formats definitions
2042  */
2043 
2044 #include <pshpack2.h>
2045 typedef struct _IMAGE_DOS_HEADER {
2046     WORD  e_magic;      /* 00: MZ Header signature */
2047     WORD  e_cblp;       /* 02: Bytes on last page of file */
2048     WORD  e_cp;         /* 04: Pages in file */
2049     WORD  e_crlc;       /* 06: Relocations */
2050     WORD  e_cparhdr;    /* 08: Size of header in paragraphs */
2051     WORD  e_minalloc;   /* 0a: Minimum extra paragraphs needed */
2052     WORD  e_maxalloc;   /* 0c: Maximum extra paragraphs needed */
2053     WORD  e_ss;         /* 0e: Initial (relative) SS value */
2054     WORD  e_sp;         /* 10: Initial SP value */
2055     WORD  e_csum;       /* 12: Checksum */
2056     WORD  e_ip;         /* 14: Initial IP value */
2057     WORD  e_cs;         /* 16: Initial (relative) CS value */
2058     WORD  e_lfarlc;     /* 18: File address of relocation table */
2059     WORD  e_ovno;       /* 1a: Overlay number */
2060     WORD  e_res[4];     /* 1c: Reserved words */
2061     WORD  e_oemid;      /* 24: OEM identifier (for e_oeminfo) */
2062     WORD  e_oeminfo;    /* 26: OEM information; e_oemid specific */
2063     WORD  e_res2[10];   /* 28: Reserved words */
2064     DWORD e_lfanew;     /* 3c: Offset to extended header */
2065 } IMAGE_DOS_HEADER, *PIMAGE_DOS_HEADER;
2066 #include <poppack.h>
2067 
2068 #define IMAGE_DOS_SIGNATURE    0x5A4D     /* MZ   */
2069 #define IMAGE_OS2_SIGNATURE    0x454E     /* NE   */
2070 #define IMAGE_OS2_SIGNATURE_LE 0x454C     /* LE   */
2071 #define IMAGE_OS2_SIGNATURE_LX 0x584C     /* LX */
2072 #define IMAGE_VXD_SIGNATURE    0x454C     /* LE   */
2073 #define IMAGE_NT_SIGNATURE     0x00004550 /* PE00 */
2074 
2075 /*
2076  * This is the Windows executable (NE) header.
2077  * the name IMAGE_OS2_HEADER is misleading, but in the SDK this way.
2078  */
2079 #include <pshpack2.h>
2080 typedef struct
2081 {
2082     WORD  ne_magic;             /* 00 NE signature 'NE' */
2083     BYTE  ne_ver;               /* 02 Linker version number */
2084     BYTE  ne_rev;               /* 03 Linker revision number */
2085     WORD  ne_enttab;            /* 04 Offset to entry table relative to NE */
2086     WORD  ne_cbenttab;          /* 06 Length of entry table in bytes */
2087     LONG  ne_crc;               /* 08 Checksum */
2088     WORD  ne_flags;             /* 0c Flags about segments in this file */
2089     WORD  ne_autodata;          /* 0e Automatic data segment number */
2090     WORD  ne_heap;              /* 10 Initial size of local heap */
2091     WORD  ne_stack;             /* 12 Initial size of stack */
2092     DWORD ne_csip;              /* 14 Initial CS:IP */
2093     DWORD ne_sssp;              /* 18 Initial SS:SP */
2094     WORD  ne_cseg;              /* 1c # of entries in segment table */
2095     WORD  ne_cmod;              /* 1e # of entries in module reference tab. */
2096     WORD  ne_cbnrestab;         /* 20 Length of nonresident-name table     */
2097     WORD  ne_segtab;            /* 22 Offset to segment table */
2098     WORD  ne_rsrctab;           /* 24 Offset to resource table */
2099     WORD  ne_restab;            /* 26 Offset to resident-name table */
2100     WORD  ne_modtab;            /* 28 Offset to module reference table */
2101     WORD  ne_imptab;            /* 2a Offset to imported name table */
2102     DWORD ne_nrestab;           /* 2c Offset to nonresident-name table */
2103     WORD  ne_cmovent;           /* 30 # of movable entry points */
2104     WORD  ne_align;             /* 32 Logical sector alignment shift count */
2105     WORD  ne_cres;              /* 34 # of resource segments */
2106     BYTE  ne_exetyp;            /* 36 Flags indicating target OS */
2107     BYTE  ne_flagsothers;       /* 37 Additional information flags */
2108     WORD  ne_pretthunks;        /* 38 Offset to return thunks */
2109     WORD  ne_psegrefbytes;      /* 3a Offset to segment ref. bytes */
2110     WORD  ne_swaparea;          /* 3c Reserved by Microsoft */
2111     WORD  ne_expver;            /* 3e Expected Windows version number */
2112 } IMAGE_OS2_HEADER, *PIMAGE_OS2_HEADER;
2113 #include <poppack.h>
2114 
2115 #include <pshpack2.h>
2116 typedef struct _IMAGE_VXD_HEADER {
2117   WORD  e32_magic;
2118   BYTE  e32_border;
2119   BYTE  e32_worder;
2120   DWORD e32_level;
2121   WORD  e32_cpu;
2122   WORD  e32_os;
2123   DWORD e32_ver;
2124   DWORD e32_mflags;
2125   DWORD e32_mpages;
2126   DWORD e32_startobj;
2127   DWORD e32_eip;
2128   DWORD e32_stackobj;
2129   DWORD e32_esp;
2130   DWORD e32_pagesize;
2131   DWORD e32_lastpagesize;
2132   DWORD e32_fixupsize;
2133   DWORD e32_fixupsum;
2134   DWORD e32_ldrsize;
2135   DWORD e32_ldrsum;
2136   DWORD e32_objtab;
2137   DWORD e32_objcnt;
2138   DWORD e32_objmap;
2139   DWORD e32_itermap;
2140   DWORD e32_rsrctab;
2141   DWORD e32_rsrccnt;
2142   DWORD e32_restab;
2143   DWORD e32_enttab;
2144   DWORD e32_dirtab;
2145   DWORD e32_dircnt;
2146   DWORD e32_fpagetab;
2147   DWORD e32_frectab;
2148   DWORD e32_impmod;
2149   DWORD e32_impmodcnt;
2150   DWORD e32_impproc;
2151   DWORD e32_pagesum;
2152   DWORD e32_datapage;
2153   DWORD e32_preload;
2154   DWORD e32_nrestab;
2155   DWORD e32_cbnrestab;
2156   DWORD e32_nressum;
2157   DWORD e32_autodata;
2158   DWORD e32_debuginfo;
2159   DWORD e32_debuglen;
2160   DWORD e32_instpreload;
2161   DWORD e32_instdemand;
2162   DWORD e32_heapsize;
2163   BYTE  e32_res3[12];
2164   DWORD e32_winresoff;
2165   DWORD e32_winreslen;
2166   WORD  e32_devid;
2167   WORD  e32_ddkver;
2168 } IMAGE_VXD_HEADER, *PIMAGE_VXD_HEADER;
2169 #include <poppack.h>
2170 
2171 /* These defines describe the meanings of the bits in the Characteristics
2172    field */
2173 
2174 #define IMAGE_FILE_RELOCS_STRIPPED      0x0001 /* No relocation info */
2175 #define IMAGE_FILE_EXECUTABLE_IMAGE     0x0002
2176 #define IMAGE_FILE_LINE_NUMS_STRIPPED   0x0004
2177 #define IMAGE_FILE_LOCAL_SYMS_STRIPPED  0x0008
2178 #define IMAGE_FILE_AGGRESIVE_WS_TRIM    0x0010
2179 #define IMAGE_FILE_LARGE_ADDRESS_AWARE  0x0020
2180 #define IMAGE_FILE_16BIT_MACHINE        0x0040
2181 #define IMAGE_FILE_BYTES_REVERSED_LO    0x0080
2182 #define IMAGE_FILE_32BIT_MACHINE        0x0100
2183 #define IMAGE_FILE_DEBUG_STRIPPED       0x0200
2184 #define IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP      0x0400
2185 #define IMAGE_FILE_NET_RUN_FROM_SWAP    0x0800
2186 #define IMAGE_FILE_SYSTEM               0x1000
2187 #define IMAGE_FILE_DLL                  0x2000
2188 #define IMAGE_FILE_UP_SYSTEM_ONLY       0x4000
2189 #define IMAGE_FILE_BYTES_REVERSED_HI    0x8000
2190 
2191 /* These are the settings of the Machine field. */
2192 #define IMAGE_FILE_MACHINE_UNKNOWN      0
2193 #define IMAGE_FILE_MACHINE_I860         0x014d
2194 #define IMAGE_FILE_MACHINE_I386         0x014c
2195 #define IMAGE_FILE_MACHINE_R3000        0x0162
2196 #define IMAGE_FILE_MACHINE_R4000        0x0166
2197 #define IMAGE_FILE_MACHINE_R10000       0x0168
2198 #define IMAGE_FILE_MACHINE_WCEMIPSV2    0x0169
2199 #define IMAGE_FILE_MACHINE_ALPHA        0x0184
2200 #define IMAGE_FILE_MACHINE_SH3          0x01a2
2201 #define IMAGE_FILE_MACHINE_SH3DSP       0x01a3
2202 #define IMAGE_FILE_MACHINE_SH3E         0x01a4
2203 #define IMAGE_FILE_MACHINE_SH4          0x01a6
2204 #define IMAGE_FILE_MACHINE_SH5          0x01a8
2205 #define IMAGE_FILE_MACHINE_ARM          0x01c0
2206 #define IMAGE_FILE_MACHINE_THUMB        0x01c2
2207 #define IMAGE_FILE_MACHINE_AM33         0x01d3
2208 #define IMAGE_FILE_MACHINE_POWERPC      0x01f0
2209 #define IMAGE_FILE_MACHINE_POWERPCFP    0x01f1
2210 #define IMAGE_FILE_MACHINE_IA64         0x0200
2211 #define IMAGE_FILE_MACHINE_MIPS16       0x0266
2212 #define IMAGE_FILE_MACHINE_ALPHA64      0x0284
2213 #define IMAGE_FILE_MACHINE_MIPSFPU      0x0366
2214 #define IMAGE_FILE_MACHINE_MIPSFPU16    0x0466
2215 #define IMAGE_FILE_MACHINE_AXP64        IMAGE_FILE_MACHINE_ALPHA64
2216 #define IMAGE_FILE_MACHINE_TRICORE      0x0520
2217 #define IMAGE_FILE_MACHINE_CEF          0x0cef
2218 #define IMAGE_FILE_MACHINE_EBC          0x0ebc
2219 #define IMAGE_FILE_MACHINE_AMD64        0x8664
2220 #define IMAGE_FILE_MACHINE_M32R         0x9041
2221 #define IMAGE_FILE_MACHINE_CEE          0xc0ee
2222 
2223 #define IMAGE_SIZEOF_FILE_HEADER                20
2224 #define IMAGE_SIZEOF_ROM_OPTIONAL_HEADER        56
2225 #define IMAGE_SIZEOF_STD_OPTIONAL_HEADER        28
2226 #define IMAGE_SIZEOF_NT_OPTIONAL32_HEADER       224
2227 #define IMAGE_SIZEOF_NT_OPTIONAL64_HEADER       240
2228 #define IMAGE_SIZEOF_SHORT_NAME                 8
2229 #define IMAGE_SIZEOF_SECTION_HEADER             40
2230 #define IMAGE_SIZEOF_SYMBOL                     18
2231 #define IMAGE_SIZEOF_AUX_SYMBOL                 18
2232 #define IMAGE_SIZEOF_RELOCATION                 10
2233 #define IMAGE_SIZEOF_BASE_RELOCATION            8
2234 #define IMAGE_SIZEOF_LINENUMBER                 6
2235 #define IMAGE_SIZEOF_ARCHIVE_MEMBER_HDR         60
2236 
2237 /* Possible Magic values */
2238 #define IMAGE_NT_OPTIONAL_HDR32_MAGIC      0x10b
2239 #define IMAGE_NT_OPTIONAL_HDR64_MAGIC      0x20b
2240 #define IMAGE_ROM_OPTIONAL_HDR_MAGIC       0x107
2241 
2242 #ifdef _WIN64
2243 #define IMAGE_SIZEOF_NT_OPTIONAL_HEADER IMAGE_SIZEOF_NT_OPTIONAL64_HEADER
2244 #define IMAGE_NT_OPTIONAL_HDR_MAGIC     IMAGE_NT_OPTIONAL_HDR64_MAGIC
2245 #else
2246 #define IMAGE_SIZEOF_NT_OPTIONAL_HEADER IMAGE_SIZEOF_NT_OPTIONAL32_HEADER
2247 #define IMAGE_NT_OPTIONAL_HDR_MAGIC     IMAGE_NT_OPTIONAL_HDR32_MAGIC
2248 #endif
2249 
2250 /* These are indexes into the DataDirectory array */
2251 #define IMAGE_FILE_EXPORT_DIRECTORY             0
2252 #define IMAGE_FILE_IMPORT_DIRECTORY             1
2253 #define IMAGE_FILE_RESOURCE_DIRECTORY           2
2254 #define IMAGE_FILE_EXCEPTION_DIRECTORY          3
2255 #define IMAGE_FILE_SECURITY_DIRECTORY           4
2256 #define IMAGE_FILE_BASE_RELOCATION_TABLE        5
2257 #define IMAGE_FILE_DEBUG_DIRECTORY              6
2258 #define IMAGE_FILE_DESCRIPTION_STRING           7
2259 #define IMAGE_FILE_MACHINE_VALUE                8  /* Mips */
2260 #define IMAGE_FILE_THREAD_LOCAL_STORAGE         9
2261 #define IMAGE_FILE_CALLBACK_DIRECTORY           10
2262 
2263 /* Directory Entries, indices into the DataDirectory array */
2264 
2265 #define IMAGE_DIRECTORY_ENTRY_EXPORT            0
2266 #define IMAGE_DIRECTORY_ENTRY_IMPORT            1
2267 #define IMAGE_DIRECTORY_ENTRY_RESOURCE          2
2268 #define IMAGE_DIRECTORY_ENTRY_EXCEPTION         3
2269 #define IMAGE_DIRECTORY_ENTRY_SECURITY          4
2270 #define IMAGE_DIRECTORY_ENTRY_BASERELOC         5
2271 #define IMAGE_DIRECTORY_ENTRY_DEBUG             6
2272 #define IMAGE_DIRECTORY_ENTRY_COPYRIGHT         7
2273 #define IMAGE_DIRECTORY_ENTRY_GLOBALPTR         8   /* (MIPS GP) */
2274 #define IMAGE_DIRECTORY_ENTRY_TLS               9
2275 #define IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG       10
2276 #define IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT      11
2277 #define IMAGE_DIRECTORY_ENTRY_IAT               12  /* Import Address Table */
2278 #define IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT      13
2279 #define IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR    14
2280 
2281 /* Subsystem Values */
2282 
2283 #define IMAGE_SUBSYSTEM_UNKNOWN                 0
2284 #define IMAGE_SUBSYSTEM_NATIVE                  1
2285 #define IMAGE_SUBSYSTEM_WINDOWS_GUI             2       /* Windows GUI subsystem */
2286 #define IMAGE_SUBSYSTEM_WINDOWS_CUI             3       /* Windows character subsystem */
2287 #define IMAGE_SUBSYSTEM_OS2_CUI                 5
2288 #define IMAGE_SUBSYSTEM_POSIX_CUI               7
2289 #define IMAGE_SUBSYSTEM_NATIVE_WINDOWS          8       /* native Win9x driver */
2290 #define IMAGE_SUBSYSTEM_WINDOWS_CE_GUI          9       /* Windows CE subsystem */
2291 #define IMAGE_SUBSYSTEM_EFI_APPLICATION         10
2292 #define IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER 11
2293 #define IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER      12
2294 #define IMAGE_SUBSYSTEM_EFI_ROM                 13
2295 #define IMAGE_SUBSYSTEM_XBOX                    14
2296 
2297 /* DLL Characteristics */
2298 #define IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE          0x0040
2299 #define IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY       0x0080
2300 #define IMAGE_DLLCHARACTERISTICS_NX_COMPAT             0x0100
2301 #define IMAGE_DLLCHARACTERISTICS_NO_ISOLATION          0x0200
2302 #define IMAGE_DLLCHARACTERISTICS_NO_SEH                0x0400
2303 #define IMAGE_DLLCHARACTERISTICS_NO_BIND               0x0800
2304 #define IMAGE_DLLCHARACTERISTICS_WDM_DRIVER            0x2000
2305 #define IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE 0x8000
2306 
2307 typedef struct _IMAGE_FILE_HEADER {
2308   WORD  Machine;
2309   WORD  NumberOfSections;
2310   DWORD TimeDateStamp;
2311   DWORD PointerToSymbolTable;
2312   DWORD NumberOfSymbols;
2313   WORD  SizeOfOptionalHeader;
2314   WORD  Characteristics;
2315 } IMAGE_FILE_HEADER, *PIMAGE_FILE_HEADER;
2316 
2317 typedef struct _IMAGE_DATA_DIRECTORY {
2318   DWORD VirtualAddress;
2319   DWORD Size;
2320 } IMAGE_DATA_DIRECTORY, *PIMAGE_DATA_DIRECTORY;
2321 
2322 #define IMAGE_NUMBEROF_DIRECTORY_ENTRIES 16
2323 
2324 typedef struct _IMAGE_OPTIONAL_HEADER64 {
2325   WORD  Magic; /* 0x20b */
2326   BYTE MajorLinkerVersion;
2327   BYTE MinorLinkerVersion;
2328   DWORD SizeOfCode;
2329   DWORD SizeOfInitializedData;
2330   DWORD SizeOfUninitializedData;
2331   DWORD AddressOfEntryPoint;
2332   DWORD BaseOfCode;
2333   ULONGLONG ImageBase;
2334   DWORD SectionAlignment;
2335   DWORD FileAlignment;
2336   WORD MajorOperatingSystemVersion;
2337   WORD MinorOperatingSystemVersion;
2338   WORD MajorImageVersion;
2339   WORD MinorImageVersion;
2340   WORD MajorSubsystemVersion;
2341   WORD MinorSubsystemVersion;
2342   DWORD Win32VersionValue;
2343   DWORD SizeOfImage;
2344   DWORD SizeOfHeaders;
2345   DWORD CheckSum;
2346   WORD Subsystem;
2347   WORD DllCharacteristics;
2348   ULONGLONG SizeOfStackReserve;
2349   ULONGLONG SizeOfStackCommit;
2350   ULONGLONG SizeOfHeapReserve;
2351   ULONGLONG SizeOfHeapCommit;
2352   DWORD LoaderFlags;
2353   DWORD NumberOfRvaAndSizes;
2354   IMAGE_DATA_DIRECTORY DataDirectory[IMAGE_NUMBEROF_DIRECTORY_ENTRIES];
2355 } IMAGE_OPTIONAL_HEADER64, *PIMAGE_OPTIONAL_HEADER64;
2356 
2357 typedef struct _IMAGE_NT_HEADERS64 {
2358   DWORD Signature;
2359   IMAGE_FILE_HEADER FileHeader;
2360   IMAGE_OPTIONAL_HEADER64 OptionalHeader;
2361 } IMAGE_NT_HEADERS64, *PIMAGE_NT_HEADERS64;
2362 
2363 typedef struct _IMAGE_OPTIONAL_HEADER {
2364 
2365   /* Standard fields */
2366 
2367   WORD  Magic; /* 0x10b or 0x107 */     /* 0x00 */
2368   BYTE  MajorLinkerVersion;
2369   BYTE  MinorLinkerVersion;
2370   DWORD SizeOfCode;
2371   DWORD SizeOfInitializedData;
2372   DWORD SizeOfUninitializedData;
2373   DWORD AddressOfEntryPoint;            /* 0x10 */
2374   DWORD BaseOfCode;
2375   DWORD BaseOfData;
2376 
2377   /* NT additional fields */
2378 
2379   DWORD ImageBase;
2380   DWORD SectionAlignment;               /* 0x20 */
2381   DWORD FileAlignment;
2382   WORD  MajorOperatingSystemVersion;
2383   WORD  MinorOperatingSystemVersion;
2384   WORD  MajorImageVersion;
2385   WORD  MinorImageVersion;
2386   WORD  MajorSubsystemVersion;          /* 0x30 */
2387   WORD  MinorSubsystemVersion;
2388   DWORD Win32VersionValue;
2389   DWORD SizeOfImage;
2390   DWORD SizeOfHeaders;
2391   DWORD CheckSum;                       /* 0x40 */
2392   WORD  Subsystem;
2393   WORD  DllCharacteristics;
2394   DWORD SizeOfStackReserve;
2395   DWORD SizeOfStackCommit;
2396   DWORD SizeOfHeapReserve;              /* 0x50 */
2397   DWORD SizeOfHeapCommit;
2398   DWORD LoaderFlags;
2399   DWORD NumberOfRvaAndSizes;
2400   IMAGE_DATA_DIRECTORY DataDirectory[IMAGE_NUMBEROF_DIRECTORY_ENTRIES]; /* 0x60 */
2401   /* 0xE0 */
2402 } IMAGE_OPTIONAL_HEADER32, *PIMAGE_OPTIONAL_HEADER32;
2403 
2404 typedef struct _IMAGE_NT_HEADERS {
2405   DWORD Signature; /* "PE"\0\0 */       /* 0x00 */
2406   IMAGE_FILE_HEADER FileHeader;         /* 0x04 */
2407   IMAGE_OPTIONAL_HEADER32 OptionalHeader;       /* 0x18 */
2408 } IMAGE_NT_HEADERS32, *PIMAGE_NT_HEADERS32;
2409 
2410 #ifdef _WIN64
2411 typedef IMAGE_NT_HEADERS64  IMAGE_NT_HEADERS;
2412 typedef PIMAGE_NT_HEADERS64 PIMAGE_NT_HEADERS;
2413 typedef IMAGE_OPTIONAL_HEADER64 IMAGE_OPTIONAL_HEADER;
2414 typedef PIMAGE_OPTIONAL_HEADER64 PIMAGE_OPTIONAL_HEADER;
2415 #else
2416 typedef IMAGE_NT_HEADERS32  IMAGE_NT_HEADERS;
2417 typedef PIMAGE_NT_HEADERS32 PIMAGE_NT_HEADERS;
2418 typedef IMAGE_OPTIONAL_HEADER32 IMAGE_OPTIONAL_HEADER;
2419 typedef PIMAGE_OPTIONAL_HEADER32 PIMAGE_OPTIONAL_HEADER;
2420 #endif
2421 
2422 #define IMAGE_SIZEOF_SHORT_NAME 8
2423 
2424 typedef struct _IMAGE_SECTION_HEADER {
2425   BYTE  Name[IMAGE_SIZEOF_SHORT_NAME];
2426   union {
2427     DWORD PhysicalAddress;
2428     DWORD VirtualSize;
2429   } Misc;
2430   DWORD VirtualAddress;
2431   DWORD SizeOfRawData;
2432   DWORD PointerToRawData;
2433   DWORD PointerToRelocations;
2434   DWORD PointerToLinenumbers;
2435   WORD  NumberOfRelocations;
2436   WORD  NumberOfLinenumbers;
2437   DWORD Characteristics;
2438 } IMAGE_SECTION_HEADER, *PIMAGE_SECTION_HEADER;
2439 
2440 #define IMAGE_SIZEOF_SECTION_HEADER 40
2441 
2442 #define IMAGE_FIRST_SECTION(ntheader) \
2443   ((PIMAGE_SECTION_HEADER)(ULONG_PTR)((const BYTE *)&((const IMAGE_NT_HEADERS *)(ntheader))->OptionalHeader + \
2444                            ((const IMAGE_NT_HEADERS *)(ntheader))->FileHeader.SizeOfOptionalHeader))
2445 
2446 /* These defines are for the Characteristics bitfield. */
2447 /* #define IMAGE_SCN_TYPE_REG                   0x00000000 - Reserved */
2448 /* #define IMAGE_SCN_TYPE_DSECT                 0x00000001 - Reserved */
2449 /* #define IMAGE_SCN_TYPE_NOLOAD                0x00000002 - Reserved */
2450 /* #define IMAGE_SCN_TYPE_GROUP                 0x00000004 - Reserved */
2451 #define IMAGE_SCN_TYPE_NO_PAD                   0x00000008 /* Reserved */
2452 /* #define IMAGE_SCN_TYPE_COPY                  0x00000010 - Reserved */
2453 
2454 #define IMAGE_SCN_CNT_CODE                      0x00000020
2455 #define IMAGE_SCN_CNT_INITIALIZED_DATA          0x00000040
2456 #define IMAGE_SCN_CNT_UNINITIALIZED_DATA        0x00000080
2457 
2458 #define IMAGE_SCN_LNK_OTHER                     0x00000100
2459 #define IMAGE_SCN_LNK_INFO                      0x00000200
2460 /* #define      IMAGE_SCN_TYPE_OVER             0x00000400 - Reserved */
2461 #define IMAGE_SCN_LNK_REMOVE                    0x00000800
2462 #define IMAGE_SCN_LNK_COMDAT                    0x00001000
2463 
2464 /*                                              0x00002000 - Reserved */
2465 /* #define IMAGE_SCN_MEM_PROTECTED              0x00004000 - Obsolete */
2466 #define IMAGE_SCN_MEM_FARDATA                   0x00008000
2467 
2468 /* #define IMAGE_SCN_MEM_SYSHEAP                0x00010000 - Obsolete */
2469 #define IMAGE_SCN_MEM_PURGEABLE                 0x00020000
2470 #define IMAGE_SCN_MEM_16BIT                     0x00020000
2471 #define IMAGE_SCN_MEM_LOCKED                    0x00040000
2472 #define IMAGE_SCN_MEM_PRELOAD                   0x00080000
2473 
2474 #define IMAGE_SCN_ALIGN_1BYTES                  0x00100000
2475 #define IMAGE_SCN_ALIGN_2BYTES                  0x00200000
2476 #define IMAGE_SCN_ALIGN_4BYTES                  0x00300000
2477 #define IMAGE_SCN_ALIGN_8BYTES                  0x00400000
2478 #define IMAGE_SCN_ALIGN_16BYTES                 0x00500000  /* Default */
2479 #define IMAGE_SCN_ALIGN_32BYTES                 0x00600000
2480 #define IMAGE_SCN_ALIGN_64BYTES                 0x00700000
2481 #define IMAGE_SCN_ALIGN_128BYTES                0x00800000
2482 #define IMAGE_SCN_ALIGN_256BYTES                0x00900000
2483 #define IMAGE_SCN_ALIGN_512BYTES                0x00A00000
2484 #define IMAGE_SCN_ALIGN_1024BYTES               0x00B00000
2485 #define IMAGE_SCN_ALIGN_2048BYTES               0x00C00000
2486 #define IMAGE_SCN_ALIGN_4096BYTES               0x00D00000
2487 #define IMAGE_SCN_ALIGN_8192BYTES               0x00E00000
2488 /*                                              0x00F00000 - Unused */
2489 #define IMAGE_SCN_ALIGN_MASK                    0x00F00000
2490 
2491 #define IMAGE_SCN_LNK_NRELOC_OVFL               0x01000000
2492 
2493 
2494 #define IMAGE_SCN_MEM_DISCARDABLE               0x02000000
2495 #define IMAGE_SCN_MEM_NOT_CACHED                0x04000000
2496 #define IMAGE_SCN_MEM_NOT_PAGED                 0x08000000
2497 #define IMAGE_SCN_MEM_SHARED                    0x10000000
2498 #define IMAGE_SCN_MEM_EXECUTE                   0x20000000
2499 #define IMAGE_SCN_MEM_READ                      0x40000000
2500 #define IMAGE_SCN_MEM_WRITE                     0x80000000
2501 
2502 #include <pshpack2.h>
2503 
2504 typedef struct _IMAGE_SYMBOL {
2505     union {
2506         BYTE    ShortName[8];
2507         struct {
2508             DWORD   Short;
2509             DWORD   Long;
2510         } Name;
2511         DWORD   LongName[2];
2512     } N;
2513     DWORD   Value;
2514     SHORT   SectionNumber;
2515     WORD    Type;
2516     BYTE    StorageClass;
2517     BYTE    NumberOfAuxSymbols;
2518 } IMAGE_SYMBOL;
2519 typedef IMAGE_SYMBOL *PIMAGE_SYMBOL;
2520 
2521 #define IMAGE_SIZEOF_SYMBOL 18
2522 
2523 typedef struct _IMAGE_LINENUMBER {
2524     union {
2525         DWORD   SymbolTableIndex;
2526         DWORD   VirtualAddress;
2527     } Type;
2528     WORD    Linenumber;
2529 } IMAGE_LINENUMBER;
2530 typedef IMAGE_LINENUMBER *PIMAGE_LINENUMBER;
2531 
2532 #define IMAGE_SIZEOF_LINENUMBER  6
2533 
2534 typedef union _IMAGE_AUX_SYMBOL {
2535     struct {
2536         DWORD    TagIndex;
2537         union {
2538             struct {
2539                 WORD    Linenumber;
2540                 WORD    Size;
2541             } LnSz;
2542            DWORD    TotalSize;
2543         } Misc;
2544         union {
2545             struct {
2546                 DWORD    PointerToLinenumber;
2547                 DWORD    PointerToNextFunction;
2548             } Function;
2549             struct {
2550                 WORD     Dimension[4];
2551             } Array;
2552         } FcnAry;
2553         WORD    TvIndex;
2554     } Sym;
2555     struct {
2556         BYTE    Name[IMAGE_SIZEOF_SYMBOL];
2557     } File;
2558     struct {
2559         DWORD   Length;
2560         WORD    NumberOfRelocations;
2561         WORD    NumberOfLinenumbers;
2562         DWORD   CheckSum;
2563         SHORT   Number;
2564         BYTE    Selection;
2565     } Section;
2566 } IMAGE_AUX_SYMBOL;
2567 typedef IMAGE_AUX_SYMBOL *PIMAGE_AUX_SYMBOL;
2568 
2569 #define IMAGE_SIZEOF_AUX_SYMBOL 18
2570 
2571 #include <poppack.h>
2572 
2573 #define IMAGE_SYM_UNDEFINED           (SHORT)0
2574 #define IMAGE_SYM_ABSOLUTE            (SHORT)-1
2575 #define IMAGE_SYM_DEBUG               (SHORT)-2
2576 
2577 #define IMAGE_SYM_TYPE_NULL                 0x0000
2578 #define IMAGE_SYM_TYPE_VOID                 0x0001
2579 #define IMAGE_SYM_TYPE_CHAR                 0x0002
2580 #define IMAGE_SYM_TYPE_SHORT                0x0003
2581 #define IMAGE_SYM_TYPE_INT                  0x0004
2582 #define IMAGE_SYM_TYPE_LONG                 0x0005
2583 #define IMAGE_SYM_TYPE_FLOAT                0x0006
2584 #define IMAGE_SYM_TYPE_DOUBLE               0x0007
2585 #define IMAGE_SYM_TYPE_STRUCT               0x0008
2586 #define IMAGE_SYM_TYPE_UNION                0x0009
2587 #define IMAGE_SYM_TYPE_ENUM                 0x000A
2588 #define IMAGE_SYM_TYPE_MOE                  0x000B
2589 #define IMAGE_SYM_TYPE_BYTE                 0x000C
2590 #define IMAGE_SYM_TYPE_WORD                 0x000D
2591 #define IMAGE_SYM_TYPE_UINT                 0x000E
2592 #define IMAGE_SYM_TYPE_DWORD                0x000F
2593 #define IMAGE_SYM_TYPE_PCODE                0x8000
2594 
2595 #define IMAGE_SYM_DTYPE_NULL                0
2596 #define IMAGE_SYM_DTYPE_POINTER             1
2597 #define IMAGE_SYM_DTYPE_FUNCTION            2
2598 #define IMAGE_SYM_DTYPE_ARRAY               3
2599 
2600 #define IMAGE_SYM_CLASS_END_OF_FUNCTION     (BYTE )-1
2601 #define IMAGE_SYM_CLASS_NULL                0x0000
2602 #define IMAGE_SYM_CLASS_AUTOMATIC           0x0001
2603 #define IMAGE_SYM_CLASS_EXTERNAL            0x0002
2604 #define IMAGE_SYM_CLASS_STATIC              0x0003
2605 #define IMAGE_SYM_CLASS_REGISTER            0x0004
2606 #define IMAGE_SYM_CLASS_EXTERNAL_DEF        0x0005
2607 #define IMAGE_SYM_CLASS_LABEL               0x0006
2608 #define IMAGE_SYM_CLASS_UNDEFINED_LABEL     0x0007
2609 #define IMAGE_SYM_CLASS_MEMBER_OF_STRUCT    0x0008
2610 #define IMAGE_SYM_CLASS_ARGUMENT            0x0009
2611 #define IMAGE_SYM_CLASS_STRUCT_TAG          0x000A
2612 #define IMAGE_SYM_CLASS_MEMBER_OF_UNION     0x000B
2613 #define IMAGE_SYM_CLASS_UNION_TAG           0x000C
2614 #define IMAGE_SYM_CLASS_TYPE_DEFINITION     0x000D
2615 #define IMAGE_SYM_CLASS_UNDEFINED_STATIC    0x000E
2616 #define IMAGE_SYM_CLASS_ENUM_TAG            0x000F
2617 #define IMAGE_SYM_CLASS_MEMBER_OF_ENUM      0x0010
2618 #define IMAGE_SYM_CLASS_REGISTER_PARAM      0x0011
2619 #define IMAGE_SYM_CLASS_BIT_FIELD           0x0012
2620 
2621 #define IMAGE_SYM_CLASS_FAR_EXTERNAL        0x0044
2622 #define IMAGE_SYM_CLASS_BLOCK               0x0064
2623 #define IMAGE_SYM_CLASS_FUNCTION            0x0065
2624 #define IMAGE_SYM_CLASS_END_OF_STRUCT       0x0066
2625 #define IMAGE_SYM_CLASS_FILE                0x0067
2626 #define IMAGE_SYM_CLASS_SECTION             0x0068
2627 #define IMAGE_SYM_CLASS_WEAK_EXTERNAL       0x0069
2628 
2629 #define N_BTMASK                            0x000F
2630 #define N_TMASK                             0x0030
2631 #define N_TMASK1                            0x00C0
2632 #define N_TMASK2                            0x00F0
2633 #define N_BTSHFT                            4
2634 #define N_TSHIFT                            2
2635 
2636 #define BTYPE(x) ((x) & N_BTMASK)
2637 
2638 #ifndef ISPTR
2639 #define ISPTR(x) (((x) & N_TMASK) == (IMAGE_SYM_DTYPE_POINTER << N_BTSHFT))
2640 #endif
2641 
2642 #ifndef ISFCN
2643 #define ISFCN(x) (((x) & N_TMASK) == (IMAGE_SYM_DTYPE_FUNCTION << N_BTSHFT))
2644 #endif
2645 
2646 #ifndef ISARY
2647 #define ISARY(x) (((x) & N_TMASK) == (IMAGE_SYM_DTYPE_ARRAY << N_BTSHFT))
2648 #endif
2649 
2650 #ifndef ISTAG
2651 #define ISTAG(x) ((x)==IMAGE_SYM_CLASS_STRUCT_TAG || (x)==IMAGE_SYM_CLASS_UNION_TAG || (x)==IMAGE_SYM_CLASS_ENUM_TAG)
2652 #endif
2653 
2654 #ifndef INCREF
2655 #define INCREF(x) ((((x)&~N_BTMASK)<<N_TSHIFT)|(IMAGE_SYM_DTYPE_POINTER<<N_BTSHFT)|((x)&N_BTMASK))
2656 #endif
2657 #ifndef DECREF
2658 #define DECREF(x) ((((x)>>N_TSHIFT)&~N_BTMASK)|((x)&N_BTMASK))
2659 #endif
2660 
2661 #define IMAGE_COMDAT_SELECT_NODUPLICATES    1
2662 #define IMAGE_COMDAT_SELECT_ANY             2
2663 #define IMAGE_COMDAT_SELECT_SAME_SIZE       3
2664 #define IMAGE_COMDAT_SELECT_EXACT_MATCH     4
2665 #define IMAGE_COMDAT_SELECT_ASSOCIATIVE     5
2666 #define IMAGE_COMDAT_SELECT_LARGEST         6
2667 #define IMAGE_COMDAT_SELECT_NEWEST          7
2668 
2669 #define IMAGE_WEAK_EXTERN_SEARCH_NOLIBRARY  1
2670 #define IMAGE_WEAK_EXTERN_SEARCH_LIBRARY    2
2671 #define IMAGE_WEAK_EXTERN_SEARCH_ALIAS      3
2672 
2673 /* Export module directory */
2674 
2675 typedef struct _IMAGE_EXPORT_DIRECTORY {
2676         DWORD   Characteristics;
2677         DWORD   TimeDateStamp;
2678         WORD    MajorVersion;
2679         WORD    MinorVersion;
2680         DWORD   Name;
2681         DWORD   Base;
2682         DWORD   NumberOfFunctions;
2683         DWORD   NumberOfNames;
2684         DWORD   AddressOfFunctions;
2685         DWORD   AddressOfNames;
2686         DWORD   AddressOfNameOrdinals;
2687 } IMAGE_EXPORT_DIRECTORY,*PIMAGE_EXPORT_DIRECTORY;
2688 
2689 /* Import name entry */
2690 typedef struct _IMAGE_IMPORT_BY_NAME {
2691         WORD    Hint;
2692         BYTE    Name[1];
2693 } IMAGE_IMPORT_BY_NAME,*PIMAGE_IMPORT_BY_NAME;
2694 
2695 #include <pshpack8.h>
2696 /* Import thunk */
2697 typedef struct _IMAGE_THUNK_DATA64 {
2698         union {
2699                 ULONGLONG ForwarderString;
2700                 ULONGLONG Function;
2701                 ULONGLONG Ordinal;
2702                 ULONGLONG AddressOfData;
2703         } u1;
2704 } IMAGE_THUNK_DATA64,*PIMAGE_THUNK_DATA64;
2705 #include <poppack.h>
2706 
2707 typedef struct _IMAGE_THUNK_DATA32 {
2708         union {
2709                 DWORD ForwarderString;
2710                 DWORD Function;
2711                 DWORD Ordinal;
2712                 DWORD AddressOfData;
2713         } u1;
2714 } IMAGE_THUNK_DATA32,*PIMAGE_THUNK_DATA32;
2715 
2716 /* Import module directory */
2717 
2718 typedef struct _IMAGE_IMPORT_DESCRIPTOR {
2719         union {
2720                 DWORD   Characteristics; /* 0 for terminating null import descriptor  */
2721                 DWORD   OriginalFirstThunk;     /* RVA to original unbound IAT */
2722         } DUMMYUNIONNAME;
2723         DWORD   TimeDateStamp;  /* 0 if not bound,
2724                                  * -1 if bound, and real date\time stamp
2725                                  *    in IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT
2726                                  * (new BIND)
2727                                  * otherwise date/time stamp of DLL bound to
2728                                  * (Old BIND)
2729                                  */
2730         DWORD   ForwarderChain; /* -1 if no forwarders */
2731         DWORD   Name;
2732         /* RVA to IAT (if bound this IAT has actual addresses) */
2733         DWORD   FirstThunk;
2734 } IMAGE_IMPORT_DESCRIPTOR,*PIMAGE_IMPORT_DESCRIPTOR;
2735 
2736 #define IMAGE_ORDINAL_FLAG64             (((ULONGLONG)0x80000000 << 32) | 0x00000000)
2737 #define IMAGE_ORDINAL_FLAG32             0x80000000
2738 #define IMAGE_SNAP_BY_ORDINAL64(ordinal) (((ordinal) & IMAGE_ORDINAL_FLAG64) != 0)
2739 #define IMAGE_SNAP_BY_ORDINAL32(ordinal) (((ordinal) & IMAGE_ORDINAL_FLAG32) != 0)
2740 #define IMAGE_ORDINAL64(ordinal)         ((ordinal) & 0xffff)
2741 #define IMAGE_ORDINAL32(ordinal)         ((ordinal) & 0xffff)
2742 
2743 #ifdef _WIN64
2744 #define IMAGE_ORDINAL_FLAG              IMAGE_ORDINAL_FLAG64
2745 #define IMAGE_SNAP_BY_ORDINAL(Ordinal)  IMAGE_SNAP_BY_ORDINAL64(Ordinal)
2746 #define IMAGE_ORDINAL(Ordinal)          IMAGE_ORDINAL64(Ordinal)
2747 typedef IMAGE_THUNK_DATA64              IMAGE_THUNK_DATA;
2748 typedef PIMAGE_THUNK_DATA64             PIMAGE_THUNK_DATA;
2749 #else
2750 #define IMAGE_ORDINAL_FLAG              IMAGE_ORDINAL_FLAG32
2751 #define IMAGE_SNAP_BY_ORDINAL(Ordinal)  IMAGE_SNAP_BY_ORDINAL32(Ordinal)
2752 #define IMAGE_ORDINAL(Ordinal)          IMAGE_ORDINAL32(Ordinal)
2753 typedef IMAGE_THUNK_DATA32              IMAGE_THUNK_DATA;
2754 typedef PIMAGE_THUNK_DATA32             PIMAGE_THUNK_DATA;
2755 #endif
2756 
2757 typedef struct _IMAGE_BOUND_IMPORT_DESCRIPTOR
2758 {
2759     DWORD   TimeDateStamp;
2760     WORD    OffsetModuleName;
2761     WORD    NumberOfModuleForwarderRefs;
2762 /* Array of zero or more IMAGE_BOUND_FORWARDER_REF follows */
2763 } IMAGE_BOUND_IMPORT_DESCRIPTOR,  *PIMAGE_BOUND_IMPORT_DESCRIPTOR;
2764 
2765 typedef struct _IMAGE_BOUND_FORWARDER_REF
2766 {
2767     DWORD   TimeDateStamp;
2768     WORD    OffsetModuleName;
2769     WORD    Reserved;
2770 } IMAGE_BOUND_FORWARDER_REF, *PIMAGE_BOUND_FORWARDER_REF;
2771 
2772 typedef struct _IMAGE_BASE_RELOCATION
2773 {
2774         DWORD   VirtualAddress;
2775         DWORD   SizeOfBlock;
2776         /* WORD TypeOffset[1]; */
2777 } IMAGE_BASE_RELOCATION,*PIMAGE_BASE_RELOCATION;
2778 
2779 #include <pshpack2.h>
2780 
2781 typedef struct _IMAGE_RELOCATION
2782 {
2783     union {
2784         DWORD   VirtualAddress;
2785         DWORD   RelocCount;
2786     } DUMMYUNIONNAME;
2787     DWORD   SymbolTableIndex;
2788     WORD    Type;
2789 } IMAGE_RELOCATION, *PIMAGE_RELOCATION;
2790 
2791 #include <poppack.h>
2792 
2793 #define IMAGE_SIZEOF_RELOCATION 10
2794 
2795 /* generic relocation types */
2796 #define IMAGE_REL_BASED_ABSOLUTE                0
2797 #define IMAGE_REL_BASED_HIGH                    1
2798 #define IMAGE_REL_BASED_LOW                     2
2799 #define IMAGE_REL_BASED_HIGHLOW                 3
2800 #define IMAGE_REL_BASED_HIGHADJ                 4
2801 #define IMAGE_REL_BASED_MIPS_JMPADDR            5
2802 #define IMAGE_REL_BASED_SECTION                 6
2803 #define IMAGE_REL_BASED_REL                     7
2804 #define IMAGE_REL_BASED_MIPS_JMPADDR16          9
2805 #define IMAGE_REL_BASED_IA64_IMM64              9 /* yes, 9 too */
2806 #define IMAGE_REL_BASED_DIR64                   10
2807 #define IMAGE_REL_BASED_HIGH3ADJ                11
2808 
2809 /* I386 relocation types */
2810 #define IMAGE_REL_I386_ABSOLUTE                 0
2811 #define IMAGE_REL_I386_DIR16                    1
2812 #define IMAGE_REL_I386_REL16                    2
2813 #define IMAGE_REL_I386_DIR32                    6
2814 #define IMAGE_REL_I386_DIR32NB                  7
2815 #define IMAGE_REL_I386_SEG12                    9
2816 #define IMAGE_REL_I386_SECTION                  10
2817 #define IMAGE_REL_I386_SECREL                   11
2818 #define IMAGE_REL_I386_REL32                    20
2819 
2820 /* MIPS relocation types */
2821 #define IMAGE_REL_MIPS_ABSOLUTE         0x0000
2822 #define IMAGE_REL_MIPS_REFHALF          0x0001
2823 #define IMAGE_REL_MIPS_REFWORD          0x0002
2824 #define IMAGE_REL_MIPS_JMPADDR          0x0003
2825 #define IMAGE_REL_MIPS_REFHI            0x0004
2826 #define IMAGE_REL_MIPS_REFLO            0x0005
2827 #define IMAGE_REL_MIPS_GPREL            0x0006
2828 #define IMAGE_REL_MIPS_LITERAL          0x0007
2829 #define IMAGE_REL_MIPS_SECTION          0x000A
2830 #define IMAGE_REL_MIPS_SECREL           0x000B
2831 #define IMAGE_REL_MIPS_SECRELLO         0x000C
2832 #define IMAGE_REL_MIPS_SECRELHI         0x000D
2833 #define IMAGE_REL_MIPS_JMPADDR16        0x0010
2834 #define IMAGE_REL_MIPS_REFWORDNB        0x0022
2835 #define IMAGE_REL_MIPS_PAIR             0x0025
2836 
2837 /* ALPHA relocation types */
2838 #define IMAGE_REL_ALPHA_ABSOLUTE        0x0000
2839 #define IMAGE_REL_ALPHA_REFLONG         0x0001
2840 #define IMAGE_REL_ALPHA_REFQUAD         0x0002
2841 #define IMAGE_REL_ALPHA_GPREL           0x0003
2842 #define IMAGE_REL_ALPHA_LITERAL         0x0004
2843 #define IMAGE_REL_ALPHA_LITUSE          0x0005
2844 #define IMAGE_REL_ALPHA_GPDISP          0x0006
2845 #define IMAGE_REL_ALPHA_BRADDR          0x0007
2846 #define IMAGE_REL_ALPHA_HINT            0x0008
2847 #define IMAGE_REL_ALPHA_INLINE_REFLONG  0x0009
2848 #define IMAGE_REL_ALPHA_REFHI           0x000A
2849 #define IMAGE_REL_ALPHA_REFLO           0x000B
2850 #define IMAGE_REL_ALPHA_PAIR            0x000C
2851 #define IMAGE_REL_ALPHA_MATCH           0x000D
2852 #define IMAGE_REL_ALPHA_SECTION         0x000E
2853 #define IMAGE_REL_ALPHA_SECREL          0x000F
2854 #define IMAGE_REL_ALPHA_REFLONGNB       0x0010
2855 #define IMAGE_REL_ALPHA_SECRELLO        0x0011
2856 #define IMAGE_REL_ALPHA_SECRELHI        0x0012
2857 #define IMAGE_REL_ALPHA_REFQ3           0x0013
2858 #define IMAGE_REL_ALPHA_REFQ2           0x0014
2859 #define IMAGE_REL_ALPHA_REFQ1           0x0015
2860 #define IMAGE_REL_ALPHA_GPRELLO         0x0016
2861 #define IMAGE_REL_ALPHA_GPRELHI         0x0017
2862 
2863 /* PowerPC relocation types */
2864 #define IMAGE_REL_PPC_ABSOLUTE          0x0000
2865 #define IMAGE_REL_PPC_ADDR64            0x0001
2866 #define IMAGE_REL_PPC_ADDR            0x0002
2867 #define IMAGE_REL_PPC_ADDR24            0x0003
2868 #define IMAGE_REL_PPC_ADDR16            0x0004
2869 #define IMAGE_REL_PPC_ADDR14            0x0005
2870 #define IMAGE_REL_PPC_REL24             0x0006
2871 #define IMAGE_REL_PPC_REL14             0x0007
2872 #define IMAGE_REL_PPC_TOCREL16          0x0008
2873 #define IMAGE_REL_PPC_TOCREL14          0x0009
2874 #define IMAGE_REL_PPC_ADDR32NB          0x000A
2875 #define IMAGE_REL_PPC_SECREL            0x000B
2876 #define IMAGE_REL_PPC_SECTION           0x000C
2877 #define IMAGE_REL_PPC_IFGLUE            0x000D
2878 #define IMAGE_REL_PPC_IMGLUE            0x000E
2879 #define IMAGE_REL_PPC_SECREL16          0x000F
2880 #define IMAGE_REL_PPC_REFHI             0x0010
2881 #define IMAGE_REL_PPC_REFLO             0x0011
2882 #define IMAGE_REL_PPC_PAIR              0x0012
2883 #define IMAGE_REL_PPC_SECRELLO          0x0013
2884 #define IMAGE_REL_PPC_SECRELHI          0x0014
2885 #define IMAGE_REL_PPC_GPREL             0x0015
2886 #define IMAGE_REL_PPC_TYPEMASK          0x00FF
2887 /* modifier bits */
2888 #define IMAGE_REL_PPC_NEG               0x0100
2889 #define IMAGE_REL_PPC_BRTAKEN           0x0200
2890 #define IMAGE_REL_PPC_BRNTAKEN          0x0400
2891 #define IMAGE_REL_PPC_TOCDEFN           0x0800
2892 
2893 /* SH3 ? relocation type */
2894 #define IMAGE_REL_SH3_ABSOLUTE          0x0000
2895 #define IMAGE_REL_SH3_DIRECT16          0x0001
2896 #define IMAGE_REL_SH3_DIRECT          0x0002
2897 #define IMAGE_REL_SH3_DIRECT8           0x0003
2898 #define IMAGE_REL_SH3_DIRECT8_WORD      0x0004
2899 #define IMAGE_REL_SH3_DIRECT8_LONG      0x0005
2900 #define IMAGE_REL_SH3_DIRECT4           0x0006
2901 #define IMAGE_REL_SH3_DIRECT4_WORD      0x0007
2902 #define IMAGE_REL_SH3_DIRECT4_LONG      0x0008
2903 #define IMAGE_REL_SH3_PCREL8_WORD       0x0009
2904 #define IMAGE_REL_SH3_PCREL8_LONG       0x000A
2905 #define IMAGE_REL_SH3_PCREL12_WORD      0x000B
2906 #define IMAGE_REL_SH3_STARTOF_SECTION   0x000C
2907 #define IMAGE_REL_SH3_SIZEOF_SECTION    0x000D
2908 #define IMAGE_REL_SH3_SECTION           0x000E
2909 #define IMAGE_REL_SH3_SECREL            0x000F
2910 #define IMAGE_REL_SH3_DIRECT32_NB       0x0010
2911 
2912 /* ARM (Archimedes?) relocation types */
2913 #define IMAGE_REL_ARM_ABSOLUTE          0x0000
2914 #define IMAGE_REL_ARM_ADDR              0x0001
2915 #define IMAGE_REL_ARM_ADDR32NB          0x0002
2916 #define IMAGE_REL_ARM_BRANCH24          0x0003
2917 #define IMAGE_REL_ARM_BRANCH11          0x0004
2918 #define IMAGE_REL_ARM_SECTION           0x000E
2919 #define IMAGE_REL_ARM_SECREL            0x000F
2920 
2921 /* IA64 relocation types */
2922 #define IMAGE_REL_IA64_ABSOLUTE         0x0000
2923 #define IMAGE_REL_IA64_IMM14            0x0001
2924 #define IMAGE_REL_IA64_IMM22            0x0002
2925 #define IMAGE_REL_IA64_IMM64            0x0003
2926 #define IMAGE_REL_IA64_DIR              0x0004
2927 #define IMAGE_REL_IA64_DIR64            0x0005
2928 #define IMAGE_REL_IA64_PCREL21B         0x0006
2929 #define IMAGE_REL_IA64_PCREL21M         0x0007
2930 #define IMAGE_REL_IA64_PCREL21F         0x0008
2931 #define IMAGE_REL_IA64_GPREL22          0x0009
2932 #define IMAGE_REL_IA64_LTOFF22          0x000A
2933 #define IMAGE_REL_IA64_SECTION          0x000B
2934 #define IMAGE_REL_IA64_SECREL22         0x000C
2935 #define IMAGE_REL_IA64_SECREL64I        0x000D
2936 #define IMAGE_REL_IA64_SECREL           0x000E
2937 #define IMAGE_REL_IA64_LTOFF64          0x000F
2938 #define IMAGE_REL_IA64_DIR32NB          0x0010
2939 #define IMAGE_REL_IA64_RESERVED_11      0x0011
2940 #define IMAGE_REL_IA64_RESERVED_12      0x0012
2941 #define IMAGE_REL_IA64_RESERVED_13      0x0013
2942 #define IMAGE_REL_IA64_RESERVED_14      0x0014
2943 #define IMAGE_REL_IA64_RESERVED_15      0x0015
2944 #define IMAGE_REL_IA64_RESERVED_16      0x0016
2945 #define IMAGE_REL_IA64_ADDEND           0x001F
2946 
2947 /* AMD64 relocation types */
2948 #define IMAGE_REL_AMD64_ABSOLUTE        0x0000
2949 #define IMAGE_REL_AMD64_ADDR64          0x0001
2950 #define IMAGE_REL_AMD64_ADDR32          0x0002
2951 #define IMAGE_REL_AMD64_ADDR32NB        0x0003
2952 #define IMAGE_REL_AMD64_REL32           0x0004
2953 #define IMAGE_REL_AMD64_REL32_1         0x0005
2954 #define IMAGE_REL_AMD64_REL32_2         0x0006
2955 #define IMAGE_REL_AMD64_REL32_3         0x0007
2956 #define IMAGE_REL_AMD64_REL32_4         0x0008
2957 #define IMAGE_REL_AMD64_REL32_5         0x0009
2958 #define IMAGE_REL_AMD64_SECTION         0x000A
2959 #define IMAGE_REL_AMD64_SECREL          0x000B
2960 #define IMAGE_REL_AMD64_SECREL7         0x000C
2961 #define IMAGE_REL_AMD64_TOKEN           0x000D
2962 #define IMAGE_REL_AMD64_SREL32          0x000E
2963 #define IMAGE_REL_AMD64_PAIR            0x000F
2964 #define IMAGE_REL_AMD64_SSPAN32         0x0010
2965 
2966 /* archive format */
2967 
2968 #define IMAGE_ARCHIVE_START_SIZE             8
2969 #define IMAGE_ARCHIVE_START                  "!<arch>\n"
2970 #define IMAGE_ARCHIVE_END                    "`\n"
2971 #define IMAGE_ARCHIVE_PAD                    "\n"
2972 #define IMAGE_ARCHIVE_LINKER_MEMBER          "/               "
2973 #define IMAGE_ARCHIVE_LONGNAMES_MEMBER       "//              "
2974 
2975 typedef struct _IMAGE_ARCHIVE_MEMBER_HEADER
2976 {
2977     BYTE     Name[16];
2978     BYTE     Date[12];
2979     BYTE     UserID[6];
2980     BYTE     GroupID[6];
2981     BYTE     Mode[8];
2982     BYTE     Size[10];
2983     BYTE     EndHeader[2];
2984 } IMAGE_ARCHIVE_MEMBER_HEADER, *PIMAGE_ARCHIVE_MEMBER_HEADER;
2985 
2986 #define IMAGE_SIZEOF_ARCHIVE_MEMBER_HDR 60
2987 
2988 typedef struct _IMPORT_OBJECT_HEADER
2989 {
2990     WORD     Sig1;
2991     WORD     Sig2;
2992     WORD     Version;
2993     WORD     Machine;
2994     DWORD    TimeDateStamp;
2995     DWORD    SizeOfData;
2996     union
2997     {
2998         WORD Ordinal;
2999         WORD Hint;
3000     } DUMMYUNIONNAME;
3001     WORD     Type : 2;
3002     WORD     NameType : 3;
3003     WORD     Reserved : 11;
3004 } IMPORT_OBJECT_HEADER;
3005 
3006 #define IMPORT_OBJECT_HDR_SIG2  0xffff
3007 
3008 typedef enum IMPORT_OBJECT_TYPE
3009 {
3010     IMPORT_OBJECT_CODE = 0,
3011     IMPORT_OBJECT_DATA = 1,
3012     IMPORT_OBJECT_CONST = 2
3013 } IMPORT_OBJECT_TYPE;
3014 
3015 typedef enum IMPORT_OBJECT_NAME_TYPE
3016 {
3017     IMPORT_OBJECT_ORDINAL = 0,
3018     IMPORT_OBJECT_NAME = 1,
3019     IMPORT_OBJECT_NAME_NO_PREFIX = 2,
3020     IMPORT_OBJECT_NAME_UNDECORATE = 3
3021 } IMPORT_OBJECT_NAME_TYPE;
3022 
3023 typedef struct _ANON_OBJECT_HEADER
3024 {
3025     WORD     Sig1;
3026     WORD     Sig2;
3027     WORD     Version;
3028     WORD     Machine;
3029     DWORD    TimeDateStamp;
3030     CLSID    ClassID;
3031     DWORD    SizeOfData;
3032 } ANON_OBJECT_HEADER;
3033 
3034 /*
3035  * Resource directory stuff
3036  */
3037 typedef struct _IMAGE_RESOURCE_DIRECTORY {
3038         DWORD   Characteristics;
3039         DWORD   TimeDateStamp;
3040         WORD    MajorVersion;
3041         WORD    MinorVersion;
3042         WORD    NumberOfNamedEntries;
3043         WORD    NumberOfIdEntries;
3044         /*  IMAGE_RESOURCE_DIRECTORY_ENTRY DirectoryEntries[]; */
3045 } IMAGE_RESOURCE_DIRECTORY,*PIMAGE_RESOURCE_DIRECTORY;
3046 
3047 #define IMAGE_RESOURCE_NAME_IS_STRING           0x80000000
3048 #define IMAGE_RESOURCE_DATA_IS_DIRECTORY        0x80000000
3049 
3050 typedef struct _IMAGE_RESOURCE_DIRECTORY_ENTRY {
3051         union {
3052                 struct {
3053 #ifdef BITFIELDS_BIGENDIAN
3054                         unsigned NameIsString:1;
3055                         unsigned NameOffset:31;
3056 #else
3057                         unsigned NameOffset:31;
3058                         unsigned NameIsString:1;
3059 #endif
3060                 } DUMMYSTRUCTNAME1;
3061                 DWORD   Name;
3062                 struct {
3063 #ifdef WORDS_BIGENDIAN
3064                         WORD    __pad;
3065                         WORD    Id;
3066 #else
3067                         WORD    Id;
3068                         WORD    __pad;
3069 #endif
3070                 } DUMMYSTRUCTNAME2;
3071         } DUMMYUNIONNAME1;
3072         union {
3073                 DWORD   OffsetToData;
3074                 struct {
3075 #ifdef BITFIELDS_BIGENDIAN
3076                         unsigned DataIsDirectory:1;
3077                         unsigned OffsetToDirectory:31;
3078 #else
3079                         unsigned OffsetToDirectory:31;
3080                         unsigned DataIsDirectory:1;
3081 #endif
3082                 } DUMMYSTRUCTNAME3;
3083         } DUMMYUNIONNAME2;
3084 } IMAGE_RESOURCE_DIRECTORY_ENTRY,*PIMAGE_RESOURCE_DIRECTORY_ENTRY;
3085 
3086 
3087 typedef struct _IMAGE_RESOURCE_DIRECTORY_STRING {
3088         WORD    Length;
3089         CHAR    NameString[ 1 ];
3090 } IMAGE_RESOURCE_DIRECTORY_STRING,*PIMAGE_RESOURCE_DIRECTORY_STRING;
3091 
3092 typedef struct _IMAGE_RESOURCE_DIR_STRING_U {
3093         WORD    Length;
3094         WCHAR   NameString[ 1 ];
3095 } IMAGE_RESOURCE_DIR_STRING_U,*PIMAGE_RESOURCE_DIR_STRING_U;
3096 
3097 typedef struct _IMAGE_RESOURCE_DATA_ENTRY {
3098         DWORD   OffsetToData;
3099         DWORD   Size;
3100         DWORD   CodePage;
3101         DWORD   Reserved;
3102 } IMAGE_RESOURCE_DATA_ENTRY,*PIMAGE_RESOURCE_DATA_ENTRY;
3103 
3104 
3105 typedef VOID (CALLBACK *PIMAGE_TLS_CALLBACK)(
3106         LPVOID DllHandle,DWORD Reason,LPVOID Reserved
3107 );
3108 
3109 typedef struct _IMAGE_TLS_DIRECTORY64 {
3110     ULONGLONG   StartAddressOfRawData;
3111     ULONGLONG   EndAddressOfRawData;
3112     ULONGLONG   AddressOfIndex;
3113     ULONGLONG   AddressOfCallBacks;
3114     DWORD       SizeOfZeroFill;
3115     DWORD       Characteristics;
3116 } IMAGE_TLS_DIRECTORY64, *PIMAGE_TLS_DIRECTORY64;
3117 
3118 typedef struct _IMAGE_TLS_DIRECTORY32 {
3119     DWORD   StartAddressOfRawData;
3120     DWORD   EndAddressOfRawData;
3121     DWORD   AddressOfIndex;
3122     DWORD   AddressOfCallBacks;
3123     DWORD   SizeOfZeroFill;
3124     DWORD   Characteristics;
3125 } IMAGE_TLS_DIRECTORY32, *PIMAGE_TLS_DIRECTORY32;
3126 
3127 #ifdef _WIN64
3128 typedef IMAGE_TLS_DIRECTORY64           IMAGE_TLS_DIRECTORY;
3129 typedef PIMAGE_TLS_DIRECTORY64          PIMAGE_TLS_DIRECTORY;
3130 #else
3131 typedef IMAGE_TLS_DIRECTORY32           IMAGE_TLS_DIRECTORY;
3132 typedef PIMAGE_TLS_DIRECTORY32          PIMAGE_TLS_DIRECTORY;
3133 #endif
3134 
3135 typedef struct _IMAGE_DEBUG_DIRECTORY {
3136   DWORD Characteristics;
3137   DWORD TimeDateStamp;
3138   WORD  MajorVersion;
3139   WORD  MinorVersion;
3140   DWORD Type;
3141   DWORD SizeOfData;
3142   DWORD AddressOfRawData;
3143   DWORD PointerToRawData;
3144 } IMAGE_DEBUG_DIRECTORY, *PIMAGE_DEBUG_DIRECTORY;
3145 
3146 #define IMAGE_DEBUG_TYPE_UNKNOWN        0
3147 #define IMAGE_DEBUG_TYPE_COFF           1
3148 #define IMAGE_DEBUG_TYPE_CODEVIEW       2
3149 #define IMAGE_DEBUG_TYPE_FPO            3
3150 #define IMAGE_DEBUG_TYPE_MISC           4
3151 #define IMAGE_DEBUG_TYPE_EXCEPTION      5
3152 #define IMAGE_DEBUG_TYPE_FIXUP          6
3153 #define IMAGE_DEBUG_TYPE_OMAP_TO_SRC    7
3154 #define IMAGE_DEBUG_TYPE_OMAP_FROM_SRC  8
3155 #define IMAGE_DEBUG_TYPE_BORLAND        9
3156 #define IMAGE_DEBUG_TYPE_RESERVED10    10
3157 
3158 typedef enum ReplacesCorHdrNumericDefines
3159 {
3160     COMIMAGE_FLAGS_ILONLY           = 0x00000001,
3161     COMIMAGE_FLAGS_32BITREQUIRED    = 0x00000002,
3162     COMIMAGE_FLAGS_IL_LIBRARY       = 0x00000004,
3163     COMIMAGE_FLAGS_STRONGNAMESIGNED = 0x00000008,
3164     COMIMAGE_FLAGS_TRACKDEBUGDATA   = 0x00010000,
3165 
3166     COR_VERSION_MAJOR_V2       = 2,
3167     COR_VERSION_MAJOR          = COR_VERSION_MAJOR_V2,
3168     COR_VERSION_MINOR          = 0,
3169     COR_DELETED_NAME_LENGTH    = 8,
3170     COR_VTABLEGAP_NAME_LENGTH  = 8,
3171 
3172     NATIVE_TYPE_MAX_CB = 1,
3173     COR_ILMETHOD_SECT_SMALL_MAX_DATASIZE = 0xff,
3174 
3175     IMAGE_COR_MIH_METHODRVA  = 0x01,
3176     IMAGE_COR_MIH_EHRVA      = 0x02,
3177     IMAGE_COR_MIH_BASICBLOCK = 0x08,
3178 
3179     COR_VTABLE_32BIT             = 0x01,
3180     COR_VTABLE_64BIT             = 0x02,
3181     COR_VTABLE_FROM_UNMANAGED    = 0x04,
3182     COR_VTABLE_CALL_MOST_DERIVED = 0x10,
3183 
3184     IMAGE_COR_EATJ_THUNK_SIZE = 32,
3185 
3186     MAX_CLASS_NAME   = 1024,
3187     MAX_PACKAGE_NAME = 1024,
3188 } ReplacesCorHdrNumericDefines;
3189 
3190 typedef struct IMAGE_COR20_HEADER
3191 {
3192     DWORD cb;
3193     WORD  MajorRuntimeVersion;
3194     WORD  MinorRuntimeVersion;
3195 
3196     IMAGE_DATA_DIRECTORY MetaData;
3197     DWORD Flags;
3198     DWORD EntryPointToken;
3199 
3200     IMAGE_DATA_DIRECTORY Resources;
3201     IMAGE_DATA_DIRECTORY StrongNameSignature;
3202     IMAGE_DATA_DIRECTORY CodeManagerTable;
3203     IMAGE_DATA_DIRECTORY VTableFixups;
3204     IMAGE_DATA_DIRECTORY ExportAddressTableJumps;
3205     IMAGE_DATA_DIRECTORY ManagedNativeHeader;
3206 
3207 } IMAGE_COR20_HEADER, *PIMAGE_COR20_HEADER;
3208 
3209 typedef struct _IMAGE_COFF_SYMBOLS_HEADER {
3210   DWORD NumberOfSymbols;
3211   DWORD LvaToFirstSymbol;
3212   DWORD NumberOfLinenumbers;
3213   DWORD LvaToFirstLinenumber;
3214   DWORD RvaToFirstByteOfCode;
3215   DWORD RvaToLastByteOfCode;
3216   DWORD RvaToFirstByteOfData;
3217   DWORD RvaToLastByteOfData;
3218 } IMAGE_COFF_SYMBOLS_HEADER, *PIMAGE_COFF_SYMBOLS_HEADER;
3219 
3220 #define FRAME_FPO       0
3221 #define FRAME_TRAP      1
3222 #define FRAME_TSS       2
3223 #define FRAME_NONFPO    3
3224 
3225 typedef struct _FPO_DATA {
3226   DWORD ulOffStart;
3227   DWORD cbProcSize;
3228   DWORD cdwLocals;
3229   WORD  cdwParams;
3230   WORD  cbProlog : 8;
3231   WORD  cbRegs   : 3;
3232   WORD  fHasSEH  : 1;
3233   WORD  fUseBP   : 1;
3234   WORD  reserved : 1;
3235   WORD  cbFrame  : 2;
3236 } FPO_DATA, *PFPO_DATA;
3237 
3238 typedef struct _IMAGE_LOAD_CONFIG_DIRECTORY {
3239   DWORD Size;
3240   DWORD TimeDateStamp;
3241   WORD  MajorVersion;
3242   WORD  MinorVersion;
3243   DWORD GlobalFlagsClear;
3244   DWORD GlobalFlagsSet;
3245   DWORD CriticalSectionDefaultTimeout;
3246   DWORD DeCommitFreeBlockThreshold;
3247   DWORD DeCommitTotalFreeThreshold;
3248   PVOID LockPrefixTable;
3249   DWORD MaximumAllocationSize;
3250   DWORD VirtualMemoryThreshold;
3251   DWORD ProcessHeapFlags;
3252   DWORD ProcessAffinityMask;
3253   WORD  CSDVersion;
3254   WORD  Reserved1;
3255   PVOID EditList;
3256   DWORD SecurityCookie;
3257   DWORD SEHandlerTable;
3258   DWORD SEHandlerCount;
3259 } IMAGE_LOAD_CONFIG_DIRECTORY, *PIMAGE_LOAD_CONFIG_DIRECTORY;
3260 
3261 typedef struct _IMAGE_FUNCTION_ENTRY {
3262   DWORD StartingAddress;
3263   DWORD EndingAddress;
3264   DWORD EndOfPrologue;
3265 } IMAGE_FUNCTION_ENTRY, *PIMAGE_FUNCTION_ENTRY;
3266 
3267 #define IMAGE_DEBUG_MISC_EXENAME    1
3268 
3269 typedef struct _IMAGE_DEBUG_MISC {
3270     DWORD       DataType;
3271     DWORD       Length;
3272     BYTE        Unicode;
3273     BYTE        Reserved[ 3 ];
3274     BYTE        Data[ 1 ];
3275 } IMAGE_DEBUG_MISC, *PIMAGE_DEBUG_MISC;
3276 
3277 /* This is the structure that appears at the very start of a .DBG file. */
3278 
3279 typedef struct _IMAGE_SEPARATE_DEBUG_HEADER {
3280         WORD    Signature;
3281         WORD    Flags;
3282         WORD    Machine;
3283         WORD    Characteristics;
3284         DWORD   TimeDateStamp;
3285         DWORD   CheckSum;
3286         DWORD   ImageBase;
3287         DWORD   SizeOfImage;
3288         DWORD   NumberOfSections;
3289         DWORD   ExportedNamesSize;
3290         DWORD   DebugDirectorySize;
3291         DWORD   SectionAlignment;
3292         DWORD   Reserved[ 2 ];
3293 } IMAGE_SEPARATE_DEBUG_HEADER,*PIMAGE_SEPARATE_DEBUG_HEADER;
3294 
3295 #define IMAGE_SEPARATE_DEBUG_SIGNATURE 0x4944
3296 
3297 
3298 typedef struct tagMESSAGE_RESOURCE_ENTRY {
3299         WORD    Length;
3300         WORD    Flags;
3301         BYTE    Text[1];
3302 } MESSAGE_RESOURCE_ENTRY,*PMESSAGE_RESOURCE_ENTRY;
3303 #define MESSAGE_RESOURCE_UNICODE        0x0001
3304 
3305 typedef struct tagMESSAGE_RESOURCE_BLOCK {
3306         DWORD   LowId;
3307         DWORD   HighId;
3308         DWORD   OffsetToEntries;
3309 } MESSAGE_RESOURCE_BLOCK,*PMESSAGE_RESOURCE_BLOCK;
3310 
3311 typedef struct tagMESSAGE_RESOURCE_DATA {
3312         DWORD                   NumberOfBlocks;
3313         MESSAGE_RESOURCE_BLOCK  Blocks[ 1 ];
3314 } MESSAGE_RESOURCE_DATA,*PMESSAGE_RESOURCE_DATA;
3315 
3316 /*
3317  * Here follows typedefs for security and tokens.
3318  */
3319 
3320 /*
3321  * First a constant for the following typedefs.
3322  */
3323 
3324 #define ANYSIZE_ARRAY   1
3325 
3326 /* FIXME:  Orphan.  What does it point to? */
3327 typedef PVOID PACCESS_TOKEN;
3328 typedef PVOID PSECURITY_DESCRIPTOR;
3329 typedef PVOID PSID;
3330 
3331 /*
3332  * TOKEN_INFORMATION_CLASS
3333  */
3334 
3335 typedef enum _TOKEN_INFORMATION_CLASS {
3336   TokenUser = 1,
3337   TokenGroups,
3338   TokenPrivileges,
3339   TokenOwner,
3340   TokenPrimaryGroup,
3341   TokenDefaultDacl,
3342   TokenSource,
3343   TokenType,
3344   TokenImpersonationLevel,
3345   TokenStatistics,
3346   TokenRestrictedSids,
3347   TokenSessionId,
3348   TokenGroupsAndPrivileges,
3349   TokenSessionReference,
3350   TokenSandBoxInert
3351 } TOKEN_INFORMATION_CLASS;
3352 
3353 #define TOKEN_TOKEN_ADJUST_DEFAULT   0x0080
3354 #define TOKEN_ADJUST_GROUPS          0x0040
3355 #define TOKEN_ADJUST_PRIVILEGES      0x0020
3356 #define TOKEN_ADJUST_SESSIONID       0x0100
3357 #define TOKEN_ASSIGN_PRIMARY         0x0001
3358 #define TOKEN_DUPLICATE              0x0002
3359 #define TOKEN_EXECUTE                STANDARD_RIGHTS_EXECUTE
3360 #define TOKEN_IMPERSONATE            0x0004
3361 #define TOKEN_QUERY                  0x0008
3362 #define TOKEN_QUERY_SOURCE           0x0010
3363 #define TOKEN_ADJUST_DEFAULT         0x0080
3364 #define TOKEN_READ                   (STANDARD_RIGHTS_READ|TOKEN_QUERY)
3365 #define TOKEN_WRITE                  (STANDARD_RIGHTS_WRITE     | \
3366                                         TOKEN_ADJUST_PRIVILEGES | \
3367                                         TOKEN_ADJUST_GROUPS | \
3368                                         TOKEN_ADJUST_DEFAULT )
3369 #define TOKEN_ALL_ACCESS             (STANDARD_RIGHTS_REQUIRED | \
3370                                         TOKEN_ASSIGN_PRIMARY | \
3371                                         TOKEN_DUPLICATE | \
3372                                         TOKEN_IMPERSONATE | \
3373                                         TOKEN_QUERY | \
3374                                         TOKEN_QUERY_SOURCE | \
3375                                         TOKEN_ADJUST_PRIVILEGES | \
3376                                         TOKEN_ADJUST_GROUPS | \
3377                                         TOKEN_ADJUST_SESSIONID | \
3378                                         TOKEN_ADJUST_DEFAULT )
3379 
3380 #ifndef _SECURITY_DEFINED
3381 #define _SECURITY_DEFINED
3382 
3383 
3384 typedef DWORD ACCESS_MASK, *PACCESS_MASK;
3385 
3386 typedef struct _GENERIC_MAPPING {
3387     ACCESS_MASK GenericRead;
3388     ACCESS_MASK GenericWrite;
3389     ACCESS_MASK GenericExecute;
3390     ACCESS_MASK GenericAll;
3391 } GENERIC_MAPPING, *PGENERIC_MAPPING;
3392 
3393 #ifndef SID_IDENTIFIER_AUTHORITY_DEFINED
3394 #define SID_IDENTIFIER_AUTHORITY_DEFINED
3395 typedef struct {
3396     BYTE Value[6];
3397 } SID_IDENTIFIER_AUTHORITY, *PSID_IDENTIFIER_AUTHORITY;
3398 #endif /* !defined(SID_IDENTIFIER_AUTHORITY_DEFINED) */
3399 
3400 #ifndef SID_DEFINED
3401 #define SID_DEFINED
3402 typedef struct _SID {
3403     BYTE Revision;
3404     BYTE SubAuthorityCount;
3405     SID_IDENTIFIER_AUTHORITY IdentifierAuthority;
3406     DWORD SubAuthority[1];
3407 } SID,*PISID;
3408 #endif /* !defined(SID_DEFINED) */
3409 
3410 #define SID_REVISION                    (1)     /* Current revision */
3411 #define SID_MAX_SUB_AUTHORITIES         (15)    /* current max subauths */
3412 #define SID_RECOMMENDED_SUB_AUTHORITIES (1)     /* recommended subauths */
3413 
3414 #define SECURITY_MAX_SID_SIZE (sizeof(SID) - sizeof(DWORD) + (SID_MAX_SUB_AUTHORITIES * sizeof(DWORD)))
3415 
3416 /*
3417  * ACL
3418  */
3419 
3420 #define ACL_REVISION1 1
3421 #define ACL_REVISION2 2
3422 #define ACL_REVISION3 3
3423 #define ACL_REVISION4 4
3424 
3425 #define MIN_ACL_REVISION ACL_REVISION2
3426 #define MAX_ACL_REVISION ACL_REVISION4
3427 
3428 #define ACL_REVISION 2
3429 
3430 typedef struct _ACL {
3431     BYTE AclRevision;
3432     BYTE Sbz1;
3433     WORD AclSize;
3434     WORD AceCount;
3435     WORD Sbz2;
3436 } ACL, *PACL;
3437 
3438 typedef enum _ACL_INFORMATION_CLASS
3439 {
3440   AclRevisionInformation = 1, 
3441   AclSizeInformation
3442 } ACL_INFORMATION_CLASS;
3443 
3444 typedef struct _ACL_REVISION_INFORMATION
3445 {
3446     DWORD AclRevision;
3447 } ACL_REVISION_INFORMATION, *PACL_REVISION_INFORMATION;
3448 
3449 typedef struct _ACL_SIZE_INFORMATION
3450 {
3451     DWORD AceCount;
3452     DWORD AclBytesInUse;
3453     DWORD AclBytesFree;
3454 } ACL_SIZE_INFORMATION, *PACL_SIZE_INFORMATION;
3455 
3456 /* SECURITY_DESCRIPTOR */
3457 #define SECURITY_DESCRIPTOR_REVISION    1
3458 #define SECURITY_DESCRIPTOR_REVISION1   1
3459 
3460 
3461 /*
3462  * Privilege Names
3463  */
3464 #define SE_CREATE_TOKEN_NAME            TEXT("SeCreateTokenPrivilege")
3465 #define SE_ASSIGNPRIMARYTOKEN_NAME      TEXT("SeAssignPrimaryTokenPrivilege")
3466 #define SE_LOCK_MEMORY_NAME             TEXT("SeLockMemoryPrivilege")
3467 #define SE_INCREASE_QUOTA_NAME          TEXT("SeIncreaseQuotaPrivilege")
3468 #define SE_UNSOLICITED_INPUT_NAME       TEXT("SeUnsolicitedInputPrivilege")
3469 #define SE_MACHINE_ACCOUNT_NAME         TEXT("SeMachineAccountPrivilege")
3470 #define SE_TCB_NAME                     TEXT("SeTcbPrivilege")
3471 #define SE_SECURITY_NAME                TEXT("SeSecurityPrivilege")
3472 #define SE_TAKE_OWNERSHIP_NAME          TEXT("SeTakeOwnershipPrivilege")
3473 #define SE_LOAD_DRIVER_NAME             TEXT("SeLoadDriverPrivilege")
3474 #define SE_SYSTEM_PROFILE_NAME          TEXT("SeSystemProfilePrivilege")
3475 #define SE_SYSTEMTIME_NAME              TEXT("SeSystemtimePrivilege")
3476 #define SE_PROF_SINGLE_PROCESS_NAME     TEXT("SeProfileSingleProcessPrivilege")
3477 #define SE_INC_BASE_PRIORITY_NAME       TEXT("SeIncreaseBasePriorityPrivilege")
3478 #define SE_CREATE_PAGEFILE_NAME         TEXT("SeCreatePagefilePrivilege")
3479 #define SE_CREATE_PERMANENT_NAME        TEXT("SeCreatePermanentPrivilege")
3480 #define SE_BACKUP_NAME                  TEXT("SeBackupPrivilege")
3481 #define SE_RESTORE_NAME                 TEXT("SeRestorePrivilege")
3482 #define SE_SHUTDOWN_NAME                TEXT("SeShutdownPrivilege")
3483 #define SE_DEBUG_NAME                   TEXT("SeDebugPrivilege")
3484 #define SE_AUDIT_NAME                   TEXT("SeAuditPrivilege")
3485 #define SE_SYSTEM_ENVIRONMENT_NAME      TEXT("SeSystemEnvironmentPrivilege")
3486 #define SE_CHANGE_NOTIFY_NAME           TEXT("SeChangeNotifyPrivilege")
3487 #define SE_REMOTE_SHUTDOWN_NAME         TEXT("SeRemoteShutdownPrivilege")
3488 #define SE_UNDOCK_NAME                  TEXT("SeUndockPrivilege")
3489 #define SE_ENABLE_DELEGATION_NAME       TEXT("SeEnableDelegationPrivilege")
3490 #define SE_MANAGE_VOLUME_NAME           TEXT("SeManageVolumePrivilege")
3491 #define SE_IMPERSONATE_NAME             TEXT("SeImpersonatePrivilege")
3492 #define SE_CREATE_GLOBAL_NAME           TEXT("SeCreateGlobalPrivilege")
3493 
3494 #define SE_GROUP_MANDATORY              0x00000001
3495 #define SE_GROUP_ENABLED_BY_DEFAULT     0x00000002
3496 #define SE_GROUP_ENABLED                0x00000004
3497 #define SE_GROUP_OWNER                  0x00000008
3498 #define SE_GROUP_USE_FOR_DENY_ONLY      0x00000010
3499 #define SE_GROUP_LOGON_ID               0xC0000000
3500 #define SE_GROUP_RESOURCE               0x20000000
3501 
3502 #define SE_PRIVILEGE_ENABLED_BY_DEFAULT 0x00000001
3503 #define SE_PRIVILEGE_ENABLED            0x00000002
3504 #define SE_PRIVILEGE_REMOVE             0x00000004
3505 #define SE_PRIVILEGE_USED_FOR_ACCESS    0x80000000
3506 
3507 #define PRIVILEGE_SET_ALL_NECESSARY     1
3508 
3509 #define SE_OWNER_DEFAULTED              0x00000001
3510 #define SE_GROUP_DEFAULTED              0x00000002
3511 #define SE_DACL_PRESENT                 0x00000004
3512 #define SE_DACL_DEFAULTED               0x00000008
3513 #define SE_SACL_PRESENT                 0x00000010
3514 #define SE_SACL_DEFAULTED               0x00000020
3515 #define SE_DACL_AUTO_INHERIT_REQ        0x00000100
3516 #define SE_SACL_AUTO_INHERIT_REQ        0x00000200
3517 #define SE_DACL_AUTO_INHERITED          0x00000400
3518 #define SE_SACL_AUTO_INHERITED          0x00000800
3519 #define SE_DACL_PROTECTED               0x00001000
3520 #define SE_SACL_PROTECTED               0x00002000
3521 #define SE_RM_CONTROL_VALID             0x00004000
3522 #define SE_SELF_RELATIVE                0x00008000
3523 
3524 typedef DWORD SECURITY_INFORMATION, *PSECURITY_INFORMATION;
3525 typedef WORD SECURITY_DESCRIPTOR_CONTROL, *PSECURITY_DESCRIPTOR_CONTROL;
3526 
3527 /* The security descriptor structure */
3528 typedef struct {
3529     BYTE Revision;
3530     BYTE Sbz1;
3531     SECURITY_DESCRIPTOR_CONTROL Control;
3532     DWORD Owner;
3533     DWORD Group;
3534     DWORD Sacl;
3535     DWORD Dacl;
3536 } SECURITY_DESCRIPTOR_RELATIVE, *PISECURITY_DESCRIPTOR_RELATIVE;
3537 
3538 typedef struct {
3539     BYTE Revision;
3540     BYTE Sbz1;
3541     SECURITY_DESCRIPTOR_CONTROL Control;
3542     PSID Owner;
3543     PSID Group;
3544     PACL Sacl;
3545     PACL Dacl;
3546 } SECURITY_DESCRIPTOR, *PISECURITY_DESCRIPTOR;
3547 
3548 #define SECURITY_DESCRIPTOR_MIN_LENGTH   (sizeof(SECURITY_DESCRIPTOR))
3549 
3550 #endif /* _SECURITY_DEFINED */
3551 
3552 /*
3553  * SID_AND_ATTRIBUTES
3554  */
3555 
3556 typedef struct _SID_AND_ATTRIBUTES {
3557   PSID  Sid;
3558   DWORD Attributes;
3559 } SID_AND_ATTRIBUTES, *PSID_AND_ATTRIBUTES;
3560 
3561 /* security entities */
3562 #define SECURITY_NULL_RID                       (0x00000000L)
3563 #define SECURITY_WORLD_RID                      (0x00000000L)
3564 #define SECURITY_LOCAL_RID                      (0X00000000L)
3565 
3566 #define SECURITY_NULL_SID_AUTHORITY             {0,0,0,0,0,0}
3567 
3568 /* S-1-1 */
3569 #define SECURITY_WORLD_SID_AUTHORITY            {0,0,0,0,0,1}
3570 
3571 /* S-1-2 */
3572 #define SECURITY_LOCAL_SID_AUTHORITY            {0,0,0,0,0,2}
3573 
3574 /* S-1-3 */
3575 #define SECURITY_CREATOR_SID_AUTHORITY          {0,0,0,0,0,3}
3576 #define SECURITY_CREATOR_OWNER_RID              (0x00000000L)
3577 #define SECURITY_CREATOR_GROUP_RID              (0x00000001L)
3578 #define SECURITY_CREATOR_OWNER_SERVER_RID       (0x00000002L)
3579 #define SECURITY_CREATOR_GROUP_SERVER_RID       (0x00000003L)
3580 
3581 /* S-1-4 */
3582 #define SECURITY_NON_UNIQUE_AUTHORITY           {0,0,0,0,0,4}
3583 
3584 /* S-1-5 */
3585 #define SECURITY_NT_AUTHORITY                   {0,0,0,0,0,5}
3586 #define SECURITY_DIALUP_RID                     0x00000001L
3587 #define SECURITY_NETWORK_RID                    0x00000002L
3588 #define SECURITY_BATCH_RID                      0x00000003L
3589 #define SECURITY_INTERACTIVE_RID                0x00000004L
3590 #define SECURITY_LOGON_IDS_RID                  0x00000005L
3591 #define SECURITY_SERVICE_RID                    0x00000006L
3592 #define SECURITY_ANONYMOUS_LOGON_RID            0x00000007L
3593 #define SECURITY_PROXY_RID                      0x00000008L
3594 #define SECURITY_ENTERPRISE_CONTROLLERS_RID     0x00000009L
3595 #define SECURITY_SERVER_LOGON_RID               SECURITY_ENTERPRISE_CONTROLLERS_RID
3596 #define SECURITY_PRINCIPAL_SELF_RID             0x0000000AL
3597 #define SECURITY_AUTHENTICATED_USER_RID         0x0000000BL
3598 #define SECURITY_RESTRICTED_CODE_RID            0x0000000CL
3599 #define SECURITY_TERMINAL_SERVER_RID            0x0000000DL
3600 #define SECURITY_REMOTE_LOGON_RID               0x0000000EL
3601 #define SECURITY_THIS_ORGANIZATION_RID          0x0000000FL
3602 #define SECURITY_LOCAL_SYSTEM_RID               0x00000012L
3603 #define SECURITY_LOCAL_SERVICE_RID              0x00000013L
3604 #define SECURITY_NETWORK_SERVICE_RID            0x00000014L
3605 #define SECURITY_NT_NON_UNIQUE                  0x00000015L
3606 #define SECURITY_BUILTIN_DOMAIN_RID             0x00000020L
3607 
3608 #define SECURITY_PACKAGE_BASE_RID               0x00000040L
3609 #define SECURITY_PACKAGE_NTLM_RID               0x0000000AL
3610 #define