forked from samba-team/samba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hresult_err_table.txt
20520 lines (8797 loc) · 330 KB
/
hresult_err_table.txt
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
Errors retrieved from https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-erref/705fb797-2175-4a90-b5a3-3918024b10b8.
Licence retrieved from https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-erref/1bc92ddf-b79e-413c-bbaa-99a5281a6c90:
Intellectual Property Rights Notice for Open Specifications Documentation
- Technical Documentation. Microsoft publishes Open Specifications documentation (“this documentation”) for protocols, file formats, data portability, computer languages, and standards support. Additionally, overview documents cover inter-protocol relationships and interactions.
- Copyrights. This documentation is covered by Microsoft copyrights. Regardless of any other terms that are contained in the terms of use for the Microsoft website that hosts this documentation, you can make copies of it in order to develop implementations of the technologies that are described in this documentation and can distribute portions of it in your implementations that use these technologies or in your documentation as necessary to properly document the implementation. You can also distribute in your implementation, with or without modification, any schemas, IDLs, or code samples that are included in the documentation. This permission also applies to any documents that are referenced in the Open Specifications documentation.
- No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation.
- Patents. Microsoft has patents that might cover your implementations of the technologies described in the Open Specifications documentation. Neither this notice nor Microsoft's delivery of this documentation grants any licenses under those patents or any other Microsoft patents. However, a given Open Specifications document might be covered by the Microsoft Open Specifications Promise or the Microsoft Community Promise. If you would prefer a written license, or if the technologies described in this documentation are not covered by the Open Specifications Promise or Community Promise, as applicable, patent licenses are available by contacting [email protected].
- License Programs. To see all of the protocols in scope under a specific license program and the associated patents, visit the Patent Map.
- Trademarks. The names of companies and products contained in this documentation might be covered by trademarks or similar intellectual property rights. This notice does not grant any licenses under those rights. For a list of Microsoft trademarks, visit www.microsoft.com/trademarks.
- Fictitious Names. The example companies, organizations, products, domain names, email addresses, logos, people, places, and events that are depicted in this documentation are fictitious. No association with any real company, organization, product, domain name, email address, logo, person, place, or event is intended or should be inferred.
Reservation of Rights. All other rights are reserved, and this notice does not grant any rights other than as specifically described above, whether by implication, estoppel, or otherwise.
Tools. The Open Specifications documentation does not require the use of Microsoft programming tools or programming environments in order for you to develop an implementation. If you have access to Microsoft programming tools and environments, you are free to take advantage of them. Certain Open Specifications documents are intended for use in conjunction with publicly available standards specifications and network programming art and, as such, assume that the reader either is familiar with the aforementioned material or has immediate access to it.
===========
0x00030200
STG_S_CONVERTED
The underlying file was converted to compound file format.
0x00030201
STG_S_BLOCK
The storage operation should block until more data is available.
0x00030202
STG_S_RETRYNOW
The storage operation should retry immediately.
0x00030203
STG_S_MONITORING
The notified event sink will not influence the storage operation.
0x00030204
STG_S_MULTIPLEOPENS
Multiple opens prevent consolidated (commit succeeded).
0x00030205
STG_S_CONSOLIDATIONFAILED
Consolidation of the storage file failed (commit succeeded).
0x00030206
STG_S_CANNOTCONSOLIDATE
Consolidation of the storage file is inappropriate (commit succeeded).
0x00040000
OLE_S_USEREG
Use the registry database to provide the requested information.
0x00040001
OLE_S_STATIC
Success, but static.
0x00040002
OLE_S_MAC_CLIPFORMAT
Macintosh clipboard format.
0x00040100
DRAGDROP_S_DROP
Successful drop took place.
0x00040101
DRAGDROP_S_CANCEL
Drag-drop operation canceled.
0x00040102
DRAGDROP_S_USEDEFAULTCURSORS
Use the default cursor.
0x00040130
DATA_S_SAMEFORMATETC
Data has same FORMATETC.
0x00040140
VIEW_S_ALREADY_FROZEN
View is already frozen.
0x00040170
CACHE_S_FORMATETC_NOTSUPPORTED
FORMATETC not supported.
0x00040171
CACHE_S_SAMECACHE
Same cache.
0x00040172
CACHE_S_SOMECACHES_NOTUPDATED
Some caches are not updated.
0x00040180
OLEOBJ_S_INVALIDVERB
Invalid verb for OLE object.
0x00040181
OLEOBJ_S_CANNOT_DOVERB_NOW
Verb number is valid but verb cannot be done now.
0x00040182
OLEOBJ_S_INVALIDHWND
Invalid window handle passed.
0x000401A0
INPLACE_S_TRUNCATED
Message is too long; some of it had to be truncated before displaying.
0x000401C0
CONVERT10_S_NO_PRESENTATION
Unable to convert OLESTREAM to IStorage.
0x000401E2
MK_S_REDUCED_TO_SELF
Moniker reduced to itself.
0x000401E4
MK_S_ME
Common prefix is this moniker.
0x000401E5
MK_S_HIM
Common prefix is input moniker.
0x000401E6
MK_S_US
Common prefix is both monikers.
0x000401E7
MK_S_MONIKERALREADYREGISTERED
Moniker is already registered in running object table.
0x00040200
EVENT_S_SOME_SUBSCRIBERS_FAILED
An event was able to invoke some, but not all, of the subscribers.
0x00040202
EVENT_S_NOSUBSCRIBERS
An event was delivered, but there were no subscribers.
0x00041300
SCHED_S_TASK_READY
The task is ready to run at its next scheduled time.
0x00041301
SCHED_S_TASK_RUNNING
The task is currently running.
0x00041302
SCHED_S_TASK_DISABLED
The task will not run at the scheduled times because it has been disabled.
0x00041303
SCHED_S_TASK_HAS_NOT_RUN
The task has not yet run.
0x00041304
SCHED_S_TASK_NO_MORE_RUNS
There are no more runs scheduled for this task.
0x00041305
SCHED_S_TASK_NOT_SCHEDULED
One or more of the properties that are needed to run this task on a schedule have not been set.
0x00041306
SCHED_S_TASK_TERMINATED
The last run of the task was terminated by the user.
0x00041307
SCHED_S_TASK_NO_VALID_TRIGGERS
Either the task has no triggers, or the existing triggers are disabled or not set.
0x00041308
SCHED_S_EVENT_TRIGGER
Event triggers do not have set run times.
0x0004131B
SCHED_S_SOME_TRIGGERS_FAILED
The task is registered, but not all specified triggers will start the task.
0x0004131C
SCHED_S_BATCH_LOGON_PROBLEM
The task is registered, but it might fail to start. Batch logon privilege needs to be enabled for the task principal.
0x0004D000
XACT_S_ASYNC
An asynchronous operation was specified. The operation has begun, but its outcome is not known yet.
0x0004D002
XACT_S_READONLY
The method call succeeded because the transaction was read-only.
0x0004D003
XACT_S_SOMENORETAIN
The transaction was successfully aborted. However, this is a coordinated transaction, and a number of enlisted resources were aborted outright because they could not support abort-retaining semantics.
0x0004D004
XACT_S_OKINFORM
No changes were made during this call, but the sink wants another chance to look if any other sinks make further changes.
0x0004D005
XACT_S_MADECHANGESCONTENT
The sink is content and wants the transaction to proceed. Changes were made to one or more resources during this call.
0x0004D006
XACT_S_MADECHANGESINFORM
The sink is for the moment and wants the transaction to proceed, but if other changes are made following this return by other event sinks, this sink wants another chance to look.
0x0004D007
XACT_S_ALLNORETAIN
The transaction was successfully aborted. However, the abort was nonretaining.
0x0004D008
XACT_S_ABORTING
An abort operation was already in progress.
0x0004D009
XACT_S_SINGLEPHASE
The resource manager has performed a single-phase commit of the transaction.
0x0004D00A
XACT_S_LOCALLY_OK
The local transaction has not aborted.
0x0004D010
XACT_S_LASTRESOURCEMANAGER
The resource manager has requested to be the coordinator (last resource manager) for the transaction.
0x00080012
CO_S_NOTALLINTERFACES
Not all the requested interfaces were available.
0x00080013
CO_S_MACHINENAMENOTFOUND
The specified machine name was not found in the cache.
0x00090312
SEC_I_CONTINUE_NEEDED
The function completed successfully, but it must be called again to complete the context.
0x00090313
SEC_I_COMPLETE_NEEDED
The function completed successfully, but CompleteToken must be called.
0x00090314
SEC_I_COMPLETE_AND_CONTINUE
The function completed successfully, but both CompleteToken and this function must be called to complete the context.
0x00090315
SEC_I_LOCAL_LOGON
The logon was completed, but no network authority was available. The logon was made using locally known information.
0x00090317
SEC_I_CONTEXT_EXPIRED
The context has expired and can no longer be used.
0x00090320
SEC_I_INCOMPLETE_CREDENTIALS
The credentials supplied were not complete and could not be verified. Additional information can be returned from the context.
0x00090321
SEC_I_RENEGOTIATE
The context data must be renegotiated with the peer.
0x00090323
SEC_I_NO_LSA_CONTEXT
There is no LSA mode context associated with this context.
0x0009035C
SEC_I_SIGNATURE_NEEDED
A signature operation must be performed before the user can authenticate.
0x00091012
CRYPT_I_NEW_PROTECTION_REQUIRED
The protected data needs to be reprotected.
0x000D0000
NS_S_CALLPENDING
The requested operation is pending completion.
0x000D0001
NS_S_CALLABORTED
The requested operation was aborted by the client.
0x000D0002
NS_S_STREAM_TRUNCATED
The stream was purposefully stopped before completion.
0x000D0BC8
NS_S_REBUFFERING
The requested operation has caused the source to rebuffer.
0x000D0BC9
NS_S_DEGRADING_QUALITY
The requested operation has caused the source to degrade codec quality.
0x000D0BDB
NS_S_TRANSCRYPTOR_EOF
The transcryptor object has reached end of file.
0x000D0FE8
NS_S_WMP_UI_VERSIONMISMATCH
An upgrade is needed for the theme manager to correctly show this skin. Skin reports version: %.1f.
0x000D0FE9
NS_S_WMP_EXCEPTION
An error occurred in one of the UI components.
0x000D1040
NS_S_WMP_LOADED_GIF_IMAGE
Successfully loaded a GIF file.
0x000D1041
NS_S_WMP_LOADED_PNG_IMAGE
Successfully loaded a PNG file.
0x000D1042
NS_S_WMP_LOADED_BMP_IMAGE
Successfully loaded a BMP file.
0x000D1043
NS_S_WMP_LOADED_JPG_IMAGE
Successfully loaded a JPG file.
0x000D104F
NS_S_WMG_FORCE_DROP_FRAME
Drop this frame.
0x000D105F
NS_S_WMR_ALREADYRENDERED
The specified stream has already been rendered.
0x000D1060
NS_S_WMR_PINTYPEPARTIALMATCH
The specified type partially matches this pin type.
0x000D1061
NS_S_WMR_PINTYPEFULLMATCH
The specified type fully matches this pin type.
0x000D1066
NS_S_WMG_ADVISE_DROP_FRAME
The timestamp is late compared to the current render position. Advise dropping this frame.
0x000D1067
NS_S_WMG_ADVISE_DROP_TO_KEYFRAME
The timestamp is severely late compared to the current render position. Advise dropping everything up to the next key frame.
0x000D10DB
NS_S_NEED_TO_BUY_BURN_RIGHTS
No burn rights. You will be prompted to buy burn rights when you try to burn this file to an audio CD.
0x000D10FE
NS_S_WMPCORE_PLAYLISTCLEARABORT
Failed to clear playlist because it was aborted by user.
0x000D10FF
NS_S_WMPCORE_PLAYLISTREMOVEITEMABORT
Failed to remove item in the playlist since it was aborted by user.
0x000D1102
NS_S_WMPCORE_PLAYLIST_CREATION_PENDING
Playlist is being generated asynchronously.
0x000D1103
NS_S_WMPCORE_MEDIA_VALIDATION_PENDING
Validation of the media is pending.
0x000D1104
NS_S_WMPCORE_PLAYLIST_REPEAT_SECONDARY_SEGMENTS_IGNORED
Encountered more than one Repeat block during ASX processing.
0x000D1105
NS_S_WMPCORE_COMMAND_NOT_AVAILABLE
Current state of WMP disallows calling this method or property.
0x000D1106
NS_S_WMPCORE_PLAYLIST_NAME_AUTO_GENERATED
Name for the playlist has been auto generated.
0x000D1107
NS_S_WMPCORE_PLAYLIST_IMPORT_MISSING_ITEMS
The imported playlist does not contain all items from the original.
0x000D1108
NS_S_WMPCORE_PLAYLIST_COLLAPSED_TO_SINGLE_MEDIA
The M3U playlist has been ignored because it only contains one item.
0x000D1109
NS_S_WMPCORE_MEDIA_CHILD_PLAYLIST_OPEN_PENDING
The open for the child playlist associated with this media is pending.
0x000D110A
NS_S_WMPCORE_MORE_NODES_AVAIABLE
More nodes support the interface requested, but the array for returning them is full.
0x000D1135
NS_S_WMPBR_SUCCESS
Backup or Restore successful!.
0x000D1136
NS_S_WMPBR_PARTIALSUCCESS
Transfer complete with limitations.
0x000D1144
NS_S_WMPEFFECT_TRANSPARENT
Request to the effects control to change transparency status to transparent.
0x000D1145
NS_S_WMPEFFECT_OPAQUE
Request to the effects control to change transparency status to opaque.
0x000D114E
NS_S_OPERATION_PENDING
The requested application pane is performing an operation and will not be released.
0x000D1359
NS_S_TRACK_BUY_REQUIRES_ALBUM_PURCHASE
The file is only available for purchase when you buy the entire album.
0x000D135E
NS_S_NAVIGATION_COMPLETE_WITH_ERRORS
There were problems completing the requested navigation. There are identifiers missing in the catalog.
0x000D1361
NS_S_TRACK_ALREADY_DOWNLOADED
Track already downloaded.
0x000D1519
NS_S_PUBLISHING_POINT_STARTED_WITH_FAILED_SINKS
The publishing point successfully started, but one or more of the requested data writer plug-ins failed.
0x000D2726
NS_S_DRM_LICENSE_ACQUIRED
Status message: The license was acquired.
0x000D2727
NS_S_DRM_INDIVIDUALIZED
Status message: The security upgrade has been completed.
0x000D2746
NS_S_DRM_MONITOR_CANCELLED
Status message: License monitoring has been canceled.
0x000D2747
NS_S_DRM_ACQUIRE_CANCELLED
Status message: License acquisition has been canceled.
0x000D276E
NS_S_DRM_BURNABLE_TRACK
The track is burnable and had no playlist burn limit.
0x000D276F
NS_S_DRM_BURNABLE_TRACK_WITH_PLAYLIST_RESTRICTION
The track is burnable but has a playlist burn limit.
0x000D27DE
NS_S_DRM_NEEDS_INDIVIDUALIZATION
A security upgrade is required to perform the operation on this media file.
0x000D2AF8
NS_S_REBOOT_RECOMMENDED
Installation was successful; however, some file cleanup is not complete. For best results, restart your computer.
0x000D2AF9
NS_S_REBOOT_REQUIRED
Installation was successful; however, some file cleanup is not complete. To continue, you must restart your computer.
0x000D2F09
NS_S_EOSRECEDING
EOS hit during rewinding.
0x000D2F0D
NS_S_CHANGENOTICE
Internal.
0x001F0001
ERROR_FLT_IO_COMPLETE
The IO was completed by a filter.
0x00262307
ERROR_GRAPHICS_MODE_NOT_PINNED
No mode is pinned on the specified VidPN source or target.
0x0026231E
ERROR_GRAPHICS_NO_PREFERRED_MODE
Specified mode set does not specify preference for one of its modes.
0x0026234B
ERROR_GRAPHICS_DATASET_IS_EMPTY
Specified data set (for example, mode set, frequency range set, descriptor set, and topology) is empty.
0x0026234C
ERROR_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET
Specified data set (for example, mode set, frequency range set, descriptor set, and topology) does not contain any more elements.
0x00262351
ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED
Specified content transformation is not pinned on the specified VidPN present path.
0x00300100
PLA_S_PROPERTY_IGNORED
Property value will be ignored.
0x00340001
ERROR_NDIS_INDICATION_REQUIRED
The request will be completed later by a Network Driver Interface Specification (NDIS) status indication.
0x0DEAD100
TRK_S_OUT_OF_SYNC
The VolumeSequenceNumber of a MOVE_NOTIFICATION request is incorrect.
0x0DEAD102
TRK_VOLUME_NOT_FOUND
The VolumeID in a request was not found in the server's ServerVolumeTable.
0x0DEAD103
TRK_VOLUME_NOT_OWNED
A notification was sent to the LnkSvrMessage method, but the RequestMachine for the request was not the VolumeOwner for a VolumeID in the request.
0x0DEAD107
TRK_S_NOTIFICATION_QUOTA_EXCEEDED
The server received a MOVE_NOTIFICATION request, but the FileTable size limit has already been reached.
0x400D004F
NS_I_TIGER_START
The Title Server %1 is running.
0x400D0051
NS_I_CUB_START
Content Server %1 (%2) is starting.
0x400D0052
NS_I_CUB_RUNNING
Content Server %1 (%2) is running.
0x400D0054
NS_I_DISK_START
Disk %1 ( %2 ) on Content Server %3, is running.
0x400D0056
NS_I_DISK_REBUILD_STARTED
Started rebuilding disk %1 ( %2 ) on Content Server %3.
0x400D0057
NS_I_DISK_REBUILD_FINISHED
Finished rebuilding disk %1 ( %2 ) on Content Server %3.
0x400D0058
NS_I_DISK_REBUILD_ABORTED
Aborted rebuilding disk %1 ( %2 ) on Content Server %3.
0x400D0059
NS_I_LIMIT_FUNNELS
A NetShow administrator at network location %1 set the data stream limit to %2 streams.
0x400D005A
NS_I_START_DISK
A NetShow administrator at network location %1 started disk %2.
0x400D005B
NS_I_STOP_DISK
A NetShow administrator at network location %1 stopped disk %2.
0x400D005C
NS_I_STOP_CUB
A NetShow administrator at network location %1 stopped Content Server %2.
0x400D005D
NS_I_KILL_USERSESSION
A NetShow administrator at network location %1 aborted user session %2 from the system.
0x400D005E
NS_I_KILL_CONNECTION
A NetShow administrator at network location %1 aborted obsolete connection %2 from the system.
0x400D005F