4 * This file is part of the ReactOS PSDK package.
7 * Created by Casper S. Hornstrup <chorns@users.sourceforge.net>
9 * THIS SOFTWARE IS NOT COPYRIGHTED
11 * This source code is offered for use in the public domain. You may
12 * use, modify or distribute it freely.
14 * This code is distributed in the hope that it will be useful but
15 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
16 * DISCLAIMED. This includes but is not limited to warranties of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
28 #include <sdkddkver.h>
29 #include <specstrings.h>
31 // FIXME: Shouldn't be included!
35 /* Helper macro to enable gcc's extension. */
36 #ifndef __GNU_EXTENSION
38 #define __GNU_EXTENSION __extension__
40 #define __GNU_EXTENSION
44 /* Pseudo Modifiers for Input Parameters */
71 /* Defines the "size" of an any-size array */
73 #define ANYSIZE_ARRAY 1
76 /* Constant modifier */
91 #define NULL ((void *)0)
92 #define NULL64 ((void * POINTER_64)0)
99 // We should use the -fms-extensions compiler flag for gcc,
100 // and clean up the mess.
102 #ifndef __ANONYMOUS_DEFINED
103 #define __ANONYMOUS_DEFINED
105 #ifndef NONAMELESSUNION
107 #define _ANONYMOUS_UNION __GNU_EXTENSION
108 #define _ANONYMOUS_STRUCT __GNU_EXTENSION
109 #elif defined(__WATCOMC__) || defined(_MSC_VER)
110 #define _ANONYMOUS_UNION
111 #define _ANONYMOUS_STRUCT
112 #endif /* __GNUC__/__WATCOMC__ */
113 #endif /* NONAMELESSUNION */
115 #ifndef _ANONYMOUS_UNION
116 #define _ANONYMOUS_UNION
117 #define _UNION_NAME(x) x
118 #define DUMMYUNIONNAME u
119 #define DUMMYUNIONNAME2 u2
120 #define DUMMYUNIONNAME3 u3
121 #define DUMMYUNIONNAME4 u4
122 #define DUMMYUNIONNAME5 u5
123 #define DUMMYUNIONNAME6 u6
124 #define DUMMYUNIONNAME7 u7
125 #define DUMMYUNIONNAME8 u8
127 #define _UNION_NAME(x)
128 #define DUMMYUNIONNAME
129 #define DUMMYUNIONNAME2
130 #define DUMMYUNIONNAME3
131 #define DUMMYUNIONNAME4
132 #define DUMMYUNIONNAME5
133 #define DUMMYUNIONNAME6
134 #define DUMMYUNIONNAME7
135 #define DUMMYUNIONNAME8
138 #ifndef _ANONYMOUS_STRUCT
139 #define _ANONYMOUS_STRUCT
140 #define _STRUCT_NAME(x) x
141 #define DUMMYSTRUCTNAME s
142 #define DUMMYSTRUCTNAME2 s2
143 #define DUMMYSTRUCTNAME3 s3
144 #define DUMMYSTRUCTNAME4 s4
145 #define DUMMYSTRUCTNAME5 s5
147 #define _STRUCT_NAME(x)
148 #define DUMMYSTRUCTNAME
149 #define DUMMYSTRUCTNAME2
150 #define DUMMYSTRUCTNAME3
151 #define DUMMYSTRUCTNAME4
152 #define DUMMYSTRUCTNAME5
155 #endif /* __ANONYMOUS_DEFINED */
157 #if defined(_M_MRX000) || defined(_M_ALPHA) || defined(_M_PPC) || defined(_M_IA64) || defined(_M_AMD64)
158 #define ALIGNMENT_MACHINE
159 #define UNALIGNED __unaligned
161 #define UNALIGNED64 __unaligned
166 #undef ALIGNMENT_MACHINE
171 #if defined(_WIN64) || defined(_M_ALPHA)
172 #define MAX_NATURAL_ALIGNMENT sizeof(ULONGLONG)
173 #define MEMORY_ALLOCATION_ALIGNMENT 16
175 #define MAX_NATURAL_ALIGNMENT sizeof(ULONG)
176 #define MEMORY_ALLOCATION_ALIGNMENT 8
179 #if defined(_M_MRX000) && !(defined(MIDL_PASS) || defined(RC_INVOKED)) && defined(ENABLE_RESTRICTED)
180 #define RESTRICTED_POINTER __restrict
182 #define RESTRICTED_POINTER
185 #define ARGUMENT_PRESENT(ArgumentPointer) \
186 ((CHAR*)((ULONG_PTR)(ArgumentPointer)) != (CHAR*)NULL)
188 /* Returns the base address of a structure from a structure member */
189 #ifndef CONTAINING_RECORD
190 #define CONTAINING_RECORD(address, type, field) \
191 ((type *)(((ULONG_PTR)address) - (ULONG_PTR)(&(((type *)0)->field))))
194 /* Returns the byte offset of the specified structure's member */
196 #define FIELD_OFFSET(Type, Field) ((LONG)(LONG_PTR)&(((Type*) 0)->Field))
198 #define FIELD_OFFSET(Type, Field) __builtin_offsetof(Type, Field)
201 /* Returns the type's alignment */
202 #if defined(_MSC_VER) && (_MSC_VER >= 1300)
203 #define TYPE_ALIGNMENT(t) __alignof(t)
205 #define TYPE_ALIGNMENT(t) FIELD_OFFSET(struct { char x; t test; }, test)
208 #if defined(_AMD64_) || defined(_X86_)
209 #define PROBE_ALIGNMENT(_s) TYPE_ALIGNMENT(ULONG)
210 #elif defined(_IA64_) || defined(_ARM_)
211 #define PROBE_ALIGNMENT(_s) max((TYPE_ALIGNMENT(_s), TYPE_ALIGNMENT(ULONG))
213 #error "unknown architecture"
216 /* Calling Conventions */
218 #define FASTCALL __fastcall
223 #define NTAPI __stdcall
226 /* Import and Export Specifiers */
228 /* Done the same way as in windef.h for now */
229 #define DECLSPEC_IMPORT __declspec(dllimport)
230 #define DECLSPEC_NORETURN __declspec(noreturn)
232 #ifndef DECLSPEC_ADDRSAFE
233 #if (_MSC_VER >= 1200) && (defined(_M_ALPHA) || defined(_M_AXP64))
234 #define DECLSPEC_ADDRSAFE __declspec(address_safe)
236 #define DECLSPEC_ADDRSAFE
238 #endif /* DECLSPEC_ADDRSAFE */
241 #if (_MSC_VER >= 1210)
242 #define NOP_FUNCTION __noop
244 #define NOP_FUNCTION (void)0
248 #if !defined(_NTSYSTEM_)
249 #define NTSYSAPI DECLSPEC_IMPORT
250 #define NTSYSCALLAPI DECLSPEC_IMPORT
253 #if defined(_NTDLLBUILD_)
256 #define NTSYSCALLAPI DECLSPEC_ADDRSAFE
262 #if defined(_MSC_VER) && (_MSC_VER >= 1200)
263 #define FORCEINLINE __forceinline
264 #elif defined(_MSC_VER)
265 #define FORCEINLINE __inline
267 # if ( __MINGW_GNUC_PREREQ(4, 3) && __STDC_VERSION__ >= 199901L)
268 # define FORCEINLINE extern inline __attribute__((__always_inline__,__gnu_inline__))
270 # define FORCEINLINE extern __inline__ __attribute__((__always_inline__))
273 #endif /* FORCEINLINE */
275 #ifndef DECLSPEC_NOINLINE
276 #if (_MSC_VER >= 1300)
277 #define DECLSPEC_NOINLINE __declspec(noinline)
278 #elif defined(__GNUC__)
279 #define DECLSPEC_NOINLINE __attribute__((noinline))
281 #define DECLSPEC_NOINLINE
283 #endif /* DECLSPEC_NOINLINE */
285 #if !defined(_M_CEE_PURE)
286 #define NTAPI_INLINE NTAPI
291 /* Use to specify structure alignment */
292 #ifndef DECLSPEC_ALIGN
293 #if defined(_MSC_VER) && (_MSC_VER >= 1300) && !defined(MIDL_PASS)
294 #define DECLSPEC_ALIGN(x) __declspec(align(x))
295 #elif defined(__GNUC__)
296 #define DECLSPEC_ALIGN(x) __attribute__ ((__aligned__ (x)))
298 #define DECLSPEC_ALIGN(x)
300 #endif /* DECLSPEC_ALIGN */
302 #ifndef SYSTEM_CACHE_ALIGNMENT_SIZE
303 #if defined(_AMD64_) || defined(_X86_)
304 #define SYSTEM_CACHE_ALIGNMENT_SIZE 64
306 #define SYSTEM_CACHE_ALIGNMENT_SIZE 128
310 #ifndef DECLSPEC_CACHEALIGN
311 #define DECLSPEC_CACHEALIGN DECLSPEC_ALIGN(SYSTEM_CACHE_ALIGNMENT_SIZE)
314 #ifndef DECLSPEC_SELECTANY
315 #if (_MSC_VER >= 1100) || defined(__GNUC__)
316 #define DECLSPEC_SELECTANY __declspec(selectany)
318 #define DECLSPEC_SELECTANY
322 /* Use to silence unused variable warnings when it is intentional */
323 #define UNREFERENCED_PARAMETER(P) {(P)=(P);}
324 #define UNREFERENCED_LOCAL_VARIABLE(L) {(L)=(L);}
325 #define DBG_UNREFERENCED_PARAMETER(P) {(P)=(P);}
326 #define DBG_UNREFERENCED_LOCAL_VARIABLE(L) {(L)=(L);}
328 /* min/max helper macros */
332 #define min(a,b) (((a) < (b)) ? (a) : (b))
336 #define max(a,b) (((a) > (b)) ? (a) : (b))
339 #endif /* NOMINMAX */
341 /* Tell windef.h that we have defined some basic types */
346 //typedef void * POINTER_64 PVOID64;
347 typedef PVOID PVOID64
; // FIXME!
351 typedef void *HANDLE
;
352 #define DECLARE_HANDLE(n) typedef struct n##__{int i;}*n
354 typedef PVOID HANDLE
;
355 #define DECLARE_HANDLE(n) typedef HANDLE n
357 typedef HANDLE
*PHANDLE
;
359 /* Upper-Case Versions of Some Standard C Types */
365 #if !defined(MIDL_PASS)
369 typedef double DOUBLE
;
372 typedef unsigned char UCHAR
, *PUCHAR
;
373 typedef unsigned short USHORT
, *PUSHORT
;
374 typedef unsigned long ULONG
, *PULONG
;
375 typedef CONST UCHAR
*PCUCHAR
;
376 typedef CONST USHORT
*PCUSHORT
;
377 typedef CONST ULONG
*PCULONG
;
379 typedef USHORT FSHORT
;
381 typedef UCHAR BOOLEAN
, *PBOOLEAN
;
382 typedef ULONG LOGICAL
;
383 typedef ULONG
*PLOGICAL
;
386 typedef SHORT
*PSHORT
;
388 typedef _Return_type_success_(return >= 0) LONG NTSTATUS
;
389 typedef NTSTATUS
*PNTSTATUS
;
390 typedef signed char SCHAR
;
391 typedef SCHAR
*PSCHAR
;
393 #ifndef _HRESULT_DEFINED
394 #define _HRESULT_DEFINED
395 typedef LONG HRESULT
;
399 __GNU_EXTENSION
typedef __int64 LONGLONG
, *PLONGLONG
;
400 __GNU_EXTENSION
typedef unsigned __int64 ULONGLONG
, *PULONGLONG
;
401 typedef ULONGLONG DWORDLONG
, *PDWORDLONG
;
403 /* Update Sequence Number */
404 typedef LONGLONG USN
;
406 /* ANSI (Multi-byte Character) types */
407 typedef CHAR
*PCHAR
, *LPCH
, *PCH
;
408 typedef CONST CHAR
*LPCCH
, *PCCH
;
409 typedef _Null_terminated_ CHAR
*NPSTR
, *LPSTR
, *PSTR
;
410 typedef _Null_terminated_ PSTR
*PZPSTR
;
411 typedef _Null_terminated_ CONST PSTR
*PCZPSTR
;
412 typedef _Null_terminated_ CONST CHAR
*LPCSTR
, *PCSTR
;
413 typedef _Null_terminated_ PCSTR
*PZPCSTR
;
415 /* Pointer to an Asciiz string */
416 typedef _Null_terminated_ CHAR
*PSZ
;
417 typedef _Null_terminated_ CONST
char *PCSZ
;
419 /* UNICODE (Wide Character) types */
420 typedef wchar_t WCHAR
;
421 typedef WCHAR
*PWCHAR
, *LPWCH
, *PWCH
;
422 typedef CONST WCHAR
*LPCWCH
, *PCWCH
;
423 typedef _Null_terminated_ WCHAR
*NWPSTR
, *LPWSTR
, *PWSTR
;
424 typedef _Null_terminated_ PWSTR
*PZPWSTR
;
425 typedef _Null_terminated_ CONST PWSTR
*PCZPWSTR
;
426 typedef _Null_terminated_ WCHAR UNALIGNED
*LPUWSTR
, *PUWSTR
;
427 typedef _Null_terminated_ CONST WCHAR
*LPCWSTR
, *PCWSTR
;
428 typedef _Null_terminated_ PCWSTR
*PZPCWSTR
;
429 typedef _Null_terminated_ CONST WCHAR UNALIGNED
*LPCUWSTR
, *PCUWSTR
;
430 typedef _NullNull_terminated_ WCHAR
*PZZWSTR
;
432 /* Cardinal Data Types */
433 typedef char CCHAR
, *PCCHAR
;
434 typedef short CSHORT
, *PCSHORT
;
435 typedef ULONG CLONG
, *PCLONG
;
437 /* NLS basics (Locale and Language Ids) */
439 typedef PULONG PLCID
;
440 typedef USHORT LANGID
;
443 UNSPECIFIED_COMPARTMENT_ID
= 0,
444 DEFAULT_COMPARTMENT_ID
445 } COMPARTMENT_ID
, *PCOMPARTMENT_ID
;
447 /* Used to store a non-float 8 byte aligned structure */
450 _ANONYMOUS_UNION
union
452 __GNU_EXTENSION __int64 UseThisFieldToCopy
;
453 double DoNotUseThisField
;
455 } QUAD
, *PQUAD
, UQUAD
, *PUQUAD
;
457 /* Large Integer Unions */
458 #if defined(MIDL_PASS)
459 typedef struct _LARGE_INTEGER
{
461 typedef union _LARGE_INTEGER
{
462 _ANONYMOUS_STRUCT
struct
472 #endif /* MIDL_PASS */
474 } LARGE_INTEGER
, *PLARGE_INTEGER
;
476 #if defined(MIDL_PASS)
477 typedef struct _ULARGE_INTEGER
{
479 typedef union _ULARGE_INTEGER
{
480 _ANONYMOUS_STRUCT
struct
490 #endif /* MIDL_PASS */
492 } ULARGE_INTEGER
, *PULARGE_INTEGER
;
494 /* Physical Addresses are always treated as 64-bit wide */
495 typedef LARGE_INTEGER PHYSICAL_ADDRESS
, *PPHYSICAL_ADDRESS
;
497 /* Locally Unique Identifier */
498 typedef struct _LUID
{
503 /* Native API Return Value Macros */
504 #define NT_SUCCESS(Status) (((NTSTATUS)(Status)) >= 0)
505 #define NT_INFORMATION(Status) ((((ULONG)(Status)) >> 30) == 1)
506 #define NT_WARNING(Status) ((((ULONG)(Status)) >> 30) == 2)
507 #define NT_ERROR(Status) ((((ULONG)(Status)) >> 30) == 3)
510 typedef struct _UNICODE_STRING
{
512 USHORT MaximumLength
;
514 } UNICODE_STRING
, *PUNICODE_STRING
;
515 typedef const UNICODE_STRING
* PCUNICODE_STRING
;
516 #define UNICODE_NULL ((WCHAR)0)
517 #define UNICODE_STRING_MAX_BYTES ((USHORT) 65534)
518 #define UNICODE_STRING_MAX_CHARS (32767)
520 typedef struct _CSTRING
{
522 USHORT MaximumLength
;
524 } CSTRING
, *PCSTRING
;
525 #define ANSI_NULL ((CHAR)0)
527 typedef struct _STRING
{
529 USHORT MaximumLength
;
531 [size_is(MaximumLength
), length_is(Length
) ]
533 _Field_size_bytes_part_opt_(MaximumLength
, Length
) PCHAR Buffer
;
536 typedef STRING ANSI_STRING
;
537 typedef PSTRING PANSI_STRING
;
538 typedef STRING OEM_STRING
;
539 typedef PSTRING POEM_STRING
;
540 typedef CONST STRING
* PCOEM_STRING
;
541 typedef STRING CANSI_STRING
;
542 typedef PSTRING PCANSI_STRING
;
544 typedef struct _STRING32
{
546 USHORT MaximumLength
;
548 } STRING32
, *PSTRING32
,
549 UNICODE_STRING32
, *PUNICODE_STRING32
,
550 ANSI_STRING32
, *PANSI_STRING32
;
552 typedef struct _STRING64
{
554 USHORT MaximumLength
;
556 } STRING64
, *PSTRING64
,
557 UNICODE_STRING64
, *PUNICODE_STRING64
,
558 ANSI_STRING64
, *PANSI_STRING64
;
561 #define MAKELANGID(p, s) ((((USHORT)(s)) << 10) | (USHORT)(p))
562 #define PRIMARYLANGID(lgid) ((USHORT)(lgid) & 0x3ff)
563 #define SUBLANGID(lgid) ((USHORT)(lgid) >> 10)
565 #define NLS_VALID_LOCALE_MASK 0x000fffff
567 #define MAKELCID(lgid, srtid) ((ULONG)((((ULONG)((USHORT)(srtid))) << 16) | \
568 ((ULONG)((USHORT)(lgid)))))
569 #define MAKESORTLCID(lgid, srtid, ver) \
570 ((ULONG)((MAKELCID(lgid, srtid)) | \
571 (((ULONG)((USHORT)(ver))) << 20)))
572 #define LANGIDFROMLCID(lcid) ((USHORT)(lcid))
573 #define SORTIDFROMLCID(lcid) ((USHORT)((((ULONG)(lcid)) >> 16) & 0xf))
574 #define SORTVERSIONFROMLCID(lcid) ((USHORT)((((ULONG)(lcid)) >> 20) & 0xf))
577 /* Object Attributes */
578 typedef struct _OBJECT_ATTRIBUTES
{
580 HANDLE RootDirectory
;
581 PUNICODE_STRING ObjectName
;
583 PVOID SecurityDescriptor
;
584 PVOID SecurityQualityOfService
;
585 } OBJECT_ATTRIBUTES
, *POBJECT_ATTRIBUTES
;
586 typedef CONST OBJECT_ATTRIBUTES
*PCOBJECT_ATTRIBUTES
;
588 /* Values for the Attributes member */
589 #define OBJ_INHERIT 0x00000002
590 #define OBJ_PERMANENT 0x00000010
591 #define OBJ_EXCLUSIVE 0x00000020
592 #define OBJ_CASE_INSENSITIVE 0x00000040
593 #define OBJ_OPENIF 0x00000080
594 #define OBJ_OPENLINK 0x00000100
595 #define OBJ_KERNEL_HANDLE 0x00000200
596 #define OBJ_FORCE_ACCESS_CHECK 0x00000400
597 #define OBJ_VALID_ATTRIBUTES 0x000007F2
600 #define InitializeObjectAttributes(p,n,a,r,s) { \
601 (p)->Length = sizeof(OBJECT_ATTRIBUTES); \
602 (p)->RootDirectory = (r); \
603 (p)->Attributes = (a); \
604 (p)->ObjectName = (n); \
605 (p)->SecurityDescriptor = (s); \
606 (p)->SecurityQualityOfService = NULL; \
610 typedef enum _NT_PRODUCT_TYPE
{
614 } NT_PRODUCT_TYPE
, *PNT_PRODUCT_TYPE
;
616 typedef enum _EVENT_TYPE
{
621 typedef enum _TIMER_TYPE
{
626 typedef enum _WAIT_TYPE
{
631 /* Doubly Linked Lists */
632 typedef struct _LIST_ENTRY
{
633 struct _LIST_ENTRY
*Flink
;
634 struct _LIST_ENTRY
*Blink
;
635 } LIST_ENTRY
, *PLIST_ENTRY
, *RESTRICTED_POINTER PRLIST_ENTRY
;
637 typedef struct LIST_ENTRY32
{
640 } LIST_ENTRY32
, *PLIST_ENTRY32
;
642 typedef struct LIST_ENTRY64
{
645 } LIST_ENTRY64
, *PLIST_ENTRY64
;
647 /* Singly Linked Lists */
648 typedef struct _SINGLE_LIST_ENTRY
{
649 struct _SINGLE_LIST_ENTRY
*Next
;
650 } SINGLE_LIST_ENTRY
, *PSINGLE_LIST_ENTRY
;
652 typedef struct _PROCESSOR_NUMBER
{
656 } PROCESSOR_NUMBER
, *PPROCESSOR_NUMBER
;
659 struct _EXCEPTION_RECORD
;
662 _Function_class_(EXCEPTION_ROUTINE
)
663 typedef EXCEPTION_DISPOSITION
664 (NTAPI
*PEXCEPTION_ROUTINE
)(
665 _Inout_
struct _EXCEPTION_RECORD
*ExceptionRecord
,
666 _In_ PVOID EstablisherFrame
,
667 _Inout_
struct _CONTEXT
*ContextRecord
,
668 _In_ PVOID DispatcherContext
);
670 typedef struct _GROUP_AFFINITY
{
674 } GROUP_AFFINITY
, *PGROUP_AFFINITY
;
678 #define RTL_FIELD_TYPE(type, field) (((type*)0)->field)
679 #define RTL_BITS_OF(sizeOfArg) (sizeof(sizeOfArg) * 8)
680 #define RTL_BITS_OF_FIELD(type, field) (RTL_BITS_OF(RTL_FIELD_TYPE(type, field)))
682 #define RTL_CONSTANT_STRING(s) { sizeof(s)-sizeof((s)[0]), sizeof(s), s }
684 #define RTL_FIELD_SIZE(type, field) (sizeof(((type *)0)->field))
686 #define RTL_SIZEOF_THROUGH_FIELD(type, field) \
687 (FIELD_OFFSET(type, field) + RTL_FIELD_SIZE(type, field))
689 #define RTL_CONTAINS_FIELD(Struct, Size, Field) \
690 ( (((PCHAR)(&(Struct)->Field)) + sizeof((Struct)->Field)) <= (((PCHAR)(Struct))+(Size)) )
692 #define RTL_NUMBER_OF_V1(A) (sizeof(A)/sizeof((A)[0]))
693 #define RTL_NUMBER_OF_V2(A) RTL_NUMBER_OF_V1(A)
694 #ifdef ENABLE_RTL_NUMBER_OF_V2
695 #define RTL_NUMBER_OF(A) RTL_NUMBER_OF_V2(A)
697 #define RTL_NUMBER_OF(A) RTL_NUMBER_OF_V1(A)
699 #define ARRAYSIZE(A) RTL_NUMBER_OF_V2(A)
704 #define MINSHORT 0x8000
705 #define MAXSHORT 0x7fff
706 #define MINLONG 0x80000000
707 #define MAXLONG 0x7fffffff
708 #define MAXUCHAR 0xff
709 #define MAXUSHORT 0xffff
710 #define MAXULONG 0xffffffff
711 #define MAXLONGLONG (0x7fffffffffffffffLL)
713 /* Multiplication and Shift Operations */
714 #define Int32x32To64(a,b) ((LONGLONG)(a)*(LONGLONG)(b))
715 #define UInt32x32To64(a,b) ((DWORDLONG)(a)*(DWORDLONG)(b))
716 #define Int64ShllMod32(a,b) ((DWORDLONG)(a)<<(b))
717 #define Int64ShraMod32(a,b) ((LONGLONG)(a)>>(b))
718 #define Int64ShrlMod32(a,b) ((DWORDLONG)(a)>>(b))
720 /* C_ASSERT Definition */
721 #define C_ASSERT(expr) extern char (*c_assert(void)) [(expr) ? 1 : -1]
723 /* Eliminate Microsoft C/C++ compiler warning 4715 */
724 #if defined(_MSC_VER) && (_MSC_VER > 1200)
725 # define DEFAULT_UNREACHABLE default: __assume(0)
726 #elif defined(__clang__) || (defined(__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5))))
727 # define DEFAULT_UNREACHABLE default: __builtin_unreachable()
729 # define DEFAULT_UNREACHABLE default: break
732 #define VER_WORKSTATION_NT 0x40000000
733 #define VER_SERVER_NT 0x80000000
734 #define VER_SUITE_SMALLBUSINESS 0x00000001
735 #define VER_SUITE_ENTERPRISE 0x00000002
736 #define VER_SUITE_BACKOFFICE 0x00000004
737 #define VER_SUITE_COMMUNICATIONS 0x00000008
738 #define VER_SUITE_TERMINAL 0x00000010
739 #define VER_SUITE_SMALLBUSINESS_RESTRICTED 0x00000020
740 #define VER_SUITE_EMBEDDEDNT 0x00000040
741 #define VER_SUITE_DATACENTER 0x00000080
742 #define VER_SUITE_SINGLEUSERTS 0x00000100
743 #define VER_SUITE_PERSONAL 0x00000200
744 #define VER_SUITE_BLADE 0x00000400
745 #define VER_SUITE_EMBEDDED_RESTRICTED 0x00000800
746 #define VER_SUITE_SECURITY_APPLIANCE 0x00001000
747 #define VER_SUITE_STORAGE_SERVER 0x00002000
748 #define VER_SUITE_COMPUTE_SERVER 0x00004000
749 #define VER_SUITE_WH_SERVER 0x00008000
751 /* Primary language IDs. */
752 #define LANG_NEUTRAL 0x00
753 #define LANG_INVARIANT 0x7f
755 #define LANG_AFRIKAANS 0x36
756 #define LANG_ALBANIAN 0x1c
757 #define LANG_ALSATIAN 0x84
758 #define LANG_AMHARIC 0x5e
759 #define LANG_ARABIC 0x01
760 #define LANG_ARMENIAN 0x2b
761 #define LANG_ASSAMESE 0x4d
762 #define LANG_AZERI 0x2c
763 #define LANG_BASHKIR 0x6d
764 #define LANG_BASQUE 0x2d
765 #define LANG_BELARUSIAN 0x23
766 #define LANG_BENGALI 0x45
767 #define LANG_BRETON 0x7e
768 #define LANG_BOSNIAN 0x1a
769 #define LANG_BOSNIAN_NEUTRAL 0x781a
770 #define LANG_BULGARIAN 0x02
771 #define LANG_CATALAN 0x03
772 #define LANG_CHINESE 0x04
773 #define LANG_CHINESE_SIMPLIFIED 0x04
774 #define LANG_CHINESE_TRADITIONAL 0x7c04
775 #define LANG_CORSICAN 0x83
776 #define LANG_CROATIAN 0x1a
777 #define LANG_CZECH 0x05
778 #define LANG_DANISH 0x06
779 #define LANG_DARI 0x8c
780 #define LANG_DIVEHI 0x65
781 #define LANG_DUTCH 0x13
782 #define LANG_ENGLISH 0x09
783 #define LANG_ESTONIAN 0x25
784 #define LANG_FAEROESE 0x38
785 #define LANG_FARSI 0x29
786 #define LANG_FILIPINO 0x64
787 #define LANG_FINNISH 0x0b
788 #define LANG_FRENCH 0x0c
789 #define LANG_FRISIAN 0x62
790 #define LANG_GALICIAN 0x56
791 #define LANG_GEORGIAN 0x37
792 #define LANG_GERMAN 0x07
793 #define LANG_GREEK 0x08
794 #define LANG_GREENLANDIC 0x6f
795 #define LANG_GUJARATI 0x47
796 #define LANG_HAUSA 0x68
797 #define LANG_HEBREW 0x0d
798 #define LANG_HINDI 0x39
799 #define LANG_HUNGARIAN 0x0e
800 #define LANG_ICELANDIC 0x0f
801 #define LANG_IGBO 0x70
802 #define LANG_INDONESIAN 0x21
803 #define LANG_INUKTITUT 0x5d
804 #define LANG_IRISH 0x3c
805 #define LANG_ITALIAN 0x10
806 #define LANG_JAPANESE 0x11
807 #define LANG_KANNADA 0x4b
808 #define LANG_KASHMIRI 0x60
809 #define LANG_KAZAK 0x3f
810 #define LANG_KHMER 0x53
811 #define LANG_KICHE 0x86
812 #define LANG_KINYARWANDA 0x87
813 #define LANG_KONKANI 0x57
814 #define LANG_KOREAN 0x12
815 #define LANG_KYRGYZ 0x40
816 #define LANG_LAO 0x54
817 #define LANG_LATVIAN 0x26
818 #define LANG_LITHUANIAN 0x27
819 #define LANG_LOWER_SORBIAN 0x2e
820 #define LANG_LUXEMBOURGISH 0x6e
821 #define LANG_MACEDONIAN 0x2f
822 #define LANG_MALAY 0x3e
823 #define LANG_MALAYALAM 0x4c
824 #define LANG_MALTESE 0x3a
825 #define LANG_MANIPURI 0x58
826 #define LANG_MAORI 0x81
827 #define LANG_MAPUDUNGUN 0x7a
828 #define LANG_MARATHI 0x4e
829 #define LANG_MOHAWK 0x7c
830 #define LANG_MONGOLIAN 0x50
831 #define LANG_NEPALI 0x61
832 #define LANG_NORWEGIAN 0x14
833 #define LANG_OCCITAN 0x82
834 #define LANG_ORIYA 0x48
835 #define LANG_PASHTO 0x63
836 #define LANG_PERSIAN 0x29
837 #define LANG_POLISH 0x15
838 #define LANG_PORTUGUESE 0x16
839 #define LANG_PUNJABI 0x46
840 #define LANG_QUECHUA 0x6b
841 #define LANG_ROMANIAN 0x18
842 #define LANG_ROMANSH 0x17
843 #define LANG_RUSSIAN 0x19
844 #define LANG_SAMI 0x3b
845 #define LANG_SANSKRIT 0x4f
846 #define LANG_SERBIAN 0x1a
847 #define LANG_SERBIAN_NEUTRAL 0x7c1a
848 #define LANG_SINDHI 0x59
849 #define LANG_SINHALESE 0x5b
850 #define LANG_SLOVAK 0x1b
851 #define LANG_SLOVENIAN 0x24
852 #define LANG_SOTHO 0x6c
853 #define LANG_SPANISH 0x0a
854 #define LANG_SWAHILI 0x41
855 #define LANG_SWEDISH 0x1d
856 #define LANG_SYRIAC 0x5a
857 #define LANG_TAJIK 0x28
858 #define LANG_TAMAZIGHT 0x5f
859 #define LANG_TAMIL 0x49
860 #define LANG_TATAR 0x44
861 #define LANG_TELUGU 0x4a
862 #define LANG_THAI 0x1e
863 #define LANG_TIBETAN 0x51
864 #define LANG_TIGRIGNA 0x73
865 #define LANG_TSWANA 0x32
866 #define LANG_TURKISH 0x1f
867 #define LANG_TURKMEN 0x42
868 #define LANG_UIGHUR 0x80
869 #define LANG_UKRAINIAN 0x22
870 #define LANG_UPPER_SORBIAN 0x2e
871 #define LANG_URDU 0x20
872 #define LANG_UZBEK 0x43
873 #define LANG_VIETNAMESE 0x2a
874 #define LANG_WELSH 0x52
875 #define LANG_WOLOF 0x88
876 #define LANG_XHOSA 0x34
877 #define LANG_YAKUT 0x85
879 #define LANG_YORUBA 0x6a
880 #define LANG_ZULU 0x35