-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDokanStatus.h
More file actions
19741 lines (17911 loc) · 472 KB
/
DokanStatus.h
File metadata and controls
19741 lines (17911 loc) · 472 KB
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
/*++ BUILD Version: 0005 // Increment this if a change has global effects
Copyright (c) Microsoft Corporation. All rights reserved.
Module Name:
ntstatus.h
Abstract:
Constant definitions for the NTSTATUS values.
Author:
Portable Systems Group 30-Mar-1989
Revision History:
Notes:
This file is generated by the MC tool from the ntstatus.mc file.
Please add new error values to the end of the file. To do otherwise
will jumble the error values.
--*/
#ifndef _NTSTATUS_
#define _NTSTATUS_
#include <Windows.h>
typedef LONG NTSTATUS;
#if defined (_MSC_VER) && (_MSC_VER >= 1020)
#pragma once
#endif
#ifndef WIN32_NO_STATUS // winnt
// begin_ntsecapi
/*lint -save -e767 */ // Don't complain about different definitions // winnt
/////////////////////////////////////////////////////////////////////////
//
// Please update FACILITY_MAXIMUM_VALUE when adding new facility values.
//
//
/////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////
//
// Standard Success values
//
//
/////////////////////////////////////////////////////////////////////////
//
// The success status codes 0 - 63 are reserved for wait completion status.
// FacilityCodes 0x5 - 0xF have been allocated by various drivers.
//
#if !defined(STATUS_SUCCESS)
#define STATUS_SUCCESS ((NTSTATUS)0x00000000L) // ntsubauth
#endif
//
// Values are 32 bit values laid out as follows:
//
// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
// 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
// +---+-+-+-----------------------+-------------------------------+
// |Sev|C|R| Facility | Code |
// +---+-+-+-----------------------+-------------------------------+
//
// where
//
// Sev - is the severity code
//
// 00 - Success
// 01 - Informational
// 10 - Warning
// 11 - Error
//
// C - is the Customer code flag
//
// R - is a reserved bit
//
// Facility - is the facility code
//
// Code - is the facility's status code
//
//
// Define the facility codes
//
#define FACILITY_VIDEO 0x1B
#define FACILITY_USB_ERROR_CODE 0x10
#define FACILITY_TRANSACTION 0x19
#define FACILITY_TERMINAL_SERVER 0xA
#define FACILITY_SXS_ERROR_CODE 0x15
#define FACILITY_NTSSPI 0x9
#define FACILITY_RPC_STUBS 0x3
#define FACILITY_RPC_RUNTIME 0x2
#define FACILITY_NTWIN32 0x7
#define FACILITY_NDIS_ERROR_CODE 0x23
#define FACILTIY_MUI_ERROR_CODE 0xB
#define FACILITY_MONITOR 0x1D
#define FACILITY_MAXIMUM_VALUE 0x37
#define FACILITY_IPSEC 0x36
#define FACILITY_IO_ERROR_CODE 0x4
#define FACILITY_HYPERVISOR 0x35
#define FACILITY_HID_ERROR_CODE 0x11
#define FACILITY_GRAPHICS_KERNEL 0x1E
#define FACILITY_FWP_ERROR_CODE 0x22
#define FACILITY_FVE_ERROR_CODE 0x21
#define FACILITY_FIREWIRE_ERROR_CODE 0x12
#define FACILITY_FILTER_MANAGER 0x1C
#define FACILITY_DRIVER_FRAMEWORK 0x20
#define FACILITY_DEBUGGER 0x1
#define FACILITY_COMMONLOG 0x1A
#define FACILITY_CLUSTER_ERROR_CODE 0x13
#define FACILITY_ACPI_ERROR_CODE 0x14
//
// Define the severity codes
//
#define STATUS_SEVERITY_WARNING 0x2
#define STATUS_SEVERITY_SUCCESS 0x0
#define STATUS_SEVERITY_INFORMATIONAL 0x1
#define STATUS_SEVERITY_ERROR 0x3
//
// MessageId: STATUS_WAIT_0
//
// MessageText:
//
// STATUS_WAIT_0
//
#if !defined(STATUS_WAIT_0)
#define STATUS_WAIT_0 ((NTSTATUS)0x00000000L) // winnt
#endif
//
// MessageId: STATUS_WAIT_1
//
// MessageText:
//
// STATUS_WAIT_1
//
#if !defined(STATUS_WAIT_1)
#define STATUS_WAIT_1 ((NTSTATUS)0x00000001L)
#endif
//
// MessageId: STATUS_WAIT_2
//
// MessageText:
//
// STATUS_WAIT_2
//
#if !defined(STATUS_WAIT_2)
#define STATUS_WAIT_2 ((NTSTATUS)0x00000002L)
#endif
//
// MessageId: STATUS_WAIT_3
//
// MessageText:
//
// STATUS_WAIT_3
//
#if !defined(STATUS_WAIT_3)
#define STATUS_WAIT_3 ((NTSTATUS)0x00000003L)
#endif
//
// MessageId: STATUS_WAIT_63
//
// MessageText:
//
// STATUS_WAIT_63
//
#if !defined(STATUS_WAIT_63)
#define STATUS_WAIT_63 ((NTSTATUS)0x0000003FL)
#endif
//
// The success status codes 128 - 191 are reserved for wait completion
// status with an abandoned mutant object.
//
#if !defined(STATUS_ABANDONED)
#define STATUS_ABANDONED ((NTSTATUS)0x00000080L)
#endif
//
// MessageId: STATUS_ABANDONED_WAIT_0
//
// MessageText:
//
// STATUS_ABANDONED_WAIT_0
//
#if !defined(STATUS_ABANDONED_WAIT_0)
#define STATUS_ABANDONED_WAIT_0 ((NTSTATUS)0x00000080L) // winnt
#endif
//
// MessageId: STATUS_ABANDONED_WAIT_63
//
// MessageText:
//
// STATUS_ABANDONED_WAIT_63
//
#if !defined(STATUS_ABANDONED_WAIT_63)
#define STATUS_ABANDONED_WAIT_63 ((NTSTATUS)0x000000BFL)
#endif
//
// The success status codes 256, 257, 258, and 258 are reserved for
// User APC, Kernel APC, Alerted, and Timeout.
//
//
// MessageId: STATUS_USER_APC
//
// MessageText:
//
// STATUS_USER_APC
//
#if !defined(STATUS_USER_APC)
#define STATUS_USER_APC ((NTSTATUS)0x000000C0L) // winnt
#endif
//
// MessageId: STATUS_KERNEL_APC
//
// MessageText:
//
// STATUS_KERNEL_APC
//
#if !defined(STATUS_KERNEL_APC)
#define STATUS_KERNEL_APC ((NTSTATUS)0x00000100L)
#endif
//
// MessageId: STATUS_ALERTED
//
// MessageText:
//
// STATUS_ALERTED
//
#if !defined(STATUS_ALERTED)
#define STATUS_ALERTED ((NTSTATUS)0x00000101L)
#endif
//
// MessageId: STATUS_TIMEOUT
//
// MessageText:
//
// STATUS_TIMEOUT
//
#if !defined(STATUS_TIMEOUT)
#define STATUS_TIMEOUT ((NTSTATUS)0x00000102L) // winnt
#endif
//
// MessageId: STATUS_PENDING
//
// MessageText:
//
// The operation that was requested is pending completion.
//
#if !defined(STATUS_PENDING)
#define STATUS_PENDING ((NTSTATUS)0x00000103L) // winnt
#endif
//
// MessageId: STATUS_REPARSE
//
// MessageText:
//
// A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link.
//
#if !defined(STATUS_REPARSE)
#define STATUS_REPARSE ((NTSTATUS)0x00000104L)
#endif
//
// MessageId: STATUS_MORE_ENTRIES
//
// MessageText:
//
// Returned by enumeration APIs to indicate more information is available to successive calls.
//
#if !defined(STATUS_MORE_ENTRIES)
#define STATUS_MORE_ENTRIES ((NTSTATUS)0x00000105L)
#endif
//
// MessageId: STATUS_NOT_ALL_ASSIGNED
//
// MessageText:
//
// Indicates not all privileges or groups referenced are assigned to the caller.
// This allows, for example, all privileges to be disabled without having to know exactly which privileges are assigned.
//
#if !defined(STATUS_NOT_ALL_ASSIGNED)
#define STATUS_NOT_ALL_ASSIGNED ((NTSTATUS)0x00000106L)
#endif
//
// MessageId: STATUS_SOME_NOT_MAPPED
//
// MessageText:
//
// Some of the information to be translated has not been translated.
//
#if !defined(STATUS_SOME_NOT_MAPPED)
#define STATUS_SOME_NOT_MAPPED ((NTSTATUS)0x00000107L)
#endif
//
// MessageId: STATUS_OPLOCK_BREAK_IN_PROGRESS
//
// MessageText:
//
// An open/create operation completed while an oplock break is underway.
//
#if !defined(STATUS_OPLOCK_BREAK_IN_PROGRESS)
#define STATUS_OPLOCK_BREAK_IN_PROGRESS ((NTSTATUS)0x00000108L)
#endif
//
// MessageId: STATUS_VOLUME_MOUNTED
//
// MessageText:
//
// A new volume has been mounted by a file system.
//
#if !defined(STATUS_VOLUME_MOUNTED)
#define STATUS_VOLUME_MOUNTED ((NTSTATUS)0x00000109L)
#endif
//
// MessageId: STATUS_RXACT_COMMITTED
//
// MessageText:
//
// This success level status indicates that the transaction state already exists for the registry sub-tree, but that a transaction commit was previously aborted.
// The commit has now been completed.
//
#if !defined(STATUS_RXACT_COMMITTED)
#define STATUS_RXACT_COMMITTED ((NTSTATUS)0x0000010AL)
#endif
//
// MessageId: STATUS_NOTIFY_CLEANUP
//
// MessageText:
//
// This indicates that a notify change request has been completed due to closing the handle which made the notify change request.
//
#if !defined(STATUS_NOTIFY_CLEANUP)
#define STATUS_NOTIFY_CLEANUP ((NTSTATUS)0x0000010BL)
#endif
//
// MessageId: STATUS_NOTIFY_ENUM_DIR
//
// MessageText:
//
// This indicates that a notify change request is being completed and that the information is not being returned in the caller's buffer.
// The caller now needs to enumerate the files to find the changes.
//
#if !defined(STATUS_NOTIFY_ENUM_DIR)
#define STATUS_NOTIFY_ENUM_DIR ((NTSTATUS)0x0000010CL)
#endif
//
// MessageId: STATUS_NO_QUOTAS_FOR_ACCOUNT
//
// MessageText:
//
// {No Quotas}
// No system quota limits are specifically set for this account.
//
#if !defined(STATUS_NO_QUOTAS_FOR_ACCOUNT)
#define STATUS_NO_QUOTAS_FOR_ACCOUNT ((NTSTATUS)0x0000010DL)
#endif
//
// MessageId: STATUS_PRIMARY_TRANSPORT_CONNECT_FAILED
//
// MessageText:
//
// {Connect Failure on Primary Transport}
// An attempt was made to connect to the remote server %hs on the primary transport, but the connection failed.
// The computer WAS able to connect on a secondary transport.
//
#if !defined(STATUS_PRIMARY_TRANSPORT_CONNECT_FAILED)
#define STATUS_PRIMARY_TRANSPORT_CONNECT_FAILED ((NTSTATUS)0x0000010EL)
#endif
//
// MessageId: STATUS_PAGE_FAULT_TRANSITION
//
// MessageText:
//
// Page fault was a transition fault.
//
#if !defined(STATUS_PAGE_FAULT_TRANSITION)
#define STATUS_PAGE_FAULT_TRANSITION ((NTSTATUS)0x00000110L)
#endif
//
// MessageId: STATUS_PAGE_FAULT_DEMAND_ZERO
//
// MessageText:
//
// Page fault was a demand zero fault.
//
#if !defined(STATUS_PAGE_FAULT_DEMAND_ZERO)
#define STATUS_PAGE_FAULT_DEMAND_ZERO ((NTSTATUS)0x00000111L)
#endif
//
// MessageId: STATUS_PAGE_FAULT_COPY_ON_WRITE
//
// MessageText:
//
// Page fault was a demand zero fault.
//
#if !defined(STATUS_PAGE_FAULT_COPY_ON_WRITE)
#define STATUS_PAGE_FAULT_COPY_ON_WRITE ((NTSTATUS)0x00000112L)
#endif
//
// MessageId: STATUS_PAGE_FAULT_GUARD_PAGE
//
// MessageText:
//
// Page fault was a demand zero fault.
//
#if !defined(STATUS_PAGE_FAULT_GUARD_PAGE)
#define STATUS_PAGE_FAULT_GUARD_PAGE ((NTSTATUS)0x00000113L)
#endif
//
// MessageId: STATUS_PAGE_FAULT_PAGING_FILE
//
// MessageText:
//
// Page fault was satisfied by reading from a secondary storage device.
//
#if !defined(STATUS_PAGE_FAULT_PAGING_FILE)
#define STATUS_PAGE_FAULT_PAGING_FILE ((NTSTATUS)0x00000114L)
#endif
//
// MessageId: STATUS_CACHE_PAGE_LOCKED
//
// MessageText:
//
// Cached page was locked during operation.
//
#if !defined(STATUS_CACHE_PAGE_LOCKED)
#define STATUS_CACHE_PAGE_LOCKED ((NTSTATUS)0x00000115L)
#endif
//
// MessageId: STATUS_CRASH_DUMP
//
// MessageText:
//
// Crash dump exists in paging file.
//
#if !defined(STATUS_CRASH_DUMP)
#define STATUS_CRASH_DUMP ((NTSTATUS)0x00000116L)
#endif
//
// MessageId: STATUS_BUFFER_ALL_ZEROS
//
// MessageText:
//
// Specified buffer contains all zeros.
//
#if !defined(STATUS_BUFFER_ALL_ZEROS)
#define STATUS_BUFFER_ALL_ZEROS ((NTSTATUS)0x00000117L)
#endif
//
// MessageId: STATUS_REPARSE_OBJECT
//
// MessageText:
//
// A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link.
//
#if !defined(STATUS_REPARSE_OBJECT)
#define STATUS_REPARSE_OBJECT ((NTSTATUS)0x00000118L)
#endif
//
// MessageId: STATUS_RESOURCE_REQUIREMENTS_CHANGED
//
// MessageText:
//
// The device has succeeded a query-stop and its resource requirements have changed.
//
#if !defined(STATUS_RESOURCE_REQUIREMENTS_CHANGED)
#define STATUS_RESOURCE_REQUIREMENTS_CHANGED ((NTSTATUS)0x00000119L)
#endif
//
// MessageId: STATUS_TRANSLATION_COMPLETE
//
// MessageText:
//
// The translator has translated these resources into the global space and no further translations should be performed.
//
#if !defined(STATUS_TRANSLATION_COMPLETE)
#define STATUS_TRANSLATION_COMPLETE ((NTSTATUS)0x00000120L)
#endif
//
// MessageId: STATUS_DS_MEMBERSHIP_EVALUATED_LOCALLY
//
// MessageText:
//
// The directory service evaluated group memberships locally, as it was unable to contact a global catalog server.
//
#if !defined(STATUS_DS_MEMBERSHIP_EVALUATED_LOCALLY)
#define STATUS_DS_MEMBERSHIP_EVALUATED_LOCALLY ((NTSTATUS)0x00000121L)
#endif
//
// MessageId: STATUS_NOTHING_TO_TERMINATE
//
// MessageText:
//
// A process being terminated has no threads to terminate.
//
#if !defined(STATUS_NOTHING_TO_TERMINATE)
#define STATUS_NOTHING_TO_TERMINATE ((NTSTATUS)0x00000122L)
#endif
//
// MessageId: STATUS_PROCESS_NOT_IN_JOB
//
// MessageText:
//
// The specified process is not part of a job.
//
#if !defined(STATUS_PROCESS_NOT_IN_JOB)
#define STATUS_PROCESS_NOT_IN_JOB ((NTSTATUS)0x00000123L)
#endif
//
// MessageId: STATUS_PROCESS_IN_JOB
//
// MessageText:
//
// The specified process is part of a job.
//
#if !defined(STATUS_PROCESS_IN_JOB)
#define STATUS_PROCESS_IN_JOB ((NTSTATUS)0x00000124L)
#endif
//
// MessageId: STATUS_VOLSNAP_HIBERNATE_READY
//
// MessageText:
//
// {Volume Shadow Copy Service}
// The system is now ready for hibernation.
//
#if !defined(STATUS_VOLSNAP_HIBERNATE_READY)
#define STATUS_VOLSNAP_HIBERNATE_READY ((NTSTATUS)0x00000125L)
#endif
//
// MessageId: STATUS_FSFILTER_OP_COMPLETED_SUCCESSFULLY
//
// MessageText:
//
// A file system or file system filter driver has successfully completed an FsFilter operation.
//
#if !defined(STATUS_FSFILTER_OP_COMPLETED_SUCCESSFULLY)
#define STATUS_FSFILTER_OP_COMPLETED_SUCCESSFULLY ((NTSTATUS)0x00000126L)
#endif
//
// MessageId: STATUS_INTERRUPT_VECTOR_ALREADY_CONNECTED
//
// MessageText:
//
// The specified interrupt vector was already connected.
//
#if !defined(STATUS_INTERRUPT_VECTOR_ALREADY_CONNECTED)
#define STATUS_INTERRUPT_VECTOR_ALREADY_CONNECTED ((NTSTATUS)0x00000127L)
#endif
//
// MessageId: STATUS_INTERRUPT_STILL_CONNECTED
//
// MessageText:
//
// The specified interrupt vector is still connected.
//
#if !defined(STATUS_INTERRUPT_STILL_CONNECTED)
#define STATUS_INTERRUPT_STILL_CONNECTED ((NTSTATUS)0x00000128L)
#endif
//
// MessageId: STATUS_PROCESS_CLONED
//
// MessageText:
//
// The current process is a cloned process.
//
#if !defined(STATUS_PROCESS_CLONED)
#define STATUS_PROCESS_CLONED ((NTSTATUS)0x00000129L)
#endif
//
// MessageId: STATUS_FILE_LOCKED_WITH_ONLY_READERS
//
// MessageText:
//
// The file was locked and all users of the file can only read.
//
#if !defined(STATUS_FILE_LOCKED_WITH_ONLY_READERS)
#define STATUS_FILE_LOCKED_WITH_ONLY_READERS ((NTSTATUS)0x0000012AL)
#endif
//
// MessageId: STATUS_FILE_LOCKED_WITH_WRITERS
//
// MessageText:
//
// The file was locked and at least one user of the file can write.
//
#if !defined(STATUS_FILE_LOCKED_WITH_WRITERS)
#define STATUS_FILE_LOCKED_WITH_WRITERS ((NTSTATUS)0x0000012BL)
#endif
//
// MessageId: STATUS_RESOURCEMANAGER_READ_ONLY
//
// MessageText:
//
// The specified ResourceManager made no changes or updates to the resource under this transaction.
//
#if !defined(STATUS_RESOURCEMANAGER_READ_ONLY)
#define STATUS_RESOURCEMANAGER_READ_ONLY ((NTSTATUS)0x00000202L)
#endif
//
// MessageId: DBG_EXCEPTION_HANDLED
//
// MessageText:
//
// Debugger handled exception
//
#if !defined(DBG_EXCEPTION_HANDLED)
#define DBG_EXCEPTION_HANDLED ((NTSTATUS)0x00010001L) // winnt
#endif
//
// MessageId: DBG_CONTINUE
//
// MessageText:
//
// Debugger continued
//
#if !defined(DBG_CONTINUE)
#define DBG_CONTINUE ((NTSTATUS)0x00010002L) // winnt
#endif
//
// MessageId: STATUS_FLT_IO_COMPLETE
//
// MessageText:
//
// The IO was completed by a filter.
//
#if !defined(STATUS_FLT_IO_COMPLETE)
#define STATUS_FLT_IO_COMPLETE ((NTSTATUS)0x001C0001L)
#endif
/////////////////////////////////////////////////////////////////////////
//
// Standard Information values
//
/////////////////////////////////////////////////////////////////////////
//
// MessageId: STATUS_OBJECT_NAME_EXISTS
//
// MessageText:
//
// {Object Exists}
// An attempt was made to create an object and the object name already existed.
//
#if !defined(STATUS_OBJECT_NAME_EXISTS)
#define STATUS_OBJECT_NAME_EXISTS ((NTSTATUS)0x40000000L)
#endif
//
// MessageId: STATUS_THREAD_WAS_SUSPENDED
//
// MessageText:
//
// {Thread Suspended}
// A thread termination occurred while the thread was suspended. The thread was resumed, and termination proceeded.
//
#if !defined(STATUS_THREAD_WAS_SUSPENDED)
#define STATUS_THREAD_WAS_SUSPENDED ((NTSTATUS)0x40000001L)
#endif
//
// MessageId: STATUS_WORKING_SET_LIMIT_RANGE
//
// MessageText:
//
// {Working Set Range Error}
// An attempt was made to set the working set minimum or maximum to values which are outside of the allowable range.
//
#if !defined(STATUS_WORKING_SET_LIMIT_RANGE)
#define STATUS_WORKING_SET_LIMIT_RANGE ((NTSTATUS)0x40000002L)
#endif
//
// MessageId: STATUS_IMAGE_NOT_AT_BASE
//
// MessageText:
//
// {Image Relocated}
// An image file could not be mapped at the address specified in the image file. Local fixups must be performed on this image.
//
#if !defined(STATUS_IMAGE_NOT_AT_BASE)
#define STATUS_IMAGE_NOT_AT_BASE ((NTSTATUS)0x40000003L)
#endif
//
// MessageId: STATUS_RXACT_STATE_CREATED
//
// MessageText:
//
// This informational level status indicates that a specified registry sub-tree transaction state did not yet exist and had to be created.
//
#if !defined(STATUS_RXACT_STATE_CREATED)
#define STATUS_RXACT_STATE_CREATED ((NTSTATUS)0x40000004L)
#endif
//
// MessageId: STATUS_SEGMENT_NOTIFICATION
//
// MessageText:
//
// {Segment Load}
// A virtual DOS machine (VDM) is loading, unloading, or moving an MS-DOS or Win16 program segment image.
// An exception is raised so a debugger can load, unload or track symbols and breakpoints within these 16-bit segments.
//
#if !defined(STATUS_SEGMENT_NOTIFICATION)
#define STATUS_SEGMENT_NOTIFICATION ((NTSTATUS)0x40000005L) // winnt
#endif
//
// MessageId: STATUS_LOCAL_USER_SESSION_KEY
//
// MessageText:
//
// {Local Session Key}
// A user session key was requested for a local RPC connection. The session key returned is a constant value and not unique to this connection.
//
#if !defined(STATUS_LOCAL_USER_SESSION_KEY)
#define STATUS_LOCAL_USER_SESSION_KEY ((NTSTATUS)0x40000006L)
#endif
//
// MessageId: STATUS_BAD_CURRENT_DIRECTORY
//
// MessageText:
//
// {Invalid Current Directory}
// The process cannot switch to the startup current directory %hs.
// Select OK to set current directory to %hs, or select CANCEL to exit.
//
#if !defined(STATUS_BAD_CURRENT_DIRECTORY)
#define STATUS_BAD_CURRENT_DIRECTORY ((NTSTATUS)0x40000007L)
#endif
//
// MessageId: STATUS_SERIAL_MORE_WRITES
//
// MessageText:
//
// {Serial IOCTL Complete}
// A serial I/O operation was completed by another write to a serial port.
// (The IOCTL_SERIAL_XOFF_COUNTER reached zero.)
//
#if !defined(STATUS_SERIAL_MORE_WRITES)
#define STATUS_SERIAL_MORE_WRITES ((NTSTATUS)0x40000008L)
#endif
//
// MessageId: STATUS_REGISTRY_RECOVERED
//
// MessageText:
//
// {Registry Recovery}
// One of the files containing the system's Registry data had to be recovered by use of a log or alternate copy.
// The recovery was successful.
//
#if !defined(STATUS_REGISTRY_RECOVERED)
#define STATUS_REGISTRY_RECOVERED ((NTSTATUS)0x40000009L)
#endif
//
// MessageId: STATUS_FT_READ_RECOVERY_FROM_BACKUP
//
// MessageText:
//
// {Redundant Read}
// To satisfy a read request, the NT fault-tolerant file system successfully read the requested data from a redundant copy.
// This was done because the file system encountered a failure on a member of the fault-tolerant volume, but was unable to reassign the failing area of the device.
//
#if !defined(STATUS_FT_READ_RECOVERY_FROM_BACKUP)
#define STATUS_FT_READ_RECOVERY_FROM_BACKUP ((NTSTATUS)0x4000000AL)
#endif
//
// MessageId: STATUS_FT_WRITE_RECOVERY
//
// MessageText:
//
// {Redundant Write}
// To satisfy a write request, the NT fault-tolerant file system successfully wrote a redundant copy of the information.
// This was done because the file system encountered a failure on a member of the fault-tolerant volume, but was not able to reassign the failing area of the device.
//
#if !defined(STATUS_FT_WRITE_RECOVERY)
#define STATUS_FT_WRITE_RECOVERY ((NTSTATUS)0x4000000BL)
#endif
//
// MessageId: STATUS_SERIAL_COUNTER_TIMEOUT
//
// MessageText:
//
// {Serial IOCTL Timeout}
// A serial I/O operation completed because the time-out period expired.
// (The IOCTL_SERIAL_XOFF_COUNTER had not reached zero.)
//
#if !defined(STATUS_SERIAL_COUNTER_TIMEOUT)
#define STATUS_SERIAL_COUNTER_TIMEOUT ((NTSTATUS)0x4000000CL)
#endif
//
// MessageId: STATUS_NULL_LM_PASSWORD
//
// MessageText:
//
// {Password Too Complex}
// The Windows password is too complex to be converted to a LAN Manager password.
// The LAN Manager password returned is a NULL string.
//
#if !defined(STATUS_NULL_LM_PASSWORD)
#define STATUS_NULL_LM_PASSWORD ((NTSTATUS)0x4000000DL)
#endif
//
// MessageId: STATUS_IMAGE_MACHINE_TYPE_MISMATCH
//
// MessageText:
//
// {Machine Type Mismatch}
// The image file %hs is valid, but is for a machine type other than the current machine. Select OK to continue, or CANCEL to fail the DLL load.
//
#if !defined(STATUS_IMAGE_MACHINE_TYPE_MISMATCH)
#define STATUS_IMAGE_MACHINE_TYPE_MISMATCH ((NTSTATUS)0x4000000EL)
#endif
//
// MessageId: STATUS_RECEIVE_PARTIAL
//
// MessageText:
//
// {Partial Data Received}
// The network transport returned partial data to its client. The remaining data will be sent later.
//
#if !defined(STATUS_RECEIVE_PARTIAL)
#define STATUS_RECEIVE_PARTIAL ((NTSTATUS)0x4000000FL)
#endif
//
// MessageId: STATUS_RECEIVE_EXPEDITED
//
// MessageText:
//
// {Expedited Data Received}
// The network transport returned data to its client that was marked as expedited by the remote system.
//
#if !defined(STATUS_RECEIVE_EXPEDITED)
#define STATUS_RECEIVE_EXPEDITED ((NTSTATUS)0x40000010L)
#endif
//
// MessageId: STATUS_RECEIVE_PARTIAL_EXPEDITED
//
// MessageText:
//
// {Partial Expedited Data Received}
// The network transport returned partial data to its client and this data was marked as expedited by the remote system. The remaining data will be sent later.
//
#if !defined(STATUS_RECEIVE_PARTIAL_EXPEDITED)
#define STATUS_RECEIVE_PARTIAL_EXPEDITED ((NTSTATUS)0x40000011L)
#endif
//
// MessageId: STATUS_EVENT_DONE
//
// MessageText:
//
// {TDI Event Done}
// The TDI indication has completed successfully.
//
#if !defined(STATUS_EVENT_DONE)
#define STATUS_EVENT_DONE ((NTSTATUS)0x40000012L)
#endif
//
// MessageId: STATUS_EVENT_PENDING
//
// MessageText:
//
// {TDI Event Pending}
// The TDI indication has entered the pending state.
//
#if !defined(STATUS_EVENT_PENDING)
#define STATUS_EVENT_PENDING ((NTSTATUS)0x40000013L)
#endif
//
// MessageId: STATUS_CHECKING_FILE_SYSTEM
//
// MessageText:
//
// Checking file system on %wZ
//
#if !defined(STATUS_CHECKING_FILE_SYSTEM)
#define STATUS_CHECKING_FILE_SYSTEM ((NTSTATUS)0x40000014L)
#endif
//
// MessageId: STATUS_FATAL_APP_EXIT
//
// MessageText:
//
// {Fatal Application Exit}
// %hs
//
#if !defined(STATUS_FATAL_APP_EXIT)
#define STATUS_FATAL_APP_EXIT ((NTSTATUS)0x40000015L)
#endif
//
// MessageId: STATUS_PREDEFINED_HANDLE
//
// MessageText:
//
// The specified registry key is referenced by a predefined handle.
//
#if !defined(STATUS_PREDEFINED_HANDLE)
#define STATUS_PREDEFINED_HANDLE ((NTSTATUS)0x40000016L)
#endif
//
// MessageId: STATUS_WAS_UNLOCKED
//
// MessageText:
//
// {Page Unlocked}
// The page protection of a locked page was changed to 'No Access' and the page was unlocked from memory and from the process.
//
#if !defined(STATUS_WAS_UNLOCKED)
#define STATUS_WAS_UNLOCKED ((NTSTATUS)0x40000017L)
#endif
//
// MessageId: STATUS_SERVICE_NOTIFICATION
//
// MessageText:
//