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