-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathwindows.nelua
13349 lines (13349 loc) · 664 KB
/
windows.nelua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
##[[
cinclude '<windows.h>'
]]
global tagLC_ID: type <cimport,nodecl,ctypedef> = @record{
wLanguage: cushort,
wCountry: cushort,
wCodePage: cushort
}
global LC_ID: type = @tagLC_ID
global LPLC_ID: type = @*tagLC_ID
global _EXCEPTION_POINTERS: type <cimport,nodecl,forwarddecl,ctypedef> = @record{}
global _EXCEPTION_RECORD: type <cimport,nodecl,forwarddecl,ctypedef> = @record{}
global _CONTEXT: type <cimport,nodecl,forwarddecl,ctypedef> = @record{}
global _DISPATCHER_CONTEXT: type <cimport,nodecl,forwarddecl,ctypedef> = @record{}
global _PHNDLR: type <cimport,nodecl> = @function(cint): void
global _XCPT_ACTION: type <cimport,nodecl,ctypedef> = @record{
XcptNum: culong,
SigNum: cint,
XcptAction: _PHNDLR
}
global _XcptActTab: [0]_XCPT_ACTION <cimport,nodecl>
global _XcptActTabCount: cint <cimport,nodecl>
global _XcptActTabSize: cint <cimport,nodecl>
global _First_FPE_Indx: cint <cimport,nodecl>
global _Num_FPE: cint <cimport,nodecl>
global function _XcptFilter(_ExceptionNum: culong, _ExceptionPtr: *_EXCEPTION_POINTERS): cint <cimport,nodecl> end
global PEXCEPTION_HANDLER: type <cimport,nodecl> = @function(*_EXCEPTION_RECORD, pointer, *_CONTEXT, pointer): cint
global PULONG: type = @*culong
global PUSHORT: type = @*cushort
global PUCHAR: type = @*cuchar
global PSZ: type = @cstring
global BOOL: type = @cint
global PBOOL: type = @*cint
global LPBOOL: type = @*cint
global PFLOAT: type = @*float32
global PBYTE: type = @*cuchar
global LPBYTE: type = @*cuchar
global PINT: type = @*cint
global LPINT: type = @*cint
global PWORD: type = @*cushort
global LPWORD: type = @*cushort
global LPLONG: type = @*clong
global PDWORD: type = @*culong
global LPDWORD: type = @*culong
global LPVOID: type = @pointer
global LPCVOID: type = @pointer
global PUINT: type = @*cuint
global function InterlockedBitTestAndSet64(a: *clonglong, b: clonglong): cuchar <cimport,nodecl> end
global function InterlockedBitTestAndReset64(a: *clonglong, b: clonglong): cuchar <cimport,nodecl> end
global function InterlockedBitTestAndComplement64(a: *clonglong, b: clonglong): cuchar <cimport,nodecl> end
global function _InterlockedAnd64(a1: *clonglong, a2: clonglong): clonglong <cimport,nodecl> end
global function _InterlockedOr64(a1: *clonglong, a2: clonglong): clonglong <cimport,nodecl> end
global function _InterlockedXor64(a1: *clonglong, a2: clonglong): clonglong <cimport,nodecl> end
global function _InterlockedIncrement64(Addend: *clonglong): clonglong <cimport,nodecl> end
global function _InterlockedDecrement64(Addend: *clonglong): clonglong <cimport,nodecl> end
global function _InterlockedExchange64(Target: *clonglong, Value: clonglong): clonglong <cimport,nodecl> end
global function _InterlockedExchangeAdd64(Addend: *clonglong, Value: clonglong): clonglong <cimport,nodecl> end
global function _BitScanForward64(Index: *culong, Mask: culonglong): cuchar <cimport,nodecl> end
global function _BitScanReverse64(Index: *culong, Mask: culonglong): cuchar <cimport,nodecl> end
global function _InterlockedAnd(a1: *clong, a2: clong): clong <cimport,nodecl> end
global function _InterlockedOr(a1: *clong, a2: clong): clong <cimport,nodecl> end
global function _InterlockedXor(a1: *clong, a2: clong): clong <cimport,nodecl> end
global function _InterlockedIncrement16(Addend: *cshort): cshort <cimport,nodecl> end
global function _InterlockedDecrement16(Addend: *cshort): cshort <cimport,nodecl> end
global function _InterlockedCompareExchange16(Destination: *cshort, ExChange: cshort, Comperand: cshort): cshort <cimport,nodecl> end
global function _InterlockedExchangeAdd(Addend: *clong, Value: clong): clong <cimport,nodecl> end
global function _InterlockedCompareExchange(Destination: *clong, ExChange: clong, Comperand: clong): clong <cimport,nodecl> end
global function _InterlockedIncrement(Addend: *clong): clong <cimport,nodecl> end
global function _InterlockedDecrement(Addend: *clong): clong <cimport,nodecl> end
global function _InterlockedAdd(Addend: *clong, Value: clong): clong <cimport,nodecl> end
global function _InterlockedAdd64(Addend: *clonglong, Value: clonglong): clonglong <cimport,nodecl> end
global function _InterlockedExchange(Target: *clong, Value: clong): clong <cimport,nodecl> end
global function _InterlockedCompareExchange64(Destination: *clonglong, ExChange: clonglong, Comperand: clonglong): clonglong <cimport,nodecl> end
global function _InterlockedCompareExchangePointer(Destination: *pointer, ExChange: pointer, Comperand: pointer): pointer <cimport,nodecl> end
global function _InterlockedExchangePointer(Target: *pointer, Value: pointer): pointer <cimport,nodecl> end
global function InterlockedBitTestAndSet(a: *clong, b: clong): cuchar <cimport,nodecl> end
global function InterlockedBitTestAndReset(a: *clong, b: clong): cuchar <cimport,nodecl> end
global function InterlockedBitTestAndComplement(a: *clong, b: clong): cuchar <cimport,nodecl> end
global function _BitScanForward(Index: *culong, Mask: culong): cuchar <cimport,nodecl> end
global function _BitScanReverse(Index: *culong, Mask: culong): cuchar <cimport,nodecl> end
global PINT8: type = @*cschar
global PINT16: type = @*cshort
global PINT32: type = @*cint
global PINT64: type = @*clonglong
global PUINT8: type = @*cuchar
global PUINT16: type = @*cushort
global PUINT32: type = @*cuint
global PUINT64: type = @*culonglong
global PLONG32: type = @*cint
global PULONG32: type = @*cuint
global PDWORD32: type = @*cuint
global PINT_PTR: type = @*clonglong
global PUINT_PTR: type = @*culonglong
global PLONG_PTR: type = @*clonglong
global PULONG_PTR: type = @*culonglong
global PUHALF_PTR: type = @*cuint
global PHALF_PTR: type = @*cint
global function HandleToULong(h: pointer): culong <cimport,nodecl> end
global function HandleToLong(h: pointer): clong <cimport,nodecl> end
global function ULongToHandle(h: culong): pointer <cimport,nodecl> end
global function LongToHandle(h: clong): pointer <cimport,nodecl> end
global function PtrToUlong(p: pointer): culong <cimport,nodecl> end
global function PtrToUint(p: pointer): cuint <cimport,nodecl> end
global function PtrToUshort(p: pointer): cushort <cimport,nodecl> end
global function PtrToLong(p: pointer): clong <cimport,nodecl> end
global function PtrToInt(p: pointer): cint <cimport,nodecl> end
global function PtrToShort(p: pointer): cshort <cimport,nodecl> end
global function IntToPtr(i: cint): pointer <cimport,nodecl> end
global function UIntToPtr(ui: cuint): pointer <cimport,nodecl> end
global function LongToPtr(l: clong): pointer <cimport,nodecl> end
global function ULongToPtr(ul: culong): pointer <cimport,nodecl> end
global function Ptr32ToPtr(p: pointer): pointer <cimport,nodecl> end
global function Handle32ToHandle(h: pointer): pointer <cimport,nodecl> end
global function PtrToPtr32(p: pointer): pointer <cimport,nodecl> end
global PSIZE_T: type = @*culonglong
global PSSIZE_T: type = @*clonglong
global PDWORD_PTR: type = @*culonglong
global PLONG64: type = @*clonglong
global PULONG64: type = @*culonglong
global PDWORD64: type = @*culonglong
global PKAFFINITY: type = @*culonglong
global PVOID: type = @pointer
global PVOID64: type = @pointer
global PWCHAR: type = @*cwchar_t
global LPWCH: type = @*cwchar_t
global PWCH: type = @*cwchar_t
global LPCWCH: type = @*cwchar_t
global PCWCH: type = @*cwchar_t
global NWPSTR: type = @*cwchar_t
global LPWSTR: type = @*cwchar_t
global PWSTR: type = @*cwchar_t
global PZPWSTR: type = @*PWSTR
global PCZPWSTR: type = @*PWSTR
global LPUWSTR: type = @*cwchar_t
global PUWSTR: type = @*cwchar_t
global LPCWSTR: type = @*cwchar_t
global PCWSTR: type = @*cwchar_t
global PZPCWSTR: type = @*PCWSTR
global LPCUWSTR: type = @*cwchar_t
global PCUWSTR: type = @*cwchar_t
global PZZWSTR: type = @*cwchar_t
global PCZZWSTR: type = @*cwchar_t
global PUZZWSTR: type = @*cwchar_t
global PCUZZWSTR: type = @*cwchar_t
global PNZWCH: type = @*cwchar_t
global PCNZWCH: type = @*cwchar_t
global PUNZWCH: type = @*cwchar_t
global PCUNZWCH: type = @*cwchar_t
global LPCWCHAR: type = @*cwchar_t
global PCWCHAR: type = @*cwchar_t
global LPCUWCHAR: type = @*cwchar_t
global PCUWCHAR: type = @*cwchar_t
global PUCSCHAR: type = @*culong
global PCUCSCHAR: type = @*culong
global PUCSSTR: type = @*culong
global PUUCSSTR: type = @*culong
global PCUCSSTR: type = @*culong
global PCUUCSSTR: type = @*culong
global PUUCSCHAR: type = @*culong
global PCUUCSCHAR: type = @*culong
global PCHAR: type = @cstring
global LPCH: type = @cstring
global PCH: type = @cstring
global LPCCH: type = @cstring
global PCCH: type = @cstring
global NPSTR: type = @cstring
global LPSTR: type = @cstring
global PSTR: type = @cstring
global PZPSTR: type = @*PSTR
global PCZPSTR: type = @*PSTR
global LPCSTR: type = @cstring
global PCSTR: type = @cstring
global PZPCSTR: type = @*PCSTR
global PZZSTR: type = @cstring
global PCZZSTR: type = @cstring
global PNZCH: type = @cstring
global PCNZCH: type = @cstring
global PTCHAR: type = @cstring
global PTBYTE: type = @*cuchar
global LPTCH: type = @cstring
global PTCH: type = @cstring
global LPCTCH: type = @cstring
global PCTCH: type = @cstring
global PTSTR: type = @cstring
global LPTSTR: type = @cstring
global PUTSTR: type = @cstring
global LPUTSTR: type = @cstring
global PCTSTR: type = @cstring
global LPCTSTR: type = @cstring
global PCUTSTR: type = @cstring
global LPCUTSTR: type = @cstring
global PZZTSTR: type = @cstring
global PUZZTSTR: type = @cstring
global PCZZTSTR: type = @cstring
global PCUZZTSTR: type = @cstring
global PZPTSTR: type = @*PSTR
global PNZTCH: type = @cstring
global PUNZTCH: type = @cstring
global PCNZTCH: type = @cstring
global PCUNZTCH: type = @cstring
global PSHORT: type = @*cshort
global PLONG: type = @*clong
global _GROUP_AFFINITY: type <cimport,nodecl,ctypedef> = @record{
Mask: culonglong,
Group: cushort,
Reserved: [3]cushort
}
global GROUP_AFFINITY: type = @_GROUP_AFFINITY
global PGROUP_AFFINITY: type = @*_GROUP_AFFINITY
global HANDLE: type = @pointer
global PHANDLE: type = @*HANDLE
global PLCID: type = @*culong
global COMPARTMENT_ID: type <cimport,nodecl,using> = @enum(cint){
UNSPECIFIED_COMPARTMENT_ID = 0,
DEFAULT_COMPARTMENT_ID = 1
}
global PCOMPARTMENT_ID: type = @*cint
global _FLOAT128: type <cimport,nodecl,ctypedef> = @record{
LowPart: clonglong,
HighPart: clonglong
}
global FLOAT128: type = @_FLOAT128
global PFLOAT128: type = @*FLOAT128
global PLONGLONG: type = @*clonglong
global PULONGLONG: type = @*culonglong
global _LARGE_INTEGER: type <cimport,nodecl,ctypedef> = @union{
__unnamed1: record{
LowPart: culong,
HighPart: clong
},
u: record{
LowPart: culong,
HighPart: clong
},
QuadPart: clonglong
}
global LARGE_INTEGER: type = @_LARGE_INTEGER
global PLARGE_INTEGER: type = @*LARGE_INTEGER
global _ULARGE_INTEGER: type <cimport,nodecl,ctypedef> = @union{
__unnamed1: record{
LowPart: culong,
HighPart: culong
},
u: record{
LowPart: culong,
HighPart: culong
},
QuadPart: culonglong
}
global ULARGE_INTEGER: type = @_ULARGE_INTEGER
global PULARGE_INTEGER: type = @*ULARGE_INTEGER
global _LUID: type <cimport,nodecl,ctypedef> = @record{
LowPart: culong,
HighPart: clong
}
global LUID: type = @_LUID
global PLUID: type = @*_LUID
global PDWORDLONG: type = @*culonglong
global BOOLEAN: type = @cuchar
global PBOOLEAN: type = @*BOOLEAN
global _LIST_ENTRY: type <cimport,nodecl,forwarddecl,ctypedef> = @record{}
_LIST_ENTRY = @record{
Flink: *_LIST_ENTRY,
Blink: *_LIST_ENTRY
}
global LIST_ENTRY: type = @_LIST_ENTRY
global PLIST_ENTRY: type = @*_LIST_ENTRY
global PRLIST_ENTRY: type = @*_LIST_ENTRY
global _SINGLE_LIST_ENTRY: type <cimport,nodecl,forwarddecl,ctypedef> = @record{}
_SINGLE_LIST_ENTRY = @record{
Next: *_SINGLE_LIST_ENTRY
}
global SINGLE_LIST_ENTRY: type = @_SINGLE_LIST_ENTRY
global PSINGLE_LIST_ENTRY: type = @*_SINGLE_LIST_ENTRY
global LIST_ENTRY32: type <cimport,nodecl> = @record{
Flink: culong,
Blink: culong
}
global PLIST_ENTRY32: type = @*LIST_ENTRY32
global LIST_ENTRY64: type <cimport,nodecl> = @record{
Flink: culonglong,
Blink: culonglong
}
global PLIST_ENTRY64: type = @*LIST_ENTRY64
global _GUID: type <cimport,nodecl,ctypedef> = @record{
Data1: culong,
Data2: cushort,
Data3: cushort,
Data4: [8]cuchar
}
global GUID: type = @_GUID
global LPGUID: type = @*GUID
global LPCGUID: type = @*GUID
global IID: type = @_GUID
global LPIID: type = @*IID
global CLSID: type = @_GUID
global LPCLSID: type = @*CLSID
global FMTID: type = @_GUID
global LPFMTID: type = @*FMTID
global _OBJECTID: type <cimport,nodecl,ctypedef> = @record{
Lineage: GUID,
Uniquifier: culong
}
global OBJECTID: type = @_OBJECTID
global EXCEPTION_ROUTINE: type <cimport,nodecl> = @function(*_EXCEPTION_RECORD, PVOID, *_CONTEXT, PVOID): cint
global PEXCEPTION_ROUTINE: type <cimport,nodecl> = @function(*_EXCEPTION_RECORD, PVOID, *_CONTEXT, PVOID): cint
global PKSPIN_LOCK: type = @*culonglong
global _M128A: type <cimport,nodecl,aligned(16),ctypedef> = @record{
Low: culonglong,
High: clonglong
}
global M128A: type = @_M128A
global PM128A: type = @*_M128A
global _XSAVE_FORMAT: type <cimport,nodecl,aligned(16),ctypedef> = @record{
ControlWord: cushort,
StatusWord: cushort,
TagWord: cuchar,
Reserved1: cuchar,
ErrorOpcode: cushort,
ErrorOffset: culong,
ErrorSelector: cushort,
Reserved2: cushort,
DataOffset: culong,
DataSelector: cushort,
Reserved3: cushort,
MxCsr: culong,
MxCsr_Mask: culong,
FloatRegisters: [8]M128A,
XmmRegisters: [16]M128A,
Reserved4: [96]cuchar
}
global XSAVE_FORMAT: type = @_XSAVE_FORMAT
global PXSAVE_FORMAT: type = @*_XSAVE_FORMAT
global _XSAVE_AREA_HEADER: type <cimport,nodecl,aligned(8),ctypedef> = @record{
Mask: culonglong,
Reserved: [7]culonglong
}
global XSAVE_AREA_HEADER: type = @_XSAVE_AREA_HEADER
global PXSAVE_AREA_HEADER: type = @*_XSAVE_AREA_HEADER
global _XSAVE_AREA: type <cimport,nodecl,aligned(16),ctypedef> = @record{
LegacyState: XSAVE_FORMAT,
Header: XSAVE_AREA_HEADER
}
global XSAVE_AREA: type = @_XSAVE_AREA
global PXSAVE_AREA: type = @*_XSAVE_AREA
global _XSTATE_CONTEXT: type <cimport,nodecl,ctypedef> = @record{
Mask: culonglong,
Length: culong,
Reserved1: culong,
Area: PXSAVE_AREA,
Buffer: PVOID
}
global XSTATE_CONTEXT: type = @_XSTATE_CONTEXT
global PXSTATE_CONTEXT: type = @*_XSTATE_CONTEXT
global _SCOPE_TABLE_AMD64: type <cimport,nodecl,ctypedef> = @record{
Count: culong,
ScopeRecord: [1]record{
BeginAddress: culong,
EndAddress: culong,
HandlerAddress: culong,
JumpTarget: culong
}
}
global SCOPE_TABLE_AMD64: type = @_SCOPE_TABLE_AMD64
global PSCOPE_TABLE_AMD64: type = @*_SCOPE_TABLE_AMD64
global _LDOUBLE: type <cimport,nodecl> = @record{
ld: [10]cuchar
}
global _CRT_DOUBLE: type <cimport,nodecl> = @record{
x: float64
}
global _CRT_FLOAT: type <cimport,nodecl> = @record{
f: float32
}
global _LONGDOUBLE: type <cimport,nodecl> = @record{
x: clongdouble
}
global _LDBL12: type <cimport,nodecl> = @record{
ld12: [12]cuchar
}
global function _Exit(a1: cint): void <cimport,nodecl> end
global _HEAPINFO: type <cimport,nodecl> = @record{
_pentry: *cint,
_size: csize,
_useflag: cint
}
global function _MarkAllocaS(_Ptr: pointer, _Marker: cuint): pointer <cimport,nodecl> end
global _Marker: cuint <cimport,nodecl>
global function _MM_GET_EXCEPTION_STATE(): cuint <cimport,nodecl> end
global function _MM_GET_EXCEPTION_MASK(): cuint <cimport,nodecl> end
global function _MM_GET_ROUNDING_MODE(): cuint <cimport,nodecl> end
global function _MM_GET_FLUSH_ZERO_MODE(): cuint <cimport,nodecl> end
global function _MM_SET_EXCEPTION_STATE(mask: cuint): void <cimport,nodecl> end
global function _MM_SET_EXCEPTION_MASK(mask: cuint): void <cimport,nodecl> end
global function _MM_SET_ROUNDING_MODE(mode: cuint): void <cimport,nodecl> end
global function _MM_SET_FLUSH_ZERO_MODE(mode: cuint): void <cimport,nodecl> end
global _MM_PERM_ENUM: type <cimport,nodecl,using> = @enum(cint){
_MM_PERM_AAAA = 0,
_MM_PERM_AAAB = 1,
_MM_PERM_AAAC = 2,
_MM_PERM_AAAD = 3,
_MM_PERM_AABA = 4,
_MM_PERM_AABB = 5,
_MM_PERM_AABC = 6,
_MM_PERM_AABD = 7,
_MM_PERM_AACA = 8,
_MM_PERM_AACB = 9,
_MM_PERM_AACC = 10,
_MM_PERM_AACD = 11,
_MM_PERM_AADA = 12,
_MM_PERM_AADB = 13,
_MM_PERM_AADC = 14,
_MM_PERM_AADD = 15,
_MM_PERM_ABAA = 16,
_MM_PERM_ABAB = 17,
_MM_PERM_ABAC = 18,
_MM_PERM_ABAD = 19,
_MM_PERM_ABBA = 20,
_MM_PERM_ABBB = 21,
_MM_PERM_ABBC = 22,
_MM_PERM_ABBD = 23,
_MM_PERM_ABCA = 24,
_MM_PERM_ABCB = 25,
_MM_PERM_ABCC = 26,
_MM_PERM_ABCD = 27,
_MM_PERM_ABDA = 28,
_MM_PERM_ABDB = 29,
_MM_PERM_ABDC = 30,
_MM_PERM_ABDD = 31,
_MM_PERM_ACAA = 32,
_MM_PERM_ACAB = 33,
_MM_PERM_ACAC = 34,
_MM_PERM_ACAD = 35,
_MM_PERM_ACBA = 36,
_MM_PERM_ACBB = 37,
_MM_PERM_ACBC = 38,
_MM_PERM_ACBD = 39,
_MM_PERM_ACCA = 40,
_MM_PERM_ACCB = 41,
_MM_PERM_ACCC = 42,
_MM_PERM_ACCD = 43,
_MM_PERM_ACDA = 44,
_MM_PERM_ACDB = 45,
_MM_PERM_ACDC = 46,
_MM_PERM_ACDD = 47,
_MM_PERM_ADAA = 48,
_MM_PERM_ADAB = 49,
_MM_PERM_ADAC = 50,
_MM_PERM_ADAD = 51,
_MM_PERM_ADBA = 52,
_MM_PERM_ADBB = 53,
_MM_PERM_ADBC = 54,
_MM_PERM_ADBD = 55,
_MM_PERM_ADCA = 56,
_MM_PERM_ADCB = 57,
_MM_PERM_ADCC = 58,
_MM_PERM_ADCD = 59,
_MM_PERM_ADDA = 60,
_MM_PERM_ADDB = 61,
_MM_PERM_ADDC = 62,
_MM_PERM_ADDD = 63,
_MM_PERM_BAAA = 64,
_MM_PERM_BAAB = 65,
_MM_PERM_BAAC = 66,
_MM_PERM_BAAD = 67,
_MM_PERM_BABA = 68,
_MM_PERM_BABB = 69,
_MM_PERM_BABC = 70,
_MM_PERM_BABD = 71,
_MM_PERM_BACA = 72,
_MM_PERM_BACB = 73,
_MM_PERM_BACC = 74,
_MM_PERM_BACD = 75,
_MM_PERM_BADA = 76,
_MM_PERM_BADB = 77,
_MM_PERM_BADC = 78,
_MM_PERM_BADD = 79,
_MM_PERM_BBAA = 80,
_MM_PERM_BBAB = 81,
_MM_PERM_BBAC = 82,
_MM_PERM_BBAD = 83,
_MM_PERM_BBBA = 84,
_MM_PERM_BBBB = 85,
_MM_PERM_BBBC = 86,
_MM_PERM_BBBD = 87,
_MM_PERM_BBCA = 88,
_MM_PERM_BBCB = 89,
_MM_PERM_BBCC = 90,
_MM_PERM_BBCD = 91,
_MM_PERM_BBDA = 92,
_MM_PERM_BBDB = 93,
_MM_PERM_BBDC = 94,
_MM_PERM_BBDD = 95,
_MM_PERM_BCAA = 96,
_MM_PERM_BCAB = 97,
_MM_PERM_BCAC = 98,
_MM_PERM_BCAD = 99,
_MM_PERM_BCBA = 100,
_MM_PERM_BCBB = 101,
_MM_PERM_BCBC = 102,
_MM_PERM_BCBD = 103,
_MM_PERM_BCCA = 104,
_MM_PERM_BCCB = 105,
_MM_PERM_BCCC = 106,
_MM_PERM_BCCD = 107,
_MM_PERM_BCDA = 108,
_MM_PERM_BCDB = 109,
_MM_PERM_BCDC = 110,
_MM_PERM_BCDD = 111,
_MM_PERM_BDAA = 112,
_MM_PERM_BDAB = 113,
_MM_PERM_BDAC = 114,
_MM_PERM_BDAD = 115,
_MM_PERM_BDBA = 116,
_MM_PERM_BDBB = 117,
_MM_PERM_BDBC = 118,
_MM_PERM_BDBD = 119,
_MM_PERM_BDCA = 120,
_MM_PERM_BDCB = 121,
_MM_PERM_BDCC = 122,
_MM_PERM_BDCD = 123,
_MM_PERM_BDDA = 124,
_MM_PERM_BDDB = 125,
_MM_PERM_BDDC = 126,
_MM_PERM_BDDD = 127,
_MM_PERM_CAAA = 128,
_MM_PERM_CAAB = 129,
_MM_PERM_CAAC = 130,
_MM_PERM_CAAD = 131,
_MM_PERM_CABA = 132,
_MM_PERM_CABB = 133,
_MM_PERM_CABC = 134,
_MM_PERM_CABD = 135,
_MM_PERM_CACA = 136,
_MM_PERM_CACB = 137,
_MM_PERM_CACC = 138,
_MM_PERM_CACD = 139,
_MM_PERM_CADA = 140,
_MM_PERM_CADB = 141,
_MM_PERM_CADC = 142,
_MM_PERM_CADD = 143,
_MM_PERM_CBAA = 144,
_MM_PERM_CBAB = 145,
_MM_PERM_CBAC = 146,
_MM_PERM_CBAD = 147,
_MM_PERM_CBBA = 148,
_MM_PERM_CBBB = 149,
_MM_PERM_CBBC = 150,
_MM_PERM_CBBD = 151,
_MM_PERM_CBCA = 152,
_MM_PERM_CBCB = 153,
_MM_PERM_CBCC = 154,
_MM_PERM_CBCD = 155,
_MM_PERM_CBDA = 156,
_MM_PERM_CBDB = 157,
_MM_PERM_CBDC = 158,
_MM_PERM_CBDD = 159,
_MM_PERM_CCAA = 160,
_MM_PERM_CCAB = 161,
_MM_PERM_CCAC = 162,
_MM_PERM_CCAD = 163,
_MM_PERM_CCBA = 164,
_MM_PERM_CCBB = 165,
_MM_PERM_CCBC = 166,
_MM_PERM_CCBD = 167,
_MM_PERM_CCCA = 168,
_MM_PERM_CCCB = 169,
_MM_PERM_CCCC = 170,
_MM_PERM_CCCD = 171,
_MM_PERM_CCDA = 172,
_MM_PERM_CCDB = 173,
_MM_PERM_CCDC = 174,
_MM_PERM_CCDD = 175,
_MM_PERM_CDAA = 176,
_MM_PERM_CDAB = 177,
_MM_PERM_CDAC = 178,
_MM_PERM_CDAD = 179,
_MM_PERM_CDBA = 180,
_MM_PERM_CDBB = 181,
_MM_PERM_CDBC = 182,
_MM_PERM_CDBD = 183,
_MM_PERM_CDCA = 184,
_MM_PERM_CDCB = 185,
_MM_PERM_CDCC = 186,
_MM_PERM_CDCD = 187,
_MM_PERM_CDDA = 188,
_MM_PERM_CDDB = 189,
_MM_PERM_CDDC = 190,
_MM_PERM_CDDD = 191,
_MM_PERM_DAAA = 192,
_MM_PERM_DAAB = 193,
_MM_PERM_DAAC = 194,
_MM_PERM_DAAD = 195,
_MM_PERM_DABA = 196,
_MM_PERM_DABB = 197,
_MM_PERM_DABC = 198,
_MM_PERM_DABD = 199,
_MM_PERM_DACA = 200,
_MM_PERM_DACB = 201,
_MM_PERM_DACC = 202,
_MM_PERM_DACD = 203,
_MM_PERM_DADA = 204,
_MM_PERM_DADB = 205,
_MM_PERM_DADC = 206,
_MM_PERM_DADD = 207,
_MM_PERM_DBAA = 208,
_MM_PERM_DBAB = 209,
_MM_PERM_DBAC = 210,
_MM_PERM_DBAD = 211,
_MM_PERM_DBBA = 212,
_MM_PERM_DBBB = 213,
_MM_PERM_DBBC = 214,
_MM_PERM_DBBD = 215,
_MM_PERM_DBCA = 216,
_MM_PERM_DBCB = 217,
_MM_PERM_DBCC = 218,
_MM_PERM_DBCD = 219,
_MM_PERM_DBDA = 220,
_MM_PERM_DBDB = 221,
_MM_PERM_DBDC = 222,
_MM_PERM_DBDD = 223,
_MM_PERM_DCAA = 224,
_MM_PERM_DCAB = 225,
_MM_PERM_DCAC = 226,
_MM_PERM_DCAD = 227,
_MM_PERM_DCBA = 228,
_MM_PERM_DCBB = 229,
_MM_PERM_DCBC = 230,
_MM_PERM_DCBD = 231,
_MM_PERM_DCCA = 232,
_MM_PERM_DCCB = 233,
_MM_PERM_DCCC = 234,
_MM_PERM_DCCD = 235,
_MM_PERM_DCDA = 236,
_MM_PERM_DCDB = 237,
_MM_PERM_DCDC = 238,
_MM_PERM_DCDD = 239,
_MM_PERM_DDAA = 240,
_MM_PERM_DDAB = 241,
_MM_PERM_DDAC = 242,
_MM_PERM_DDAD = 243,
_MM_PERM_DDBA = 244,
_MM_PERM_DDBB = 245,
_MM_PERM_DDBC = 246,
_MM_PERM_DDBD = 247,
_MM_PERM_DDCA = 248,
_MM_PERM_DDCB = 249,
_MM_PERM_DDCC = 250,
_MM_PERM_DDCD = 251,
_MM_PERM_DDDA = 252,
_MM_PERM_DDDB = 253,
_MM_PERM_DDDC = 254,
_MM_PERM_DDDD = 255
}
global _MM_MANTISSA_NORM_ENUM: type <cimport,nodecl,using> = @enum(cint){
_MM_MANT_NORM_1_2 = 0,
_MM_MANT_NORM_p5_2 = 1,
_MM_MANT_NORM_p5_1 = 2,
_MM_MANT_NORM_p75_1p5 = 3
}
global _MM_MANTISSA_SIGN_ENUM: type <cimport,nodecl,using> = @enum(cint){
_MM_MANT_SIGN_src = 0,
_MM_MANT_SIGN_zero = 1,
_MM_MANT_SIGN_nan = 2
}
global function MultiplyExtract128(Multiplier: clonglong, Multiplicand: clonglong, Shift: cuchar): clonglong <cimport,nodecl> end
global function UnsignedMultiplyExtract128(Multiplier: culonglong, Multiplicand: culonglong, Shift: cuchar): culonglong <cimport,nodecl> end
global _XMM_SAVE_AREA32: type <cimport,nodecl,aligned(16),ctypedef> = @record{
ControlWord: cushort,
StatusWord: cushort,
TagWord: cuchar,
Reserved1: cuchar,
ErrorOpcode: cushort,
ErrorOffset: culong,
ErrorSelector: cushort,
Reserved2: cushort,
DataOffset: culong,
DataSelector: cushort,
Reserved3: cushort,
MxCsr: culong,
MxCsr_Mask: culong,
FloatRegisters: [8]M128A,
XmmRegisters: [16]M128A,
Reserved4: [96]cuchar
}
global XMM_SAVE_AREA32: type = @_XMM_SAVE_AREA32
global PXMM_SAVE_AREA32: type = @*_XMM_SAVE_AREA32
_CONTEXT = @record{
P1Home: culonglong,
P2Home: culonglong,
P3Home: culonglong,
P4Home: culonglong,
P5Home: culonglong,
P6Home: culonglong,
ContextFlags: culong,
MxCsr: culong,
SegCs: cushort,
SegDs: cushort,
SegEs: cushort,
SegFs: cushort,
SegGs: cushort,
SegSs: cushort,
EFlags: culong,
Dr0: culonglong,
Dr1: culonglong,
Dr2: culonglong,
Dr3: culonglong,
Dr6: culonglong,
Dr7: culonglong,
Rax: culonglong,
Rcx: culonglong,
Rdx: culonglong,
Rbx: culonglong,
Rsp: culonglong,
Rbp: culonglong,
Rsi: culonglong,
Rdi: culonglong,
R8: culonglong,
R9: culonglong,
R10: culonglong,
R11: culonglong,
R12: culonglong,
R13: culonglong,
R14: culonglong,
R15: culonglong,
Rip: culonglong,
__unnamed1: union{
FltSave: XMM_SAVE_AREA32,
FloatSave: XMM_SAVE_AREA32,
__unnamed1: record{
Header: [2]M128A,
Legacy: [8]M128A,
Xmm0: M128A,
Xmm1: M128A,
Xmm2: M128A,
Xmm3: M128A,
Xmm4: M128A,
Xmm5: M128A,
Xmm6: M128A,
Xmm7: M128A,
Xmm8: M128A,
Xmm9: M128A,
Xmm10: M128A,
Xmm11: M128A,
Xmm12: M128A,
Xmm13: M128A,
Xmm14: M128A,
Xmm15: M128A
}
},
VectorRegister: [26]M128A,
VectorControl: culonglong,
DebugControl: culonglong,
LastBranchToRip: culonglong,
LastBranchFromRip: culonglong,
LastExceptionToRip: culonglong,
LastExceptionFromRip: culonglong
}
global CONTEXT: type = @_CONTEXT
global PCONTEXT: type = @*_CONTEXT
global _RUNTIME_FUNCTION: type <cimport,nodecl,ctypedef> = @record{
BeginAddress: culong,
EndAddress: culong,
UnwindData: culong
}
global RUNTIME_FUNCTION: type = @_RUNTIME_FUNCTION
global PRUNTIME_FUNCTION: type = @*_RUNTIME_FUNCTION
global PGET_RUNTIME_FUNCTION_CALLBACK: type <cimport,nodecl> = @function(culonglong, PVOID): PRUNTIME_FUNCTION
global POUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK: type <cimport,nodecl> = @function(HANDLE, PVOID, PDWORD, *PRUNTIME_FUNCTION): culong
global _LDT_ENTRY: type <cimport,nodecl,ctypedef> = @record{
LimitLow: cushort,
BaseLow: cushort,
HighWord: union{
Bytes: record{
BaseMid: cuchar,
Flags1: cuchar,
Flags2: cuchar,
BaseHi: cuchar
},
Bits: record{
BaseMid: cuchar,
Type: culong,
Dpl: culong,
Pres: culong,
LimitHi: culong,
Sys: culong,
Reserved_0: culong,
Default_Big: culong,
Granularity: culong,
BaseHi: cuchar
}
}
}
global LDT_ENTRY: type = @_LDT_ENTRY
global PLDT_ENTRY: type = @*_LDT_ENTRY
_EXCEPTION_RECORD = @record{
ExceptionCode: culong,
ExceptionFlags: culong,
ExceptionRecord: *_EXCEPTION_RECORD,
ExceptionAddress: PVOID,
NumberParameters: culong,
ExceptionInformation: [15]culonglong
}
global EXCEPTION_RECORD: type = @_EXCEPTION_RECORD
global PEXCEPTION_RECORD: type = @*EXCEPTION_RECORD
global _EXCEPTION_RECORD32: type <cimport,nodecl,ctypedef> = @record{
ExceptionCode: culong,
ExceptionFlags: culong,
ExceptionRecord: culong,
ExceptionAddress: culong,
NumberParameters: culong,
ExceptionInformation: [15]culong
}
global EXCEPTION_RECORD32: type = @_EXCEPTION_RECORD32
global PEXCEPTION_RECORD32: type = @*_EXCEPTION_RECORD32
global _EXCEPTION_RECORD64: type <cimport,nodecl,ctypedef> = @record{
ExceptionCode: culong,
ExceptionFlags: culong,
ExceptionRecord: culonglong,
ExceptionAddress: culonglong,
NumberParameters: culong,
__unusedAlignment: culong,
ExceptionInformation: [15]culonglong
}
global EXCEPTION_RECORD64: type = @_EXCEPTION_RECORD64
global PEXCEPTION_RECORD64: type = @*_EXCEPTION_RECORD64
_EXCEPTION_POINTERS = @record{
ExceptionRecord: PEXCEPTION_RECORD,
ContextRecord: PCONTEXT
}
global EXCEPTION_POINTERS: type = @_EXCEPTION_POINTERS
global PEXCEPTION_POINTERS: type = @*_EXCEPTION_POINTERS
global _UNWIND_HISTORY_TABLE_ENTRY: type <cimport,nodecl,ctypedef> = @record{
ImageBase: culonglong,
FunctionEntry: PRUNTIME_FUNCTION
}
global UNWIND_HISTORY_TABLE_ENTRY: type = @_UNWIND_HISTORY_TABLE_ENTRY
global PUNWIND_HISTORY_TABLE_ENTRY: type = @*_UNWIND_HISTORY_TABLE_ENTRY
global _UNWIND_HISTORY_TABLE: type <cimport,nodecl,ctypedef> = @record{
Count: culong,
LocalHint: cuchar,
GlobalHint: cuchar,
Search: cuchar,
Once: cuchar,
LowAddress: culonglong,
HighAddress: culonglong,
Entry: [12]UNWIND_HISTORY_TABLE_ENTRY
}
global UNWIND_HISTORY_TABLE: type = @_UNWIND_HISTORY_TABLE
global PUNWIND_HISTORY_TABLE: type = @*_UNWIND_HISTORY_TABLE
global DISPATCHER_CONTEXT: type = @_DISPATCHER_CONTEXT
global PDISPATCHER_CONTEXT: type = @*_DISPATCHER_CONTEXT
_DISPATCHER_CONTEXT = @record{
ControlPc: culonglong,
ImageBase: culonglong,
FunctionEntry: PRUNTIME_FUNCTION,
EstablisherFrame: culonglong,
TargetIp: culonglong,
ContextRecord: PCONTEXT,
LanguageHandler: PEXCEPTION_ROUTINE,
HandlerData: PVOID,
HistoryTable: PUNWIND_HISTORY_TABLE,
ScopeIndex: culong,
Fill0: culong
}
global _KNONVOLATILE_CONTEXT_POINTERS: type <cimport,nodecl,ctypedef> = @record{
FloatingContext: [16]PM128A,
IntegerContext: [16]PULONG64
}
global KNONVOLATILE_CONTEXT_POINTERS: type = @_KNONVOLATILE_CONTEXT_POINTERS
global PKNONVOLATILE_CONTEXT_POINTERS: type = @*_KNONVOLATILE_CONTEXT_POINTERS
global PACCESS_TOKEN: type = @pointer
global PSECURITY_DESCRIPTOR: type = @pointer
global PSID: type = @pointer
global PCLAIMS_BLOB: type = @pointer
global PACCESS_MASK: type = @*culong
global _GENERIC_MAPPING: type <cimport,nodecl,ctypedef> = @record{
GenericRead: culong,
GenericWrite: culong,
GenericExecute: culong,
GenericAll: culong
}
global GENERIC_MAPPING: type = @_GENERIC_MAPPING
global PGENERIC_MAPPING: type = @*GENERIC_MAPPING
global _LUID_AND_ATTRIBUTES: type <cimport,nodecl,ctypedef> = @record{
Luid: LUID,
Attributes: culong
}
global LUID_AND_ATTRIBUTES: type = @_LUID_AND_ATTRIBUTES
global PLUID_AND_ATTRIBUTES: type = @*_LUID_AND_ATTRIBUTES
global PLUID_AND_ATTRIBUTES_ARRAY: type = @*[1]LUID_AND_ATTRIBUTES
global _SID_IDENTIFIER_AUTHORITY: type <cimport,nodecl,ctypedef> = @record{
Value: [6]cuchar
}
global SID_IDENTIFIER_AUTHORITY: type = @_SID_IDENTIFIER_AUTHORITY
global PSID_IDENTIFIER_AUTHORITY: type = @*_SID_IDENTIFIER_AUTHORITY
global _SID: type <cimport,nodecl,ctypedef> = @record{
Revision: cuchar,
SubAuthorityCount: cuchar,
IdentifierAuthority: SID_IDENTIFIER_AUTHORITY,
SubAuthority: [1]culong
}
global SID: type = @_SID
global PISID: type = @*_SID
global _SID_NAME_USE: type <cimport,nodecl,using,ctypedef> = @enum(cint){
SidTypeUser = 1,
SidTypeGroup = 2,
SidTypeDomain = 3,
SidTypeAlias = 4,
SidTypeWellKnownGroup = 5,
SidTypeDeletedAccount = 6,
SidTypeInvalid = 7,
SidTypeUnknown = 8,
SidTypeComputer = 9,
SidTypeLabel = 10,
SidTypeLogonSession = 11
}
global SID_NAME_USE: type = @_SID_NAME_USE
global PSID_NAME_USE: type = @*_SID_NAME_USE
global _SID_AND_ATTRIBUTES: type <cimport,nodecl,ctypedef> = @record{
Sid: PSID,
Attributes: culong
}
global SID_AND_ATTRIBUTES: type = @_SID_AND_ATTRIBUTES
global PSID_AND_ATTRIBUTES: type = @*_SID_AND_ATTRIBUTES
global PSID_AND_ATTRIBUTES_ARRAY: type = @*[1]SID_AND_ATTRIBUTES
global PSID_HASH_ENTRY: type = @*culonglong
global _SID_AND_ATTRIBUTES_HASH: type <cimport,nodecl,ctypedef> = @record{
SidCount: culong,
SidAttr: PSID_AND_ATTRIBUTES,
Hash: [32]culonglong
}
global SID_AND_ATTRIBUTES_HASH: type = @_SID_AND_ATTRIBUTES_HASH
global PSID_AND_ATTRIBUTES_HASH: type = @*_SID_AND_ATTRIBUTES_HASH
global WELL_KNOWN_SID_TYPE: type <cimport,nodecl,using> = @enum(cint){
WinNullSid = 0,
WinWorldSid = 1,
WinLocalSid = 2,
WinCreatorOwnerSid = 3,
WinCreatorGroupSid = 4,
WinCreatorOwnerServerSid = 5,
WinCreatorGroupServerSid = 6,
WinNtAuthoritySid = 7,
WinDialupSid = 8,
WinNetworkSid = 9,
WinBatchSid = 10,
WinInteractiveSid = 11,
WinServiceSid = 12,
WinAnonymousSid = 13,
WinProxySid = 14,
WinEnterpriseControllersSid = 15,
WinSelfSid = 16,
WinAuthenticatedUserSid = 17,
WinRestrictedCodeSid = 18,
WinTerminalServerSid = 19,
WinRemoteLogonIdSid = 20,
WinLogonIdsSid = 21,
WinLocalSystemSid = 22,
WinLocalServiceSid = 23,
WinNetworkServiceSid = 24,
WinBuiltinDomainSid = 25,
WinBuiltinAdministratorsSid = 26,
WinBuiltinUsersSid = 27,
WinBuiltinGuestsSid = 28,
WinBuiltinPowerUsersSid = 29,
WinBuiltinAccountOperatorsSid = 30,
WinBuiltinSystemOperatorsSid = 31,
WinBuiltinPrintOperatorsSid = 32,
WinBuiltinBackupOperatorsSid = 33,
WinBuiltinReplicatorSid = 34,
WinBuiltinPreWindows2000CompatibleAccessSid = 35,
WinBuiltinRemoteDesktopUsersSid = 36,
WinBuiltinNetworkConfigurationOperatorsSid = 37,
WinAccountAdministratorSid = 38,
WinAccountGuestSid = 39,
WinAccountKrbtgtSid = 40,
WinAccountDomainAdminsSid = 41,
WinAccountDomainUsersSid = 42,
WinAccountDomainGuestsSid = 43,
WinAccountComputersSid = 44,
WinAccountControllersSid = 45,
WinAccountCertAdminsSid = 46,
WinAccountSchemaAdminsSid = 47,
WinAccountEnterpriseAdminsSid = 48,
WinAccountPolicyAdminsSid = 49,
WinAccountRasAndIasServersSid = 50,
WinNTLMAuthenticationSid = 51,
WinDigestAuthenticationSid = 52,
WinSChannelAuthenticationSid = 53,
WinThisOrganizationSid = 54,
WinOtherOrganizationSid = 55,
WinBuiltinIncomingForestTrustBuildersSid = 56,
WinBuiltinPerfMonitoringUsersSid = 57,
WinBuiltinPerfLoggingUsersSid = 58,
WinBuiltinAuthorizationAccessSid = 59,
WinBuiltinTerminalServerLicenseServersSid = 60,
WinBuiltinDCOMUsersSid = 61,
WinBuiltinIUsersSid = 62,
WinIUserSid = 63,
WinBuiltinCryptoOperatorsSid = 64,