-
Notifications
You must be signed in to change notification settings - Fork 35
/
NtUiLib.Errors.mc
32083 lines (27503 loc) · 558 KB
/
NtUiLib.Errors.mc
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
;// This file defines constant messages for the most common NTSTATUS, HRESULT,
;// and Win32 errors. To avoid collisions, we store them embedded into
;// NTSTATUS codes, which means:
;//
;// 1. NTSTATUS constants appear as is.
;// 2. HRESULT errors have a facility swap bit (aka NT-facility bit, reserved
;// bit, or just bit 28) set. For example, E_NOTIMPL (which has a value of
;// 0x80004001 as an HRESULT) appears as 0x90004001 when stored inside an
;// NTSTATUS.
;// 3. Win32 errors follow semantics of NTSTATUS_FROM_WIN32 which represents
;// them as 0xC007xxxx (an unsuccessful NTSTATUS with the Win32 facility).
;// Note that some Windows functions embed Win32 errors into HRESULTS as
;// 0x8007xxxx (an HRESULT with the Win32 facility). The caller needs to
;// convert such codes to their NTSTATUS representation before looking them
;// up in the message table.
;//
;// There is a pre-compiled version of this file available: NtUiLib.Errors.res
;//
;// Compiling the message table requires three files that come with
;// Windows SDK: mc.exe, rc.exe, and rcdll.dll. You can find them under
;// %Program Files%\Windows Kits\10\bin\%SDK Version%\%Platform%
;//
;// Unfortunately, mc.exe does not allow controling the reserved (28) bit
;// and the customer (29) bit through the message text file. Since we are
;// intensively using the reserved bit as a facility swap bit, compiling this
;// file requires patching mc.exe so we can bypass this limitation.
;//
;// To adjust the maximum value of a facility from 0x0FFF to 0x3FFF, patch
;// this hex sequence in the 64-bit version of mc.exe:
;//
;// 41 B8 FF 0F 00 00 -> 41 B8 FF 3F 00 00
;//
;// Which corresponds to changing
;//
;// mov r8d, 00000FFF -> mov r8d, 00003FFF
;//
;// so we can use facilities like 0x1xxx to set the reserved bit.
;//
;// After that, compiling the message table requires two simple steps:
;//
;// 1. call mc.exe NtUiLib.Errors.mc -A
;// 2. call rc.exe NtUiLib.Errors.rc
;//
;// The first action produces a .bin and an .rc file; the second one compiles
;// them into a .res file. We use ASCII (-A switch) to save space since the
;// constant names do not require localization.
;//
LanguageNames = (
Neutral = 0x:NtUiLib_Errors
)
SeverityNames = (
Success = 0x0
Informational = 0x1
Warning = 0x2
Error = 0x3
)
FacilityNames = (
Null = 0x0
Debugger = 0x1
RpcStubs = 0x2
RpcRuntime = 0x3
Win32 = 0x7
TerminalServer = 0xA
MUI = 0xB
XmlLite = 0xC
SxS = 0x15
Transaction = 0x19
Log = 0x1A
FilterManager = 0x1C
VolMgr = 0x38
BCD = 0x39
VHD = 0x3A
SystemIntegrity = 0xE9
AppExec = 0xEC
HRESULT_Null = 0x1000
HRESULT_RPC = 0x1001
HRESULT_Dispatch = 0x1002
HRESULT_Storage = 0x1003
HRESULT_Interface = 0x1004
HRESULT_DismAPI = 0x1004
HRESULT_Windows = 0x1008
HRESULT_Security = 0x1009
HRESULT_WER = 0x101B
HRESULT_SetupAPI = 0x101F
HRESULT_Graphics = 0x1026
HRESULT_Shell = 0x1027
HRESULT_VolMgr = 0x1038
HRESULT_BCD = 0x1039
HRESULT_VHD = 0x103A
HRESULT_DismAPI2 = 0x1151
)
;// ------------------------------ NTSTATUS ------------------------------ //
; /* Success */
MessageId = 0x0000 ; // NTSTATUS(0x00000000)
Severity = Success
Facility = Null
Language = Neutral
STATUS_SUCCESS
.
MessageId = 0x0080 ; // NTSTATUS(0x00000080)
Severity = Success
Facility = Null
Language = Neutral
STATUS_ABANDONED
.
MessageId = 0x00C0 ; // NTSTATUS(0x000000C0)
Severity = Success
Facility = Null
Language = Neutral
STATUS_USER_APC
.
MessageId = 0x00FF ; // NTSTATUS(0x000000FF)
Severity = Success
Facility = Null
Language = Neutral
STATUS_ALREADY_COMPLETE
.
MessageId = 0x0100 ; // NTSTATUS(0x00000100)
Severity = Success
Facility = Null
Language = Neutral
STATUS_KERNEL_APC
.
MessageId = 0x0101 ; // NTSTATUS(0x00000101)
Severity = Success
Facility = Null
Language = Neutral
STATUS_ALERTED
.
MessageId = 0x0102 ; // NTSTATUS(0x00000102)
Severity = Success
Facility = Null
Language = Neutral
STATUS_TIMEOUT
.
MessageId = 0x0103 ; // NTSTATUS(0x00000103)
Severity = Success
Facility = Null
Language = Neutral
STATUS_PENDING
.
MessageId = 0x0104 ; // NTSTATUS(0x00000104)
Severity = Success
Facility = Null
Language = Neutral
STATUS_REPARSE
.
MessageId = 0x0105 ; // NTSTATUS(0x00000105)
Severity = Success
Facility = Null
Language = Neutral
STATUS_MORE_ENTRIES
.
MessageId = 0x0106 ; // NTSTATUS(0x00000106)
Severity = Success
Facility = Null
Language = Neutral
STATUS_NOT_ALL_ASSIGNED
.
MessageId = 0x0107 ; // NTSTATUS(0x00000107)
Severity = Success
Facility = Null
Language = Neutral
STATUS_SOME_NOT_MAPPED
.
MessageId = 0x0108 ; // NTSTATUS(0x00000108)
Severity = Success
Facility = Null
Language = Neutral
STATUS_OPLOCK_BREAK_IN_PROGRESS
.
MessageId = 0x0109 ; // NTSTATUS(0x00000109)
Severity = Success
Facility = Null
Language = Neutral
STATUS_VOLUME_MOUNTED
.
MessageId = 0x010A ; // NTSTATUS(0x0000010A)
Severity = Success
Facility = Null
Language = Neutral
STATUS_RXACT_COMMITTED
.
MessageId = 0x010B ; // NTSTATUS(0x0000010B)
Severity = Success
Facility = Null
Language = Neutral
STATUS_NOTIFY_CLEANUP
.
MessageId = 0x010C ; // NTSTATUS(0x0000010C)
Severity = Success
Facility = Null
Language = Neutral
STATUS_NOTIFY_ENUM_DIR
.
MessageId = 0x010D ; // NTSTATUS(0x0000010D)
Severity = Success
Facility = Null
Language = Neutral
STATUS_NO_QUOTAS_FOR_ACCOUNT
.
MessageId = 0x010E ; // NTSTATUS(0x0000010E)
Severity = Success
Facility = Null
Language = Neutral
STATUS_PRIMARY_TRANSPORT_CONNECT_FAILED
.
MessageId = 0x0110 ; // NTSTATUS(0x00000110)
Severity = Success
Facility = Null
Language = Neutral
STATUS_PAGE_FAULT_TRANSITION
.
MessageId = 0x0111 ; // NTSTATUS(0x00000111)
Severity = Success
Facility = Null
Language = Neutral
STATUS_PAGE_FAULT_DEMAND_ZERO
.
MessageId = 0x0112 ; // NTSTATUS(0x00000112)
Severity = Success
Facility = Null
Language = Neutral
STATUS_PAGE_FAULT_COPY_ON_WRITE
.
MessageId = 0x0113 ; // NTSTATUS(0x00000113)
Severity = Success
Facility = Null
Language = Neutral
STATUS_PAGE_FAULT_GUARD_PAGE
.
MessageId = 0x0114 ; // NTSTATUS(0x00000114)
Severity = Success
Facility = Null
Language = Neutral
STATUS_PAGE_FAULT_PAGING_FILE
.
MessageId = 0x0115 ; // NTSTATUS(0x00000115)
Severity = Success
Facility = Null
Language = Neutral
STATUS_CACHE_PAGE_LOCKED
.
MessageId = 0x0116 ; // NTSTATUS(0x00000116)
Severity = Success
Facility = Null
Language = Neutral
STATUS_CRASH_DUMP
.
MessageId = 0x0117 ; // NTSTATUS(0x00000117)
Severity = Success
Facility = Null
Language = Neutral
STATUS_BUFFER_ALL_ZEROS
.
MessageId = 0x0118 ; // NTSTATUS(0x00000118)
Severity = Success
Facility = Null
Language = Neutral
STATUS_REPARSE_OBJECT
.
MessageId = 0x0119 ; // NTSTATUS(0x00000119)
Severity = Success
Facility = Null
Language = Neutral
STATUS_RESOURCE_REQUIREMENTS_CHANGED
.
MessageId = 0x0120 ; // NTSTATUS(0x00000120)
Severity = Success
Facility = Null
Language = Neutral
STATUS_TRANSLATION_COMPLETE
.
MessageId = 0x0121 ; // NTSTATUS(0x00000121)
Severity = Success
Facility = Null
Language = Neutral
STATUS_DS_MEMBERSHIP_EVALUATED_LOCALLY
.
MessageId = 0x0122 ; // NTSTATUS(0x00000122)
Severity = Success
Facility = Null
Language = Neutral
STATUS_NOTHING_TO_TERMINATE
.
MessageId = 0x0123 ; // NTSTATUS(0x00000123)
Severity = Success
Facility = Null
Language = Neutral
STATUS_PROCESS_NOT_IN_JOB
.
MessageId = 0x0124 ; // NTSTATUS(0x00000124)
Severity = Success
Facility = Null
Language = Neutral
STATUS_PROCESS_IN_JOB
.
MessageId = 0x0125 ; // NTSTATUS(0x00000125)
Severity = Success
Facility = Null
Language = Neutral
STATUS_VOLSNAP_HIBERNATE_READY
.
MessageId = 0x0126 ; // NTSTATUS(0x00000126)
Severity = Success
Facility = Null
Language = Neutral
STATUS_FSFILTER_OP_COMPLETED_SUCCESSFULLY
.
MessageId = 0x0127 ; // NTSTATUS(0x00000127)
Severity = Success
Facility = Null
Language = Neutral
STATUS_INTERRUPT_VECTOR_ALREADY_CONNECTED
.
MessageId = 0x0128 ; // NTSTATUS(0x00000128)
Severity = Success
Facility = Null
Language = Neutral
STATUS_INTERRUPT_STILL_CONNECTED
.
MessageId = 0x0129 ; // NTSTATUS(0x00000129)
Severity = Success
Facility = Null
Language = Neutral
STATUS_PROCESS_CLONED
.
MessageId = 0x012A ; // NTSTATUS(0x0000012A)
Severity = Success
Facility = Null
Language = Neutral
STATUS_FILE_LOCKED_WITH_ONLY_READERS
.
MessageId = 0x012B ; // NTSTATUS(0x0000012B)
Severity = Success
Facility = Null
Language = Neutral
STATUS_FILE_LOCKED_WITH_WRITERS
.
MessageId = 0x012C ; // NTSTATUS(0x0000012C)
Severity = Success
Facility = Null
Language = Neutral
STATUS_VALID_IMAGE_HASH
.
MessageId = 0x012D ; // NTSTATUS(0x0000012D)
Severity = Success
Facility = Null
Language = Neutral
STATUS_VALID_CATALOG_HASH
.
MessageId = 0x012E ; // NTSTATUS(0x0000012E)
Severity = Success
Facility = Null
Language = Neutral
STATUS_VALID_STRONG_CODE_HASH
.
MessageId = 0x012F ; // NTSTATUS(0x0000012F)
Severity = Success
Facility = Null
Language = Neutral
STATUS_GHOSTED
.
MessageId = 0x0130 ; // NTSTATUS(0x00000130)
Severity = Success
Facility = Null
Language = Neutral
STATUS_DATA_OVERWRITTEN
.
MessageId = 0x0202 ; // NTSTATUS(0x00000202)
Severity = Success
Facility = Null
Language = Neutral
STATUS_RESOURCEMANAGER_READ_ONLY
.
MessageId = 0x0210 ; // NTSTATUS(0x00000210)
Severity = Success
Facility = Null
Language = Neutral
STATUS_RING_PREVIOUSLY_EMPTY
.
MessageId = 0x0211 ; // NTSTATUS(0x00000211)
Severity = Success
Facility = Null
Language = Neutral
STATUS_RING_PREVIOUSLY_FULL
.
MessageId = 0x0212 ; // NTSTATUS(0x00000212)
Severity = Success
Facility = Null
Language = Neutral
STATUS_RING_PREVIOUSLY_ABOVE_QUOTA
.
MessageId = 0x0213 ; // NTSTATUS(0x00000213)
Severity = Success
Facility = Null
Language = Neutral
STATUS_RING_NEWLY_EMPTY
.
MessageId = 0x0214 ; // NTSTATUS(0x00000214)
Severity = Success
Facility = Null
Language = Neutral
STATUS_RING_SIGNAL_OPPOSITE_ENDPOINT
.
MessageId = 0x0215 ; // NTSTATUS(0x00000215)
Severity = Success
Facility = Null
Language = Neutral
STATUS_OPLOCK_SWITCHED_TO_NEW_HANDLE
.
MessageId = 0x0216 ; // NTSTATUS(0x00000216)
Severity = Success
Facility = Null
Language = Neutral
STATUS_OPLOCK_HANDLE_CLOSED
.
MessageId = 0x0367 ; // NTSTATUS(0x00000367)
Severity = Success
Facility = Null
Language = Neutral
STATUS_WAIT_FOR_OPLOCK
.
MessageId = 0x0368 ; // NTSTATUS(0x00000368)
Severity = Success
Facility = Null
Language = Neutral
STATUS_REPARSE_GLOBAL
.
MessageId = 0x0001 ; // NTSTATUS(0x00010001)
Severity = Success
Facility = Debugger
Language = Neutral
DBG_EXCEPTION_HANDLED
.
MessageId = 0x0002 ; // NTSTATUS(0x00010002)
Severity = Success
Facility = Debugger
Language = Neutral
DBG_CONTINUE
.
MessageId = 0x0001 ; // NTSTATUS(0x001C0001)
Severity = Success
Facility = FilterManager
Language = Neutral
STATUS_FLT_IO_COMPLETE
.
; /* Informational */
MessageId = 0x0000 ; // NTSTATUS(0x40000000)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_OBJECT_NAME_EXISTS
.
MessageId = 0x0001 ; // NTSTATUS(0x40000001)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_THREAD_WAS_SUSPENDED
.
MessageId = 0x0002 ; // NTSTATUS(0x40000002)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_WORKING_SET_LIMIT_RANGE
.
MessageId = 0x0003 ; // NTSTATUS(0x40000003)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_IMAGE_NOT_AT_BASE
.
MessageId = 0x0004 ; // NTSTATUS(0x40000004)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_RXACT_STATE_CREATED
.
MessageId = 0x0005 ; // NTSTATUS(0x40000005)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_SEGMENT_NOTIFICATION
.
MessageId = 0x0006 ; // NTSTATUS(0x40000006)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_LOCAL_USER_SESSION_KEY
.
MessageId = 0x0007 ; // NTSTATUS(0x40000007)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_BAD_CURRENT_DIRECTORY
.
MessageId = 0x0008 ; // NTSTATUS(0x40000008)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_SERIAL_MORE_WRITES
.
MessageId = 0x0009 ; // NTSTATUS(0x40000009)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_REGISTRY_RECOVERED
.
MessageId = 0x000A ; // NTSTATUS(0x4000000A)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_FT_READ_RECOVERY_FROM_BACKUP
.
MessageId = 0x000B ; // NTSTATUS(0x4000000B)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_FT_WRITE_RECOVERY
.
MessageId = 0x000C ; // NTSTATUS(0x4000000C)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_SERIAL_COUNTER_TIMEOUT
.
MessageId = 0x000D ; // NTSTATUS(0x4000000D)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_NULL_LM_PASSWORD
.
MessageId = 0x000E ; // NTSTATUS(0x4000000E)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_IMAGE_MACHINE_TYPE_MISMATCH
.
MessageId = 0x000F ; // NTSTATUS(0x4000000F)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_RECEIVE_PARTIAL
.
MessageId = 0x0010 ; // NTSTATUS(0x40000010)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_RECEIVE_EXPEDITED
.
MessageId = 0x0011 ; // NTSTATUS(0x40000011)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_RECEIVE_PARTIAL_EXPEDITED
.
MessageId = 0x0012 ; // NTSTATUS(0x40000012)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_EVENT_DONE
.
MessageId = 0x0013 ; // NTSTATUS(0x40000013)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_EVENT_PENDING
.
MessageId = 0x0014 ; // NTSTATUS(0x40000014)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_CHECKING_FILE_SYSTEM
.
MessageId = 0x0015 ; // NTSTATUS(0x40000015)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_FATAL_APP_EXIT
.
MessageId = 0x0016 ; // NTSTATUS(0x40000016)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_PREDEFINED_HANDLE
.
MessageId = 0x0017 ; // NTSTATUS(0x40000017)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_WAS_UNLOCKED
.
MessageId = 0x0018 ; // NTSTATUS(0x40000018)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_SERVICE_NOTIFICATION
.
MessageId = 0x0019 ; // NTSTATUS(0x40000019)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_WAS_LOCKED
.
MessageId = 0x001A ; // NTSTATUS(0x4000001A)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_LOG_HARD_ERROR
.
MessageId = 0x001B ; // NTSTATUS(0x4000001B)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_ALREADY_WIN32
.
MessageId = 0x001C ; // NTSTATUS(0x4000001C)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_WX86_UNSIMULATE
.
MessageId = 0x001D ; // NTSTATUS(0x4000001D)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_WX86_CONTINUE
.
MessageId = 0x001E ; // NTSTATUS(0x4000001E)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_WX86_SINGLE_STEP
.
MessageId = 0x001F ; // NTSTATUS(0x4000001F)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_WX86_BREAKPOINT
.
MessageId = 0x0020 ; // NTSTATUS(0x40000020)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_WX86_EXCEPTION_CONTINUE
.
MessageId = 0x0021 ; // NTSTATUS(0x40000021)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_WX86_EXCEPTION_LASTCHANCE
.
MessageId = 0x0022 ; // NTSTATUS(0x40000022)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_WX86_EXCEPTION_CHAIN
.
MessageId = 0x0023 ; // NTSTATUS(0x40000023)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_IMAGE_MACHINE_TYPE_MISMATCH_EXE
.
MessageId = 0x0024 ; // NTSTATUS(0x40000024)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_NO_YIELD_PERFORMED
.
MessageId = 0x0025 ; // NTSTATUS(0x40000025)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_TIMER_RESUME_IGNORED
.
MessageId = 0x0026 ; // NTSTATUS(0x40000026)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_ARBITRATION_UNHANDLED
.
MessageId = 0x0027 ; // NTSTATUS(0x40000027)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_CARDBUS_NOT_SUPPORTED
.
MessageId = 0x0028 ; // NTSTATUS(0x40000028)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_WX86_CREATEWX86TIB
.
MessageId = 0x0029 ; // NTSTATUS(0x40000029)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_MP_PROCESSOR_MISMATCH
.
MessageId = 0x002A ; // NTSTATUS(0x4000002A)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_HIBERNATED
.
MessageId = 0x002B ; // NTSTATUS(0x4000002B)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_RESUME_HIBERNATION
.
MessageId = 0x002C ; // NTSTATUS(0x4000002C)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_FIRMWARE_UPDATED
.
MessageId = 0x002D ; // NTSTATUS(0x4000002D)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_DRIVERS_LEAKING_LOCKED_PAGES
.
MessageId = 0x002E ; // NTSTATUS(0x4000002E)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_MESSAGE_RETRIEVED
.
MessageId = 0x002F ; // NTSTATUS(0x4000002F)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_SYSTEM_POWERSTATE_TRANSITION
.
MessageId = 0x0030 ; // NTSTATUS(0x40000030)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_ALPC_CHECK_COMPLETION_LIST
.
MessageId = 0x0031 ; // NTSTATUS(0x40000031)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_SYSTEM_POWERSTATE_COMPLEX_TRANSITION
.
MessageId = 0x0032 ; // NTSTATUS(0x40000032)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_ACCESS_AUDIT_BY_POLICY
.
MessageId = 0x0033 ; // NTSTATUS(0x40000033)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_ABANDON_HIBERFILE
.
MessageId = 0x0034 ; // NTSTATUS(0x40000034)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_BIZRULES_NOT_ENABLED
.
MessageId = 0x0035 ; // NTSTATUS(0x40000035)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_FT_READ_FROM_COPY
.
MessageId = 0x0036 ; // NTSTATUS(0x40000036)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_IMAGE_AT_DIFFERENT_BASE
.
MessageId = 0x0037 ; // NTSTATUS(0x40000037)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_PATCH_DEFERRED
.
MessageId = 0x0038 ; // NTSTATUS(0x40000038)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_EMULATION_BREAKPOINT
.
MessageId = 0x0039 ; // NTSTATUS(0x40000039)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_EMULATION_SYSCALL
.
MessageId = 0x0294 ; // NTSTATUS(0x40000294)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_WAKE_SYSTEM
.
MessageId = 0x0370 ; // NTSTATUS(0x40000370)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_DS_SHUTTING_DOWN
.
MessageId = 0x0807 ; // NTSTATUS(0x40000807)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_DISK_REPAIR_REDIRECTED
.
MessageId = 0xA144 ; // NTSTATUS(0x4000A144)
Severity = Informational
Facility = Null
Language = Neutral
STATUS_SERVICES_FAILED_AUTOSTART
.
MessageId = 0x0001 ; // NTSTATUS(0x40010001)
Severity = Informational
Facility = Debugger
Language = Neutral
DBG_REPLY_LATER
.
MessageId = 0x0002 ; // NTSTATUS(0x40010002)
Severity = Informational
Facility = Debugger
Language = Neutral
DBG_UNABLE_TO_PROVIDE_HANDLE
.
MessageId = 0x0003 ; // NTSTATUS(0x40010003)
Severity = Informational
Facility = Debugger
Language = Neutral
DBG_TERMINATE_THREAD
.
MessageId = 0x0004 ; // NTSTATUS(0x40010004)
Severity = Informational
Facility = Debugger
Language = Neutral
DBG_TERMINATE_PROCESS
.
MessageId = 0x0005 ; // NTSTATUS(0x40010005)
Severity = Informational
Facility = Debugger
Language = Neutral
DBG_CONTROL_C
.
MessageId = 0x0006 ; // NTSTATUS(0x40010006)
Severity = Informational
Facility = Debugger
Language = Neutral
DBG_PRINTEXCEPTION_C
.
MessageId = 0x0007 ; // NTSTATUS(0x40010007)
Severity = Informational
Facility = Debugger
Language = Neutral
DBG_RIPEXCEPTION
.
MessageId = 0x0008 ; // NTSTATUS(0x40010008)
Severity = Informational
Facility = Debugger