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