~ubuntu-branches/debian/lenny/fpc/lenny

« back to all changes in this revision

Viewing changes to fpcsrc/packages/base/winunits/jwawinerror.pas

  • Committer: Bazaar Package Importer
  • Author(s): Mazen Neifer, Torsten Werner, Mazen Neifer
  • Date: 2008-05-17 17:12:11 UTC
  • mfrom: (3.1.9 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080517171211-9qi33xhd9evfa0kg
Tags: 2.2.0-dfsg1-9
[ Torsten Werner ]
* Add Mazen Neifer to Uploaders field.

[ Mazen Neifer ]
* Moved FPC sources into a version dependent directory from /usr/share/fpcsrc
  to /usr/share/fpcsrc/${FPCVERSION}. This allow installing more than on FPC
  release.
* Fixed far call issue in compiler preventing building huge binearies.
  (closes: #477743)
* Updated building dependencies, recomennded and suggested packages.
* Moved fppkg to fp-utils as it is just a helper tool and is not required by
  compiler.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{******************************************************************************}
 
2
{                                                                              }
 
3
{ Windows Error Codes API interface Unit for Object Pascal                     }
 
4
{                                                                              }
 
5
{ Portions created by Microsoft are Copyright (C) 1995-2001 Microsoft          }
 
6
{ Corporation. All Rights Reserved.                                            }
 
7
{                                                                              }
 
8
{ The original file is: winerror.h, released June 2000. The original Pascal    }
 
9
{ code is: WinError.pas, released December 2000. The initial developer of the  }
 
10
{ Pascal code is Marcel van Brakel (brakelm att chello dott nl).               }
 
11
{                                                                              }
 
12
{ Portions created by Marcel van Brakel are Copyright (C) 1999-2001            }
 
13
{ Marcel van Brakel. All Rights Reserved.                                      }
 
14
{                                                                              }
 
15
{ Obtained through: Joint Endeavour of Delphi Innovators (Project JEDI)        }
 
16
{                                                                              }
 
17
{ You may retrieve the latest version of this file at the Project JEDI         }
 
18
{ APILIB home page, located at http://jedi-apilib.sourceforge.net              }
 
19
{                                                                              }
 
20
{ The contents of this file are used with permission, subject to the Mozilla   }
 
21
{ Public License Version 1.1 (the "License"); you may not use this file except }
 
22
{ in compliance with the License. You may obtain a copy of the License at      }
 
23
{ http://www.mozilla.org/MPL/MPL-1.1.html                                      }
 
24
{                                                                              }
 
25
{ Software distributed under the License is distributed on an "AS IS" basis,   }
 
26
{ WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for }
 
27
{ the specific language governing rights and limitations under the License.    }
 
28
{                                                                              }
 
29
{ Alternatively, the contents of this file may be used under the terms of the  }
 
30
{ GNU Lesser General Public License (the  "LGPL License"), in which case the   }
 
31
{ provisions of the LGPL License are applicable instead of those above.        }
 
32
{ If you wish to allow use of your version of this file only under the terms   }
 
33
{ of the LGPL License and not to allow others to use your version of this file }
 
34
{ under the MPL, indicate your decision by deleting  the provisions above and  }
 
35
{ replace  them with the notice and other provisions required by the LGPL      }
 
36
{ License.  If you do not delete the provisions above, a recipient may use     }
 
37
{ your version of this file under either the MPL or the LGPL License.          }
 
38
{                                                                              }
 
39
{ For more information about the LGPL: http://www.gnu.org/copyleft/lesser.html }
 
40
{                                                                              }
 
41
{******************************************************************************}
 
42
 
 
43
// $Id: JwaWinError.pas,v 1.7 2005/09/04 07:02:38 marquardt Exp $
 
44
 
 
45
{$IFNDEF JWA_INCLUDEMODE}
 
46
 
 
47
unit JwaWinError;
 
48
 
 
49
{$WEAKPACKAGEUNIT}
 
50
 
 
51
{$I jediapilib.inc}
 
52
 
 
53
interface
 
54
 
 
55
uses
 
56
  JwaWinType;
 
57
 
 
58
{$ENDIF !JWA_INCLUDEMODE}
 
59
 
 
60
{$IFDEF JWA_INTERFACESECTION}
 
61
 
 
62
{$HPPEMIT ''}
 
63
{$HPPEMIT '#include "WinError.h"'}
 
64
{$HPPEMIT ''}
 
65
 
 
66
//
 
67
//  Values are 32 bit values layed out as follows:
 
68
//
 
69
//   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
 
70
//   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
 
71
//  +---+-+-+-----------------------+-------------------------------+
 
72
//  |Sev|C|R|     Facility          |               Code            |
 
73
//  +---+-+-+-----------------------+-------------------------------+
 
74
//
 
75
//  where
 
76
//
 
77
//      Sev - is the severity code
 
78
//
 
79
//          00 - Success
 
80
//          01 - Informational
 
81
//          10 - Warning
 
82
//          11 - Error
 
83
//
 
84
//      C - is the Customer code flag
 
85
//
 
86
//      R - is a reserved bit
 
87
//
 
88
//      Facility - is the facility code
 
89
//
 
90
//      Code - is the facility's status code
 
91
//
 
92
//
 
93
// Define the facility codes
 
94
//
 
95
 
 
96
const
 
97
  FACILITY_WINDOWS_CE = 24;
 
98
  {$EXTERNALSYM FACILITY_WINDOWS_CE}
 
99
  FACILITY_WINDOWS = 8;
 
100
  {$EXTERNALSYM FACILITY_WINDOWS}
 
101
  FACILITY_URT = 19;
 
102
  {$EXTERNALSYM FACILITY_URT}
 
103
  FACILITY_UMI = 22;
 
104
  {$EXTERNALSYM FACILITY_UMI}
 
105
  FACILITY_SXS = 23;
 
106
  {$EXTERNALSYM FACILITY_SXS}
 
107
  FACILITY_STORAGE = 3;
 
108
  {$EXTERNALSYM FACILITY_STORAGE}
 
109
  FACILITY_STATE_MANAGEMENT = 34;
 
110
  {$EXTERNALSYM FACILITY_STATE_MANAGEMENT}
 
111
  FACILITY_SSPI = 9;
 
112
  {$EXTERNALSYM FACILITY_SSPI}
 
113
  FACILITY_SCARD = 16;
 
114
  {$EXTERNALSYM FACILITY_SCARD}
 
115
  FACILITY_SETUPAPI = 15;
 
116
  {$EXTERNALSYM FACILITY_SETUPAPI}
 
117
  FACILITY_SECURITY = 9;
 
118
  {$EXTERNALSYM FACILITY_SECURITY}
 
119
  FACILITY_RPC = 1;
 
120
  {$EXTERNALSYM FACILITY_RPC}
 
121
  FACILITY_WIN32 = 7;
 
122
  {$EXTERNALSYM FACILITY_WIN32}
 
123
  FACILITY_CONTROL = 10;
 
124
  {$EXTERNALSYM FACILITY_CONTROL}
 
125
  FACILITY_NULL = 0;
 
126
  {$EXTERNALSYM FACILITY_NULL}
 
127
  FACILITY_METADIRECTORY = 35;
 
128
  {$EXTERNALSYM FACILITY_METADIRECTORY}
 
129
  FACILITY_MSMQ = 14;
 
130
  {$EXTERNALSYM FACILITY_MSMQ}
 
131
  FACILITY_MEDIASERVER = 13;
 
132
  {$EXTERNALSYM FACILITY_MEDIASERVER}
 
133
  FACILITY_INTERNET = 12;
 
134
  {$EXTERNALSYM FACILITY_INTERNET}
 
135
  FACILITY_ITF = 4;
 
136
  {$EXTERNALSYM FACILITY_ITF}
 
137
  FACILITY_HTTP = 25;
 
138
  {$EXTERNALSYM FACILITY_HTTP}
 
139
  FACILITY_DPLAY = 21;
 
140
  {$EXTERNALSYM FACILITY_DPLAY}
 
141
  FACILITY_DISPATCH = 2;
 
142
  {$EXTERNALSYM FACILITY_DISPATCH}
 
143
  FACILITY_CONFIGURATION = 33;
 
144
  {$EXTERNALSYM FACILITY_CONFIGURATION}
 
145
  FACILITY_COMPLUS = 17;
 
146
  {$EXTERNALSYM FACILITY_COMPLUS}
 
147
  FACILITY_CERT = 11;
 
148
  {$EXTERNALSYM FACILITY_CERT}
 
149
  FACILITY_BACKGROUNDCOPY = 32;
 
150
  {$EXTERNALSYM FACILITY_BACKGROUNDCOPY}
 
151
  FACILITY_ACS = 20;
 
152
  {$EXTERNALSYM FACILITY_ACS}
 
153
  FACILITY_AAF = 18;
 
154
  {$EXTERNALSYM FACILITY_AAF}
 
155
 
 
156
//
 
157
// Define the severity codes
 
158
//
 
159
 
 
160
//
 
161
// MessageId: ERROR_SUCCESS
 
162
//
 
163
// MessageText:
 
164
//
 
165
//  The operation completed successfully.
 
166
//
 
167
  ERROR_SUCCESS = DWORD(0);
 
168
  {$EXTERNALSYM ERROR_SUCCESS}
 
169
 
 
170
  NO_ERROR = DWORD(0);  // dderror
 
171
  {$EXTERNALSYM NO_ERROR}
 
172
  SEC_E_OK = HRESULT($00000000);
 
173
  {$EXTERNALSYM SEC_E_OK}
 
174
 
 
175
//
 
176
// MessageId: ERROR_INVALID_FUNCTION
 
177
//
 
178
// MessageText:
 
179
//
 
180
//  Incorrect function.
 
181
//
 
182
  ERROR_INVALID_FUNCTION = DWORD(1);  // dderror
 
183
  {$EXTERNALSYM ERROR_INVALID_FUNCTION}
 
184
 
 
185
//
 
186
// MessageId: ERROR_FILE_NOT_FOUND
 
187
//
 
188
// MessageText:
 
189
//
 
190
//  The system cannot find the file specified.
 
191
//
 
192
  ERROR_FILE_NOT_FOUND = DWORD(2);
 
193
  {$EXTERNALSYM ERROR_FILE_NOT_FOUND}
 
194
 
 
195
//
 
196
// MessageId: ERROR_PATH_NOT_FOUND
 
197
//
 
198
// MessageText:
 
199
//
 
200
//  The system cannot find the path specified.
 
201
//
 
202
  ERROR_PATH_NOT_FOUND = DWORD(3);
 
203
  {$EXTERNALSYM ERROR_PATH_NOT_FOUND}
 
204
 
 
205
//
 
206
// MessageId: ERROR_TOO_MANY_OPEN_FILES
 
207
//
 
208
// MessageText:
 
209
//
 
210
//  The system cannot open the file.
 
211
//
 
212
  ERROR_TOO_MANY_OPEN_FILES = DWORD(4);
 
213
  {$EXTERNALSYM ERROR_TOO_MANY_OPEN_FILES}
 
214
 
 
215
//
 
216
// MessageId: ERROR_ACCESS_DENIED
 
217
//
 
218
// MessageText:
 
219
//
 
220
//  Access is denied.
 
221
//
 
222
  ERROR_ACCESS_DENIED = DWORD(5);
 
223
  {$EXTERNALSYM ERROR_ACCESS_DENIED}
 
224
 
 
225
//
 
226
// MessageId: ERROR_INVALID_HANDLE
 
227
//
 
228
// MessageText:
 
229
//
 
230
//  The handle is invalid.
 
231
//
 
232
  ERROR_INVALID_HANDLE = DWORD(6);
 
233
  {$EXTERNALSYM ERROR_INVALID_HANDLE}
 
234
 
 
235
//
 
236
// MessageId: ERROR_ARENA_TRASHED
 
237
//
 
238
// MessageText:
 
239
//
 
240
//  The storage control blocks were destroyed.
 
241
//
 
242
  ERROR_ARENA_TRASHED = DWORD(7);
 
243
  {$EXTERNALSYM ERROR_ARENA_TRASHED}
 
244
 
 
245
//
 
246
// MessageId: ERROR_NOT_ENOUGH_MEMORY
 
247
//
 
248
// MessageText:
 
249
//
 
250
//  Not enough storage is available to process this command.
 
251
//
 
252
  ERROR_NOT_ENOUGH_MEMORY = DWORD(8);  // dderror
 
253
  {$EXTERNALSYM ERROR_NOT_ENOUGH_MEMORY}
 
254
 
 
255
//
 
256
// MessageId: ERROR_INVALID_BLOCK
 
257
//
 
258
// MessageText:
 
259
//
 
260
//  The storage control block address is invalid.
 
261
//
 
262
  ERROR_INVALID_BLOCK = DWORD(9);
 
263
  {$EXTERNALSYM ERROR_INVALID_BLOCK}
 
264
 
 
265
//
 
266
// MessageId: ERROR_BAD_ENVIRONMENT
 
267
//
 
268
// MessageText:
 
269
//
 
270
//  The environment is incorrect.
 
271
//
 
272
  ERROR_BAD_ENVIRONMENT = DWORD(10);
 
273
  {$EXTERNALSYM ERROR_BAD_ENVIRONMENT}
 
274
 
 
275
//
 
276
// MessageId: ERROR_BAD_FORMAT
 
277
//
 
278
// MessageText:
 
279
//
 
280
//  An attempt was made to load a program with an incorrect format.
 
281
//
 
282
  ERROR_BAD_FORMAT = DWORD(11);
 
283
  {$EXTERNALSYM ERROR_BAD_FORMAT}
 
284
 
 
285
//
 
286
// MessageId: ERROR_INVALID_ACCESS
 
287
//
 
288
// MessageText:
 
289
//
 
290
//  The access code is invalid.
 
291
//
 
292
  ERROR_INVALID_ACCESS = DWORD(12);
 
293
  {$EXTERNALSYM ERROR_INVALID_ACCESS}
 
294
 
 
295
//
 
296
// MessageId: ERROR_INVALID_DATA
 
297
//
 
298
// MessageText:
 
299
//
 
300
//  The data is invalid.
 
301
//
 
302
  ERROR_INVALID_DATA = DWORD(13);
 
303
  {$EXTERNALSYM ERROR_INVALID_DATA}
 
304
 
 
305
//
 
306
// MessageId: ERROR_OUTOFMEMORY
 
307
//
 
308
// MessageText:
 
309
//
 
310
//  Not enough storage is available to complete this operation.
 
311
//
 
312
  ERROR_OUTOFMEMORY = DWORD(14);
 
313
  {$EXTERNALSYM ERROR_OUTOFMEMORY}
 
314
 
 
315
//
 
316
// MessageId: ERROR_INVALID_DRIVE
 
317
//
 
318
// MessageText:
 
319
//
 
320
//  The system cannot find the drive specified.
 
321
//
 
322
  ERROR_INVALID_DRIVE = DWORD(15);
 
323
  {$EXTERNALSYM ERROR_INVALID_DRIVE}
 
324
 
 
325
//
 
326
// MessageId: ERROR_CURRENT_DIRECTORY
 
327
//
 
328
// MessageText:
 
329
//
 
330
//  The directory cannot be removed.
 
331
//
 
332
  ERROR_CURRENT_DIRECTORY = DWORD(16);
 
333
  {$EXTERNALSYM ERROR_CURRENT_DIRECTORY}
 
334
 
 
335
//
 
336
// MessageId: ERROR_NOT_SAME_DEVICE
 
337
//
 
338
// MessageText:
 
339
//
 
340
//  The system cannot move the file to a different disk drive.
 
341
//
 
342
  ERROR_NOT_SAME_DEVICE = DWORD(17);
 
343
  {$EXTERNALSYM ERROR_NOT_SAME_DEVICE}
 
344
 
 
345
//
 
346
// MessageId: ERROR_NO_MORE_FILES
 
347
//
 
348
// MessageText:
 
349
//
 
350
//  There are no more files.
 
351
//
 
352
  ERROR_NO_MORE_FILES = DWORD(18);
 
353
  {$EXTERNALSYM ERROR_NO_MORE_FILES}
 
354
 
 
355
//
 
356
// MessageId: ERROR_WRITE_PROTECT
 
357
//
 
358
// MessageText:
 
359
//
 
360
//  The media is write protected.
 
361
//
 
362
  ERROR_WRITE_PROTECT = DWORD(19);
 
363
  {$EXTERNALSYM ERROR_WRITE_PROTECT}
 
364
 
 
365
//
 
366
// MessageId: ERROR_BAD_UNIT
 
367
//
 
368
// MessageText:
 
369
//
 
370
//  The system cannot find the device specified.
 
371
//
 
372
  ERROR_BAD_UNIT = DWORD(20);
 
373
  {$EXTERNALSYM ERROR_BAD_UNIT}
 
374
 
 
375
//
 
376
// MessageId: ERROR_NOT_READY
 
377
//
 
378
// MessageText:
 
379
//
 
380
//  The device is not ready.
 
381
//
 
382
  ERROR_NOT_READY = DWORD(21);
 
383
  {$EXTERNALSYM ERROR_NOT_READY}
 
384
 
 
385
//
 
386
// MessageId: ERROR_BAD_COMMAND
 
387
//
 
388
// MessageText:
 
389
//
 
390
//  The device does not recognize the command.
 
391
//
 
392
  ERROR_BAD_COMMAND = DWORD(22);
 
393
  {$EXTERNALSYM ERROR_BAD_COMMAND}
 
394
 
 
395
//
 
396
// MessageId: ERROR_CRC
 
397
//
 
398
// MessageText:
 
399
//
 
400
//  Data error (cyclic redundancy check).
 
401
//
 
402
  ERROR_CRC = DWORD(23);
 
403
  {$EXTERNALSYM ERROR_CRC}
 
404
 
 
405
//
 
406
// MessageId: ERROR_BAD_LENGTH
 
407
//
 
408
// MessageText:
 
409
//
 
410
//  The program issued a command but the command length is incorrect.
 
411
//
 
412
  ERROR_BAD_LENGTH = DWORD(24);
 
413
  {$EXTERNALSYM ERROR_BAD_LENGTH}
 
414
 
 
415
//
 
416
// MessageId: ERROR_SEEK
 
417
//
 
418
// MessageText:
 
419
//
 
420
//  The drive cannot locate a specific area or track on the disk.
 
421
//
 
422
  ERROR_SEEK = DWORD(25);
 
423
  {$EXTERNALSYM ERROR_SEEK}
 
424
 
 
425
//
 
426
// MessageId: ERROR_NOT_DOS_DISK
 
427
//
 
428
// MessageText:
 
429
//
 
430
//  The specified disk or diskette cannot be accessed.
 
431
//
 
432
  ERROR_NOT_DOS_DISK = DWORD(26);
 
433
  {$EXTERNALSYM ERROR_NOT_DOS_DISK}
 
434
 
 
435
//
 
436
// MessageId: ERROR_SECTOR_NOT_FOUND
 
437
//
 
438
// MessageText:
 
439
//
 
440
//  The drive cannot find the sector requested.
 
441
//
 
442
  ERROR_SECTOR_NOT_FOUND = DWORD(27);
 
443
  {$EXTERNALSYM ERROR_SECTOR_NOT_FOUND}
 
444
 
 
445
//
 
446
// MessageId: ERROR_OUT_OF_PAPER
 
447
//
 
448
// MessageText:
 
449
//
 
450
//  The printer is out of paper.
 
451
//
 
452
  ERROR_OUT_OF_PAPER = DWORD(28);
 
453
  {$EXTERNALSYM ERROR_OUT_OF_PAPER}
 
454
 
 
455
//
 
456
// MessageId: ERROR_WRITE_FAULT
 
457
//
 
458
// MessageText:
 
459
//
 
460
//  The system cannot write to the specified device.
 
461
//
 
462
  ERROR_WRITE_FAULT = DWORD(29);
 
463
  {$EXTERNALSYM ERROR_WRITE_FAULT}
 
464
 
 
465
//
 
466
// MessageId: ERROR_READ_FAULT
 
467
//
 
468
// MessageText:
 
469
//
 
470
//  The system cannot read from the specified device.
 
471
//
 
472
  ERROR_READ_FAULT = DWORD(30);
 
473
  {$EXTERNALSYM ERROR_READ_FAULT}
 
474
 
 
475
//
 
476
// MessageId: ERROR_GEN_FAILURE
 
477
//
 
478
// MessageText:
 
479
//
 
480
//  A device attached to the system is not functioning.
 
481
//
 
482
  ERROR_GEN_FAILURE = DWORD(31);
 
483
  {$EXTERNALSYM ERROR_GEN_FAILURE}
 
484
 
 
485
//
 
486
// MessageId: ERROR_SHARING_VIOLATION
 
487
//
 
488
// MessageText:
 
489
//
 
490
//  The process cannot access the file because it is being used by another process.
 
491
//
 
492
  ERROR_SHARING_VIOLATION = DWORD(32);
 
493
  {$EXTERNALSYM ERROR_SHARING_VIOLATION}
 
494
 
 
495
//
 
496
// MessageId: ERROR_LOCK_VIOLATION
 
497
//
 
498
// MessageText:
 
499
//
 
500
//  The process cannot access the file because another process has locked a portion of the file.
 
501
//
 
502
  ERROR_LOCK_VIOLATION = DWORD(33);
 
503
  {$EXTERNALSYM ERROR_LOCK_VIOLATION}
 
504
 
 
505
//
 
506
// MessageId: ERROR_WRONG_DISK
 
507
//
 
508
// MessageText:
 
509
//
 
510
//  The wrong diskette is in the drive.
 
511
//  Insert %2 (Volume Serial Number: %3) into drive %1.
 
512
//
 
513
  ERROR_WRONG_DISK = DWORD(34);
 
514
  {$EXTERNALSYM ERROR_WRONG_DISK}
 
515
 
 
516
//
 
517
// MessageId: ERROR_SHARING_BUFFER_EXCEEDED
 
518
//
 
519
// MessageText:
 
520
//
 
521
//  Too many files opened for sharing.
 
522
//
 
523
  ERROR_SHARING_BUFFER_EXCEEDED = DWORD(36);
 
524
  {$EXTERNALSYM ERROR_SHARING_BUFFER_EXCEEDED}
 
525
 
 
526
//
 
527
// MessageId: ERROR_HANDLE_EOF
 
528
//
 
529
// MessageText:
 
530
//
 
531
//  Reached the end of the file.
 
532
//
 
533
  ERROR_HANDLE_EOF = DWORD(38);
 
534
  {$EXTERNALSYM ERROR_HANDLE_EOF}
 
535
 
 
536
//
 
537
// MessageId: ERROR_HANDLE_DISK_FULL
 
538
//
 
539
// MessageText:
 
540
//
 
541
//  The disk is full.
 
542
//
 
543
  ERROR_HANDLE_DISK_FULL = DWORD(39);
 
544
  {$EXTERNALSYM ERROR_HANDLE_DISK_FULL}
 
545
 
 
546
//
 
547
// MessageId: ERROR_NOT_SUPPORTED
 
548
//
 
549
// MessageText:
 
550
//
 
551
//  The request is not supported.
 
552
//
 
553
  ERROR_NOT_SUPPORTED = DWORD(50);
 
554
  {$EXTERNALSYM ERROR_NOT_SUPPORTED}
 
555
 
 
556
//
 
557
// MessageId: ERROR_REM_NOT_LIST
 
558
//
 
559
// MessageText:
 
560
//
 
561
//  Windows cannot find the network path. Verify that the network path is correct and the destination computer is not busy or turned off. If Windows still cannot find the network path, contact your network administrator.
 
562
//
 
563
  ERROR_REM_NOT_LIST = DWORD(51);
 
564
  {$EXTERNALSYM ERROR_REM_NOT_LIST}
 
565
 
 
566
//
 
567
// MessageId: ERROR_DUP_NAME
 
568
//
 
569
// MessageText:
 
570
//
 
571
//  You were not connected because a duplicate name exists on the network. Go to System in Control Panel to change the computer name and try again.
 
572
//
 
573
  ERROR_DUP_NAME = DWORD(52);
 
574
  {$EXTERNALSYM ERROR_DUP_NAME}
 
575
 
 
576
//
 
577
// MessageId: ERROR_BAD_NETPATH
 
578
//
 
579
// MessageText:
 
580
//
 
581
//  The network path was not found.
 
582
//
 
583
  ERROR_BAD_NETPATH = DWORD(53);
 
584
  {$EXTERNALSYM ERROR_BAD_NETPATH}
 
585
 
 
586
//
 
587
// MessageId: ERROR_NETWORK_BUSY
 
588
//
 
589
// MessageText:
 
590
//
 
591
//  The network is busy.
 
592
//
 
593
  ERROR_NETWORK_BUSY = DWORD(54);
 
594
  {$EXTERNALSYM ERROR_NETWORK_BUSY}
 
595
 
 
596
//
 
597
// MessageId: ERROR_DEV_NOT_EXIST
 
598
//
 
599
// MessageText:
 
600
//
 
601
//  The specified network resource or device is no longer available.
 
602
//
 
603
  ERROR_DEV_NOT_EXIST = DWORD(55);  // dderror
 
604
  {$EXTERNALSYM ERROR_DEV_NOT_EXIST}
 
605
 
 
606
//
 
607
// MessageId: ERROR_TOO_MANY_CMDS
 
608
//
 
609
// MessageText:
 
610
//
 
611
//  The network BIOS command limit has been reached.
 
612
//
 
613
  ERROR_TOO_MANY_CMDS = DWORD(56);
 
614
  {$EXTERNALSYM ERROR_TOO_MANY_CMDS}
 
615
 
 
616
//
 
617
// MessageId: ERROR_ADAP_HDW_ERR
 
618
//
 
619
// MessageText:
 
620
//
 
621
//  A network adapter hardware error occurred.
 
622
//
 
623
  ERROR_ADAP_HDW_ERR = DWORD(57);
 
624
  {$EXTERNALSYM ERROR_ADAP_HDW_ERR}
 
625
 
 
626
//
 
627
// MessageId: ERROR_BAD_NET_RESP
 
628
//
 
629
// MessageText:
 
630
//
 
631
//  The specified server cannot perform the requested operation.
 
632
//
 
633
  ERROR_BAD_NET_RESP = DWORD(58);
 
634
  {$EXTERNALSYM ERROR_BAD_NET_RESP}
 
635
 
 
636
//
 
637
// MessageId: ERROR_UNEXP_NET_ERR
 
638
//
 
639
// MessageText:
 
640
//
 
641
//  An unexpected network error occurred.
 
642
//
 
643
  ERROR_UNEXP_NET_ERR = DWORD(59);
 
644
  {$EXTERNALSYM ERROR_UNEXP_NET_ERR}
 
645
 
 
646
//
 
647
// MessageId: ERROR_BAD_REM_ADAP
 
648
//
 
649
// MessageText:
 
650
//
 
651
//  The remote adapter is not compatible.
 
652
//
 
653
  ERROR_BAD_REM_ADAP = DWORD(60);
 
654
  {$EXTERNALSYM ERROR_BAD_REM_ADAP}
 
655
 
 
656
//
 
657
// MessageId: ERROR_PRINTQ_FULL
 
658
//
 
659
// MessageText:
 
660
//
 
661
//  The printer queue is full.
 
662
//
 
663
  ERROR_PRINTQ_FULL = DWORD(61);
 
664
  {$EXTERNALSYM ERROR_PRINTQ_FULL}
 
665
 
 
666
//
 
667
// MessageId: ERROR_NO_SPOOL_SPACE
 
668
//
 
669
// MessageText:
 
670
//
 
671
//  Space to store the file waiting to be printed is not available on the server.
 
672
//
 
673
  ERROR_NO_SPOOL_SPACE = DWORD(62);
 
674
  {$EXTERNALSYM ERROR_NO_SPOOL_SPACE}
 
675
 
 
676
//
 
677
// MessageId: ERROR_PRINT_CANCELLED
 
678
//
 
679
// MessageText:
 
680
//
 
681
//  Your file waiting to be printed was deleted.
 
682
//
 
683
  ERROR_PRINT_CANCELLED = DWORD(63);
 
684
  {$EXTERNALSYM ERROR_PRINT_CANCELLED}
 
685
 
 
686
//
 
687
// MessageId: ERROR_NETNAME_DELETED
 
688
//
 
689
// MessageText:
 
690
//
 
691
//  The specified network name is no longer available.
 
692
//
 
693
  ERROR_NETNAME_DELETED = DWORD(64);
 
694
  {$EXTERNALSYM ERROR_NETNAME_DELETED}
 
695
 
 
696
//
 
697
// MessageId: ERROR_NETWORK_ACCESS_DENIED
 
698
//
 
699
// MessageText:
 
700
//
 
701
//  Network access is denied.
 
702
//
 
703
  ERROR_NETWORK_ACCESS_DENIED = DWORD(65);
 
704
  {$EXTERNALSYM ERROR_NETWORK_ACCESS_DENIED}
 
705
 
 
706
//
 
707
// MessageId: ERROR_BAD_DEV_TYPE
 
708
//
 
709
// MessageText:
 
710
//
 
711
//  The network resource type is not correct.
 
712
//
 
713
  ERROR_BAD_DEV_TYPE = DWORD(66);
 
714
  {$EXTERNALSYM ERROR_BAD_DEV_TYPE}
 
715
 
 
716
//
 
717
// MessageId: ERROR_BAD_NET_NAME
 
718
//
 
719
// MessageText:
 
720
//
 
721
//  The network name cannot be found.
 
722
//
 
723
  ERROR_BAD_NET_NAME = DWORD(67);
 
724
  {$EXTERNALSYM ERROR_BAD_NET_NAME}
 
725
 
 
726
//
 
727
// MessageId: ERROR_TOO_MANY_NAMES
 
728
//
 
729
// MessageText:
 
730
//
 
731
//  The name limit for the local computer network adapter card was exceeded.
 
732
//
 
733
  ERROR_TOO_MANY_NAMES = DWORD(68);
 
734
  {$EXTERNALSYM ERROR_TOO_MANY_NAMES}
 
735
 
 
736
//
 
737
// MessageId: ERROR_TOO_MANY_SESS
 
738
//
 
739
// MessageText:
 
740
//
 
741
//  The network BIOS session limit was exceeded.
 
742
//
 
743
  ERROR_TOO_MANY_SESS = DWORD(69);
 
744
  {$EXTERNALSYM ERROR_TOO_MANY_SESS}
 
745
 
 
746
//
 
747
// MessageId: ERROR_SHARING_PAUSED
 
748
//
 
749
// MessageText:
 
750
//
 
751
//  The remote server has been paused or is in the process of being started.
 
752
//
 
753
  ERROR_SHARING_PAUSED = DWORD(70);
 
754
  {$EXTERNALSYM ERROR_SHARING_PAUSED}
 
755
 
 
756
//
 
757
// MessageId: ERROR_REQ_NOT_ACCEP
 
758
//
 
759
// MessageText:
 
760
//
 
761
//  No more connections can be made to this remote computer at this time because there are already as many connections as the computer can accept.
 
762
//
 
763
  ERROR_REQ_NOT_ACCEP = DWORD(71);
 
764
  {$EXTERNALSYM ERROR_REQ_NOT_ACCEP}
 
765
 
 
766
//
 
767
// MessageId: ERROR_REDIR_PAUSED
 
768
//
 
769
// MessageText:
 
770
//
 
771
//  The specified printer or disk device has been paused.
 
772
//
 
773
  ERROR_REDIR_PAUSED = DWORD(72);
 
774
  {$EXTERNALSYM ERROR_REDIR_PAUSED}
 
775
 
 
776
//
 
777
// MessageId: ERROR_FILE_EXISTS
 
778
//
 
779
// MessageText:
 
780
//
 
781
//  The file exists.
 
782
//
 
783
  ERROR_FILE_EXISTS = DWORD(80);
 
784
  {$EXTERNALSYM ERROR_FILE_EXISTS}
 
785
 
 
786
//
 
787
// MessageId: ERROR_CANNOT_MAKE
 
788
//
 
789
// MessageText:
 
790
//
 
791
//  The directory or file cannot be created.
 
792
//
 
793
  ERROR_CANNOT_MAKE = DWORD(82);
 
794
  {$EXTERNALSYM ERROR_CANNOT_MAKE}
 
795
 
 
796
//
 
797
// MessageId: ERROR_FAIL_I24
 
798
//
 
799
// MessageText:
 
800
//
 
801
//  Fail on INT 24.
 
802
//
 
803
  ERROR_FAIL_I24 = DWORD(83);
 
804
  {$EXTERNALSYM ERROR_FAIL_I24}
 
805
 
 
806
//
 
807
// MessageId: ERROR_OUT_OF_STRUCTURES
 
808
//
 
809
// MessageText:
 
810
//
 
811
//  Storage to process this request is not available.
 
812
//
 
813
  ERROR_OUT_OF_STRUCTURES = DWORD(84);
 
814
  {$EXTERNALSYM ERROR_OUT_OF_STRUCTURES}
 
815
 
 
816
//
 
817
// MessageId: ERROR_ALREADY_ASSIGNED
 
818
//
 
819
// MessageText:
 
820
//
 
821
//  The local device name is already in use.
 
822
//
 
823
  ERROR_ALREADY_ASSIGNED = DWORD(85);
 
824
  {$EXTERNALSYM ERROR_ALREADY_ASSIGNED}
 
825
 
 
826
//
 
827
// MessageId: ERROR_INVALID_PASSWORD
 
828
//
 
829
// MessageText:
 
830
//
 
831
//  The specified network password is not correct.
 
832
//
 
833
  ERROR_INVALID_PASSWORD = DWORD(86);
 
834
  {$EXTERNALSYM ERROR_INVALID_PASSWORD}
 
835
 
 
836
//
 
837
// MessageId: ERROR_INVALID_PARAMETER
 
838
//
 
839
// MessageText:
 
840
//
 
841
//  The parameter is incorrect.
 
842
//
 
843
  ERROR_INVALID_PARAMETER = DWORD(87);  // dderror
 
844
  {$EXTERNALSYM ERROR_INVALID_PARAMETER}
 
845
 
 
846
//
 
847
// MessageId: ERROR_NET_WRITE_FAULT
 
848
//
 
849
// MessageText:
 
850
//
 
851
//  A write fault occurred on the network.
 
852
//
 
853
  ERROR_NET_WRITE_FAULT = DWORD(88);
 
854
  {$EXTERNALSYM ERROR_NET_WRITE_FAULT}
 
855
 
 
856
//
 
857
// MessageId: ERROR_NO_PROC_SLOTS
 
858
//
 
859
// MessageText:
 
860
//
 
861
//  The system cannot start another process at this time.
 
862
//
 
863
  ERROR_NO_PROC_SLOTS = DWORD(89);
 
864
  {$EXTERNALSYM ERROR_NO_PROC_SLOTS}
 
865
 
 
866
//
 
867
// MessageId: ERROR_TOO_MANY_SEMAPHORES
 
868
//
 
869
// MessageText:
 
870
//
 
871
//  Cannot create another system semaphore.
 
872
//
 
873
  ERROR_TOO_MANY_SEMAPHORES = DWORD(100);
 
874
  {$EXTERNALSYM ERROR_TOO_MANY_SEMAPHORES}
 
875
 
 
876
//
 
877
// MessageId: ERROR_EXCL_SEM_ALREADY_OWNED
 
878
//
 
879
// MessageText:
 
880
//
 
881
//  The exclusive semaphore is owned by another process.
 
882
//
 
883
  ERROR_EXCL_SEM_ALREADY_OWNED = DWORD(101);
 
884
  {$EXTERNALSYM ERROR_EXCL_SEM_ALREADY_OWNED}
 
885
 
 
886
//
 
887
// MessageId: ERROR_SEM_IS_SET
 
888
//
 
889
// MessageText:
 
890
//
 
891
//  The semaphore is set and cannot be closed.
 
892
//
 
893
  ERROR_SEM_IS_SET = DWORD(102);
 
894
  {$EXTERNALSYM ERROR_SEM_IS_SET}
 
895
 
 
896
//
 
897
// MessageId: ERROR_TOO_MANY_SEM_REQUESTS
 
898
//
 
899
// MessageText:
 
900
//
 
901
//  The semaphore cannot be set again.
 
902
//
 
903
  ERROR_TOO_MANY_SEM_REQUESTS = DWORD(103);
 
904
  {$EXTERNALSYM ERROR_TOO_MANY_SEM_REQUESTS}
 
905
 
 
906
//
 
907
// MessageId: ERROR_INVALID_AT_INTERRUPT_TIME
 
908
//
 
909
// MessageText:
 
910
//
 
911
//  Cannot request exclusive semaphores at interrupt time.
 
912
//
 
913
  ERROR_INVALID_AT_INTERRUPT_TIME = DWORD(104);
 
914
  {$EXTERNALSYM ERROR_INVALID_AT_INTERRUPT_TIME}
 
915
 
 
916
//
 
917
// MessageId: ERROR_SEM_OWNER_DIED
 
918
//
 
919
// MessageText:
 
920
//
 
921
//  The previous ownership of this semaphore has ended.
 
922
//
 
923
  ERROR_SEM_OWNER_DIED = DWORD(105);
 
924
  {$EXTERNALSYM ERROR_SEM_OWNER_DIED}
 
925
 
 
926
//
 
927
// MessageId: ERROR_SEM_USER_LIMIT
 
928
//
 
929
// MessageText:
 
930
//
 
931
//  Insert the diskette for drive %1.
 
932
//
 
933
  ERROR_SEM_USER_LIMIT = DWORD(106);
 
934
  {$EXTERNALSYM ERROR_SEM_USER_LIMIT}
 
935
 
 
936
//
 
937
// MessageId: ERROR_DISK_CHANGE
 
938
//
 
939
// MessageText:
 
940
//
 
941
//  The program stopped because an alternate diskette was not inserted.
 
942
//
 
943
  ERROR_DISK_CHANGE = DWORD(107);
 
944
  {$EXTERNALSYM ERROR_DISK_CHANGE}
 
945
 
 
946
//
 
947
// MessageId: ERROR_DRIVE_LOCKED
 
948
//
 
949
// MessageText:
 
950
//
 
951
//  The disk is in use or locked by another process.
 
952
//
 
953
  ERROR_DRIVE_LOCKED = DWORD(108);
 
954
  {$EXTERNALSYM ERROR_DRIVE_LOCKED}
 
955
 
 
956
//
 
957
// MessageId: ERROR_BROKEN_PIPE
 
958
//
 
959
// MessageText:
 
960
//
 
961
//  The pipe has been ended.
 
962
//
 
963
  ERROR_BROKEN_PIPE = DWORD(109);
 
964
  {$EXTERNALSYM ERROR_BROKEN_PIPE}
 
965
 
 
966
//
 
967
// MessageId: ERROR_OPEN_FAILED
 
968
//
 
969
// MessageText:
 
970
//
 
971
//  The system cannot open the device or file specified.
 
972
//
 
973
  ERROR_OPEN_FAILED = DWORD(110);
 
974
  {$EXTERNALSYM ERROR_OPEN_FAILED}
 
975
 
 
976
//
 
977
// MessageId: ERROR_BUFFER_OVERFLOW
 
978
//
 
979
// MessageText:
 
980
//
 
981
//  The file name is too long.
 
982
//
 
983
  ERROR_BUFFER_OVERFLOW = DWORD(111);
 
984
  {$EXTERNALSYM ERROR_BUFFER_OVERFLOW}
 
985
 
 
986
//
 
987
// MessageId: ERROR_DISK_FULL
 
988
//
 
989
// MessageText:
 
990
//
 
991
//  There is not enough space on the disk.
 
992
//
 
993
  ERROR_DISK_FULL = DWORD(112);
 
994
  {$EXTERNALSYM ERROR_DISK_FULL}
 
995
 
 
996
//
 
997
// MessageId: ERROR_NO_MORE_SEARCH_HANDLES
 
998
//
 
999
// MessageText:
 
1000
//
 
1001
//  No more internal file identifiers available.
 
1002
//
 
1003
  ERROR_NO_MORE_SEARCH_HANDLES = DWORD(113);
 
1004
  {$EXTERNALSYM ERROR_NO_MORE_SEARCH_HANDLES}
 
1005
 
 
1006
//
 
1007
// MessageId: ERROR_INVALID_TARGET_HANDLE
 
1008
//
 
1009
// MessageText:
 
1010
//
 
1011
//  The target internal file identifier is incorrect.
 
1012
//
 
1013
  ERROR_INVALID_TARGET_HANDLE = DWORD(114);
 
1014
  {$EXTERNALSYM ERROR_INVALID_TARGET_HANDLE}
 
1015
 
 
1016
//
 
1017
// MessageId: ERROR_INVALID_CATEGORY
 
1018
//
 
1019
// MessageText:
 
1020
//
 
1021
//  The IOCTL call made by the application program is not correct.
 
1022
//
 
1023
  ERROR_INVALID_CATEGORY = DWORD(117);
 
1024
  {$EXTERNALSYM ERROR_INVALID_CATEGORY}
 
1025
 
 
1026
//
 
1027
// MessageId: ERROR_INVALID_VERIFY_SWITCH
 
1028
//
 
1029
// MessageText:
 
1030
//
 
1031
//  The verify-on-write switch parameter value is not correct.
 
1032
//
 
1033
  ERROR_INVALID_VERIFY_SWITCH = DWORD(118);
 
1034
  {$EXTERNALSYM ERROR_INVALID_VERIFY_SWITCH}
 
1035
 
 
1036
//
 
1037
// MessageId: ERROR_BAD_DRIVER_LEVEL
 
1038
//
 
1039
// MessageText:
 
1040
//
 
1041
//  The system does not support the command requested.
 
1042
//
 
1043
  ERROR_BAD_DRIVER_LEVEL = DWORD(119);
 
1044
  {$EXTERNALSYM ERROR_BAD_DRIVER_LEVEL}
 
1045
 
 
1046
//
 
1047
// MessageId: ERROR_CALL_NOT_IMPLEMENTED
 
1048
//
 
1049
// MessageText:
 
1050
//
 
1051
//  This function is not supported on this system.
 
1052
//
 
1053
  ERROR_CALL_NOT_IMPLEMENTED = DWORD(120);
 
1054
  {$EXTERNALSYM ERROR_CALL_NOT_IMPLEMENTED}
 
1055
 
 
1056
//
 
1057
// MessageId: ERROR_SEM_TIMEOUT
 
1058
//
 
1059
// MessageText:
 
1060
//
 
1061
//  The semaphore timeout period has expired.
 
1062
//
 
1063
  ERROR_SEM_TIMEOUT = DWORD(121);
 
1064
  {$EXTERNALSYM ERROR_SEM_TIMEOUT}
 
1065
 
 
1066
//
 
1067
// MessageId: ERROR_INSUFFICIENT_BUFFER
 
1068
//
 
1069
// MessageText:
 
1070
//
 
1071
//  The data area passed to a system call is too small.
 
1072
//
 
1073
  ERROR_INSUFFICIENT_BUFFER = DWORD(122);  // dderror
 
1074
  {$EXTERNALSYM ERROR_INSUFFICIENT_BUFFER}
 
1075
 
 
1076
//
 
1077
// MessageId: ERROR_INVALID_NAME
 
1078
//
 
1079
// MessageText:
 
1080
//
 
1081
//  The filename, directory name, or volume label syntax is incorrect.
 
1082
//
 
1083
  ERROR_INVALID_NAME = DWORD(123);  // dderror
 
1084
  {$EXTERNALSYM ERROR_INVALID_NAME}
 
1085
 
 
1086
//
 
1087
// MessageId: ERROR_INVALID_LEVEL
 
1088
//
 
1089
// MessageText:
 
1090
//
 
1091
//  The system call level is not correct.
 
1092
//
 
1093
  ERROR_INVALID_LEVEL = DWORD(124);
 
1094
  {$EXTERNALSYM ERROR_INVALID_LEVEL}
 
1095
 
 
1096
//
 
1097
// MessageId: ERROR_NO_VOLUME_LABEL
 
1098
//
 
1099
// MessageText:
 
1100
//
 
1101
//  The disk has no volume label.
 
1102
//
 
1103
  ERROR_NO_VOLUME_LABEL = DWORD(125);
 
1104
  {$EXTERNALSYM ERROR_NO_VOLUME_LABEL}
 
1105
 
 
1106
//
 
1107
// MessageId: ERROR_MOD_NOT_FOUND
 
1108
//
 
1109
// MessageText:
 
1110
//
 
1111
//  The specified module could not be found.
 
1112
//
 
1113
  ERROR_MOD_NOT_FOUND = DWORD(126);
 
1114
  {$EXTERNALSYM ERROR_MOD_NOT_FOUND}
 
1115
 
 
1116
//
 
1117
// MessageId: ERROR_PROC_NOT_FOUND
 
1118
//
 
1119
// MessageText:
 
1120
//
 
1121
//  The specified procedure could not be found.
 
1122
//
 
1123
  ERROR_PROC_NOT_FOUND = DWORD(127);
 
1124
  {$EXTERNALSYM ERROR_PROC_NOT_FOUND}
 
1125
 
 
1126
//
 
1127
// MessageId: ERROR_WAIT_NO_CHILDREN
 
1128
//
 
1129
// MessageText:
 
1130
//
 
1131
//  There are no child processes to wait for.
 
1132
//
 
1133
  ERROR_WAIT_NO_CHILDREN = DWORD(128);
 
1134
  {$EXTERNALSYM ERROR_WAIT_NO_CHILDREN}
 
1135
 
 
1136
//
 
1137
// MessageId: ERROR_CHILD_NOT_COMPLETE
 
1138
//
 
1139
// MessageText:
 
1140
//
 
1141
//  The %1 application cannot be run in Win32 mode.
 
1142
//
 
1143
  ERROR_CHILD_NOT_COMPLETE = DWORD(129);
 
1144
  {$EXTERNALSYM ERROR_CHILD_NOT_COMPLETE}
 
1145
 
 
1146
//
 
1147
// MessageId: ERROR_DIRECT_ACCESS_HANDLE
 
1148
//
 
1149
// MessageText:
 
1150
//
 
1151
//  Attempt to use a file handle to an open disk partition for an operation other than raw disk I/O.
 
1152
//
 
1153
  ERROR_DIRECT_ACCESS_HANDLE = DWORD(130);
 
1154
  {$EXTERNALSYM ERROR_DIRECT_ACCESS_HANDLE}
 
1155
 
 
1156
//
 
1157
// MessageId: ERROR_NEGATIVE_SEEK
 
1158
//
 
1159
// MessageText:
 
1160
//
 
1161
//  An attempt was made to move the file pointer before the beginning of the file.
 
1162
//
 
1163
  ERROR_NEGATIVE_SEEK = DWORD(131);
 
1164
  {$EXTERNALSYM ERROR_NEGATIVE_SEEK}
 
1165
 
 
1166
//
 
1167
// MessageId: ERROR_SEEK_ON_DEVICE
 
1168
//
 
1169
// MessageText:
 
1170
//
 
1171
//  The file pointer cannot be set on the specified device or file.
 
1172
//
 
1173
  ERROR_SEEK_ON_DEVICE = DWORD(132);
 
1174
  {$EXTERNALSYM ERROR_SEEK_ON_DEVICE}
 
1175
 
 
1176
//
 
1177
// MessageId: ERROR_IS_JOIN_TARGET
 
1178
//
 
1179
// MessageText:
 
1180
//
 
1181
//  A JOIN or SUBST command cannot be used for a drive that contains previously joined drives.
 
1182
//
 
1183
  ERROR_IS_JOIN_TARGET = DWORD(133);
 
1184
  {$EXTERNALSYM ERROR_IS_JOIN_TARGET}
 
1185
 
 
1186
//
 
1187
// MessageId: ERROR_IS_JOINED
 
1188
//
 
1189
// MessageText:
 
1190
//
 
1191
//  An attempt was made to use a JOIN or SUBST command on a drive that has already been joined.
 
1192
//
 
1193
  ERROR_IS_JOINED = DWORD(134);
 
1194
  {$EXTERNALSYM ERROR_IS_JOINED}
 
1195
 
 
1196
//
 
1197
// MessageId: ERROR_IS_SUBSTED
 
1198
//
 
1199
// MessageText:
 
1200
//
 
1201
//  An attempt was made to use a JOIN or SUBST command on a drive that has already been substituted.
 
1202
//
 
1203
  ERROR_IS_SUBSTED = DWORD(135);
 
1204
  {$EXTERNALSYM ERROR_IS_SUBSTED}
 
1205
 
 
1206
//
 
1207
// MessageId: ERROR_NOT_JOINED
 
1208
//
 
1209
// MessageText:
 
1210
//
 
1211
//  The system tried to delete the JOIN of a drive that is not joined.
 
1212
//
 
1213
  ERROR_NOT_JOINED = DWORD(136);
 
1214
  {$EXTERNALSYM ERROR_NOT_JOINED}
 
1215
 
 
1216
//
 
1217
// MessageId: ERROR_NOT_SUBSTED
 
1218
//
 
1219
// MessageText:
 
1220
//
 
1221
//  The system tried to delete the substitution of a drive that is not substituted.
 
1222
//
 
1223
  ERROR_NOT_SUBSTED = DWORD(137);
 
1224
  {$EXTERNALSYM ERROR_NOT_SUBSTED}
 
1225
 
 
1226
//
 
1227
// MessageId: ERROR_JOIN_TO_JOIN
 
1228
//
 
1229
// MessageText:
 
1230
//
 
1231
//  The system tried to join a drive to a directory on a joined drive.
 
1232
//
 
1233
  ERROR_JOIN_TO_JOIN = DWORD(138);
 
1234
  {$EXTERNALSYM ERROR_JOIN_TO_JOIN}
 
1235
 
 
1236
//
 
1237
// MessageId: ERROR_SUBST_TO_SUBST
 
1238
//
 
1239
// MessageText:
 
1240
//
 
1241
//  The system tried to substitute a drive to a directory on a substituted drive.
 
1242
//
 
1243
  ERROR_SUBST_TO_SUBST = DWORD(139);
 
1244
  {$EXTERNALSYM ERROR_SUBST_TO_SUBST}
 
1245
 
 
1246
//
 
1247
// MessageId: ERROR_JOIN_TO_SUBST
 
1248
//
 
1249
// MessageText:
 
1250
//
 
1251
//  The system tried to join a drive to a directory on a substituted drive.
 
1252
//
 
1253
  ERROR_JOIN_TO_SUBST = DWORD(140);
 
1254
  {$EXTERNALSYM ERROR_JOIN_TO_SUBST}
 
1255
 
 
1256
//
 
1257
// MessageId: ERROR_SUBST_TO_JOIN
 
1258
//
 
1259
// MessageText:
 
1260
//
 
1261
//  The system tried to SUBST a drive to a directory on a joined drive.
 
1262
//
 
1263
  ERROR_SUBST_TO_JOIN = DWORD(141);
 
1264
  {$EXTERNALSYM ERROR_SUBST_TO_JOIN}
 
1265
 
 
1266
//
 
1267
// MessageId: ERROR_BUSY_DRIVE
 
1268
//
 
1269
// MessageText:
 
1270
//
 
1271
//  The system cannot perform a JOIN or SUBST at this time.
 
1272
//
 
1273
  ERROR_BUSY_DRIVE = DWORD(142);
 
1274
  {$EXTERNALSYM ERROR_BUSY_DRIVE}
 
1275
 
 
1276
//
 
1277
// MessageId: ERROR_SAME_DRIVE
 
1278
//
 
1279
// MessageText:
 
1280
//
 
1281
//  The system cannot join or substitute a drive to or for a directory on the same drive.
 
1282
//
 
1283
  ERROR_SAME_DRIVE = DWORD(143);
 
1284
  {$EXTERNALSYM ERROR_SAME_DRIVE}
 
1285
 
 
1286
//
 
1287
// MessageId: ERROR_DIR_NOT_ROOT
 
1288
//
 
1289
// MessageText:
 
1290
//
 
1291
//  The directory is not a subdirectory of the root directory.
 
1292
//
 
1293
  ERROR_DIR_NOT_ROOT = DWORD(144);
 
1294
  {$EXTERNALSYM ERROR_DIR_NOT_ROOT}
 
1295
 
 
1296
//
 
1297
// MessageId: ERROR_DIR_NOT_EMPTY
 
1298
//
 
1299
// MessageText:
 
1300
//
 
1301
//  The directory is not empty.
 
1302
//
 
1303
  ERROR_DIR_NOT_EMPTY = DWORD(145);
 
1304
  {$EXTERNALSYM ERROR_DIR_NOT_EMPTY}
 
1305
 
 
1306
//
 
1307
// MessageId: ERROR_IS_SUBST_PATH
 
1308
//
 
1309
// MessageText:
 
1310
//
 
1311
//  The path specified is being used in a substitute.
 
1312
//
 
1313
  ERROR_IS_SUBST_PATH = DWORD(146);
 
1314
  {$EXTERNALSYM ERROR_IS_SUBST_PATH}
 
1315
 
 
1316
//
 
1317
// MessageId: ERROR_IS_JOIN_PATH
 
1318
//
 
1319
// MessageText:
 
1320
//
 
1321
//  Not enough resources are available to process this command.
 
1322
//
 
1323
  ERROR_IS_JOIN_PATH = DWORD(147);
 
1324
  {$EXTERNALSYM ERROR_IS_JOIN_PATH}
 
1325
 
 
1326
//
 
1327
// MessageId: ERROR_PATH_BUSY
 
1328
//
 
1329
// MessageText:
 
1330
//
 
1331
//  The path specified cannot be used at this time.
 
1332
//
 
1333
  ERROR_PATH_BUSY = DWORD(148);
 
1334
  {$EXTERNALSYM ERROR_PATH_BUSY}
 
1335
 
 
1336
//
 
1337
// MessageId: ERROR_IS_SUBST_TARGET
 
1338
//
 
1339
// MessageText:
 
1340
//
 
1341
//  An attempt was made to join or substitute a drive for which a directory on the drive is the target of a previous substitute.
 
1342
//
 
1343
  ERROR_IS_SUBST_TARGET = DWORD(149);
 
1344
  {$EXTERNALSYM ERROR_IS_SUBST_TARGET}
 
1345
 
 
1346
//
 
1347
// MessageId: ERROR_SYSTEM_TRACE
 
1348
//
 
1349
// MessageText:
 
1350
//
 
1351
//  System trace information was not specified in your CONFIG.SYS file, or tracing is disallowed.
 
1352
//
 
1353
  ERROR_SYSTEM_TRACE = DWORD(150);
 
1354
  {$EXTERNALSYM ERROR_SYSTEM_TRACE}
 
1355
 
 
1356
//
 
1357
// MessageId: ERROR_INVALID_EVENT_COUNT
 
1358
//
 
1359
// MessageText:
 
1360
//
 
1361
//  The number of specified semaphore events for DosMuxSemWait is not correct.
 
1362
//
 
1363
  ERROR_INVALID_EVENT_COUNT = DWORD(151);
 
1364
  {$EXTERNALSYM ERROR_INVALID_EVENT_COUNT}
 
1365
 
 
1366
//
 
1367
// MessageId: ERROR_TOO_MANY_MUXWAITERS
 
1368
//
 
1369
// MessageText:
 
1370
//
 
1371
//  DosMuxSemWait did not execute; too many semaphores are already set.
 
1372
//
 
1373
  ERROR_TOO_MANY_MUXWAITERS = DWORD(152);
 
1374
  {$EXTERNALSYM ERROR_TOO_MANY_MUXWAITERS}
 
1375
 
 
1376
//
 
1377
// MessageId: ERROR_INVALID_LIST_FORMAT
 
1378
//
 
1379
// MessageText:
 
1380
//
 
1381
//  The DosMuxSemWait list is not correct.
 
1382
//
 
1383
  ERROR_INVALID_LIST_FORMAT = DWORD(153);
 
1384
  {$EXTERNALSYM ERROR_INVALID_LIST_FORMAT}
 
1385
 
 
1386
//
 
1387
// MessageId: ERROR_LABEL_TOO_LONG
 
1388
//
 
1389
// MessageText:
 
1390
//
 
1391
//  The volume label you entered exceeds the label character limit of the target file system.
 
1392
//
 
1393
  ERROR_LABEL_TOO_LONG = DWORD(154);
 
1394
  {$EXTERNALSYM ERROR_LABEL_TOO_LONG}
 
1395
 
 
1396
//
 
1397
// MessageId: ERROR_TOO_MANY_TCBS
 
1398
//
 
1399
// MessageText:
 
1400
//
 
1401
//  Cannot create another thread.
 
1402
//
 
1403
  ERROR_TOO_MANY_TCBS = DWORD(155);
 
1404
  {$EXTERNALSYM ERROR_TOO_MANY_TCBS}
 
1405
 
 
1406
//
 
1407
// MessageId: ERROR_SIGNAL_REFUSED
 
1408
//
 
1409
// MessageText:
 
1410
//
 
1411
//  The recipient process has refused the signal.
 
1412
//
 
1413
  ERROR_SIGNAL_REFUSED = DWORD(156);
 
1414
  {$EXTERNALSYM ERROR_SIGNAL_REFUSED}
 
1415
 
 
1416
//
 
1417
// MessageId: ERROR_DISCARDED
 
1418
//
 
1419
// MessageText:
 
1420
//
 
1421
//  The segment is already discarded and cannot be locked.
 
1422
//
 
1423
  ERROR_DISCARDED = DWORD(157);
 
1424
  {$EXTERNALSYM ERROR_DISCARDED}
 
1425
 
 
1426
//
 
1427
// MessageId: ERROR_NOT_LOCKED
 
1428
//
 
1429
// MessageText:
 
1430
//
 
1431
//  The segment is already unlocked.
 
1432
//
 
1433
  ERROR_NOT_LOCKED = DWORD(158);
 
1434
  {$EXTERNALSYM ERROR_NOT_LOCKED}
 
1435
 
 
1436
//
 
1437
// MessageId: ERROR_BAD_THREADID_ADDR
 
1438
//
 
1439
// MessageText:
 
1440
//
 
1441
//  The address for the thread ID is not correct.
 
1442
//
 
1443
  ERROR_BAD_THREADID_ADDR = DWORD(159);
 
1444
  {$EXTERNALSYM ERROR_BAD_THREADID_ADDR}
 
1445
 
 
1446
//
 
1447
// MessageId: ERROR_BAD_ARGUMENTS
 
1448
//
 
1449
// MessageText:
 
1450
//
 
1451
//  One or more arguments are not correct.
 
1452
//
 
1453
  ERROR_BAD_ARGUMENTS = DWORD(160);
 
1454
  {$EXTERNALSYM ERROR_BAD_ARGUMENTS}
 
1455
 
 
1456
//
 
1457
// MessageId: ERROR_BAD_PATHNAME
 
1458
//
 
1459
// MessageText:
 
1460
//
 
1461
//  The specified path is invalid.
 
1462
//
 
1463
  ERROR_BAD_PATHNAME = DWORD(161);
 
1464
  {$EXTERNALSYM ERROR_BAD_PATHNAME}
 
1465
 
 
1466
//
 
1467
// MessageId: ERROR_SIGNAL_PENDING
 
1468
//
 
1469
// MessageText:
 
1470
//
 
1471
//  A signal is already pending.
 
1472
//
 
1473
  ERROR_SIGNAL_PENDING = DWORD(162);
 
1474
  {$EXTERNALSYM ERROR_SIGNAL_PENDING}
 
1475
 
 
1476
//
 
1477
// MessageId: ERROR_MAX_THRDS_REACHED
 
1478
//
 
1479
// MessageText:
 
1480
//
 
1481
//  No more threads can be created in the system.
 
1482
//
 
1483
  ERROR_MAX_THRDS_REACHED = DWORD(164);
 
1484
  {$EXTERNALSYM ERROR_MAX_THRDS_REACHED}
 
1485
 
 
1486
//
 
1487
// MessageId: ERROR_LOCK_FAILED
 
1488
//
 
1489
// MessageText:
 
1490
//
 
1491
//  Unable to lock a region of a file.
 
1492
//
 
1493
  ERROR_LOCK_FAILED = DWORD(167);
 
1494
  {$EXTERNALSYM ERROR_LOCK_FAILED}
 
1495
 
 
1496
//
 
1497
// MessageId: ERROR_BUSY
 
1498
//
 
1499
// MessageText:
 
1500
//
 
1501
//  The requested resource is in use.
 
1502
//
 
1503
  ERROR_BUSY = DWORD(170);  // dderror
 
1504
  {$EXTERNALSYM ERROR_BUSY}
 
1505
 
 
1506
//
 
1507
// MessageId: ERROR_CANCEL_VIOLATION
 
1508
//
 
1509
// MessageText:
 
1510
//
 
1511
//  A lock request was not outstanding for the supplied cancel region.
 
1512
//
 
1513
  ERROR_CANCEL_VIOLATION = DWORD(173);
 
1514
  {$EXTERNALSYM ERROR_CANCEL_VIOLATION}
 
1515
 
 
1516
//
 
1517
// MessageId: ERROR_ATOMIC_LOCKS_NOT_SUPPORTED
 
1518
//
 
1519
// MessageText:
 
1520
//
 
1521
//  The file system does not support atomic changes to the lock type.
 
1522
//
 
1523
  ERROR_ATOMIC_LOCKS_NOT_SUPPORTED = DWORD(174);
 
1524
  {$EXTERNALSYM ERROR_ATOMIC_LOCKS_NOT_SUPPORTED}
 
1525
 
 
1526
//
 
1527
// MessageId: ERROR_INVALID_SEGMENT_NUMBER
 
1528
//
 
1529
// MessageText:
 
1530
//
 
1531
//  The system detected a segment number that was not correct.
 
1532
//
 
1533
  ERROR_INVALID_SEGMENT_NUMBER = DWORD(180);
 
1534
  {$EXTERNALSYM ERROR_INVALID_SEGMENT_NUMBER}
 
1535
 
 
1536
//
 
1537
// MessageId: ERROR_INVALID_ORDINAL
 
1538
//
 
1539
// MessageText:
 
1540
//
 
1541
//  The operating system cannot run %1.
 
1542
//
 
1543
  ERROR_INVALID_ORDINAL = DWORD(182);
 
1544
  {$EXTERNALSYM ERROR_INVALID_ORDINAL}
 
1545
 
 
1546
//
 
1547
// MessageId: ERROR_ALREADY_EXISTS
 
1548
//
 
1549
// MessageText:
 
1550
//
 
1551
//  Cannot create a file when that file already exists.
 
1552
//
 
1553
  ERROR_ALREADY_EXISTS = DWORD(183);
 
1554
  {$EXTERNALSYM ERROR_ALREADY_EXISTS}
 
1555
 
 
1556
//
 
1557
// MessageId: ERROR_INVALID_FLAG_NUMBER
 
1558
//
 
1559
// MessageText:
 
1560
//
 
1561
//  The flag passed is not correct.
 
1562
//
 
1563
  ERROR_INVALID_FLAG_NUMBER = DWORD(186);
 
1564
  {$EXTERNALSYM ERROR_INVALID_FLAG_NUMBER}
 
1565
 
 
1566
//
 
1567
// MessageId: ERROR_SEM_NOT_FOUND
 
1568
//
 
1569
// MessageText:
 
1570
//
 
1571
//  The specified system semaphore name was not found.
 
1572
//
 
1573
  ERROR_SEM_NOT_FOUND = DWORD(187);
 
1574
  {$EXTERNALSYM ERROR_SEM_NOT_FOUND}
 
1575
 
 
1576
//
 
1577
// MessageId: ERROR_INVALID_STARTING_CODESEG
 
1578
//
 
1579
// MessageText:
 
1580
//
 
1581
//  The operating system cannot run %1.
 
1582
//
 
1583
  ERROR_INVALID_STARTING_CODESEG = DWORD(188);
 
1584
  {$EXTERNALSYM ERROR_INVALID_STARTING_CODESEG}
 
1585
 
 
1586
//
 
1587
// MessageId: ERROR_INVALID_STACKSEG
 
1588
//
 
1589
// MessageText:
 
1590
//
 
1591
//  The operating system cannot run %1.
 
1592
//
 
1593
  ERROR_INVALID_STACKSEG = DWORD(189);
 
1594
  {$EXTERNALSYM ERROR_INVALID_STACKSEG}
 
1595
 
 
1596
//
 
1597
// MessageId: ERROR_INVALID_MODULETYPE
 
1598
//
 
1599
// MessageText:
 
1600
//
 
1601
//  The operating system cannot run %1.
 
1602
//
 
1603
  ERROR_INVALID_MODULETYPE = DWORD(190);
 
1604
  {$EXTERNALSYM ERROR_INVALID_MODULETYPE}
 
1605
 
 
1606
//
 
1607
// MessageId: ERROR_INVALID_EXE_SIGNATURE
 
1608
//
 
1609
// MessageText:
 
1610
//
 
1611
//  Cannot run %1 in Win32 mode.
 
1612
//
 
1613
  ERROR_INVALID_EXE_SIGNATURE = DWORD(191);
 
1614
  {$EXTERNALSYM ERROR_INVALID_EXE_SIGNATURE}
 
1615
 
 
1616
//
 
1617
// MessageId: ERROR_EXE_MARKED_INVALID
 
1618
//
 
1619
// MessageText:
 
1620
//
 
1621
//  The operating system cannot run %1.
 
1622
//
 
1623
  ERROR_EXE_MARKED_INVALID = DWORD(192);
 
1624
  {$EXTERNALSYM ERROR_EXE_MARKED_INVALID}
 
1625
 
 
1626
//
 
1627
// MessageId: ERROR_BAD_EXE_FORMAT
 
1628
//
 
1629
// MessageText:
 
1630
//
 
1631
//  %1 is not a valid Win32 application.
 
1632
//
 
1633
  ERROR_BAD_EXE_FORMAT = DWORD(193);
 
1634
  {$EXTERNALSYM ERROR_BAD_EXE_FORMAT}
 
1635
 
 
1636
//
 
1637
// MessageId: ERROR_ITERATED_DATA_EXCEEDS_64k
 
1638
//
 
1639
// MessageText:
 
1640
//
 
1641
//  The operating system cannot run %1.
 
1642
//
 
1643
  ERROR_ITERATED_DATA_EXCEEDS_64k = DWORD(194);
 
1644
  {$EXTERNALSYM ERROR_ITERATED_DATA_EXCEEDS_64k}
 
1645
 
 
1646
//
 
1647
// MessageId: ERROR_INVALID_MINALLOCSIZE
 
1648
//
 
1649
// MessageText:
 
1650
//
 
1651
//  The operating system cannot run %1.
 
1652
//
 
1653
  ERROR_INVALID_MINALLOCSIZE = DWORD(195);
 
1654
  {$EXTERNALSYM ERROR_INVALID_MINALLOCSIZE}
 
1655
 
 
1656
//
 
1657
// MessageId: ERROR_DYNLINK_FROM_INVALID_RING
 
1658
//
 
1659
// MessageText:
 
1660
//
 
1661
//  The operating system cannot run this application program.
 
1662
//
 
1663
  ERROR_DYNLINK_FROM_INVALID_RING = DWORD(196);
 
1664
  {$EXTERNALSYM ERROR_DYNLINK_FROM_INVALID_RING}
 
1665
 
 
1666
//
 
1667
// MessageId: ERROR_IOPL_NOT_ENABLED
 
1668
//
 
1669
// MessageText:
 
1670
//
 
1671
//  The operating system is not presently configured to run this application.
 
1672
//
 
1673
  ERROR_IOPL_NOT_ENABLED = DWORD(197);
 
1674
  {$EXTERNALSYM ERROR_IOPL_NOT_ENABLED}
 
1675
 
 
1676
//
 
1677
// MessageId: ERROR_INVALID_SEGDPL
 
1678
//
 
1679
// MessageText:
 
1680
//
 
1681
//  The operating system cannot run %1.
 
1682
//
 
1683
  ERROR_INVALID_SEGDPL = DWORD(198);
 
1684
  {$EXTERNALSYM ERROR_INVALID_SEGDPL}
 
1685
 
 
1686
//
 
1687
// MessageId: ERROR_AUTODATASEG_EXCEEDS_64k
 
1688
//
 
1689
// MessageText:
 
1690
//
 
1691
//  The operating system cannot run this application program.
 
1692
//
 
1693
  ERROR_AUTODATASEG_EXCEEDS_64k = DWORD(199);
 
1694
  {$EXTERNALSYM ERROR_AUTODATASEG_EXCEEDS_64k}
 
1695
 
 
1696
//
 
1697
// MessageId: ERROR_RING2SEG_MUST_BE_MOVABLE
 
1698
//
 
1699
// MessageText:
 
1700
//
 
1701
//  The code segment cannot be greater than or equal to 64K.
 
1702
//
 
1703
  ERROR_RING2SEG_MUST_BE_MOVABLE = DWORD(200);
 
1704
  {$EXTERNALSYM ERROR_RING2SEG_MUST_BE_MOVABLE}
 
1705
 
 
1706
//
 
1707
// MessageId: ERROR_RELOC_CHAIN_XEEDS_SEGLIM
 
1708
//
 
1709
// MessageText:
 
1710
//
 
1711
//  The operating system cannot run %1.
 
1712
//
 
1713
  ERROR_RELOC_CHAIN_XEEDS_SEGLIM = DWORD(201);
 
1714
  {$EXTERNALSYM ERROR_RELOC_CHAIN_XEEDS_SEGLIM}
 
1715
 
 
1716
//
 
1717
// MessageId: ERROR_INFLOOP_IN_RELOC_CHAIN
 
1718
//
 
1719
// MessageText:
 
1720
//
 
1721
//  The operating system cannot run %1.
 
1722
//
 
1723
  ERROR_INFLOOP_IN_RELOC_CHAIN = DWORD(202);
 
1724
  {$EXTERNALSYM ERROR_INFLOOP_IN_RELOC_CHAIN}
 
1725
 
 
1726
//
 
1727
// MessageId: ERROR_ENVVAR_NOT_FOUND
 
1728
//
 
1729
// MessageText:
 
1730
//
 
1731
//  The system could not find the environment option that was entered.
 
1732
//
 
1733
  ERROR_ENVVAR_NOT_FOUND = DWORD(203);
 
1734
  {$EXTERNALSYM ERROR_ENVVAR_NOT_FOUND}
 
1735
 
 
1736
//
 
1737
// MessageId: ERROR_NO_SIGNAL_SENT
 
1738
//
 
1739
// MessageText:
 
1740
//
 
1741
//  No process in the command subtree has a signal handler.
 
1742
//
 
1743
  ERROR_NO_SIGNAL_SENT = DWORD(205);
 
1744
  {$EXTERNALSYM ERROR_NO_SIGNAL_SENT}
 
1745
 
 
1746
//
 
1747
// MessageId: ERROR_FILENAME_EXCED_RANGE
 
1748
//
 
1749
// MessageText:
 
1750
//
 
1751
//  The filename or extension is too long.
 
1752
//
 
1753
  ERROR_FILENAME_EXCED_RANGE = DWORD(206);
 
1754
  {$EXTERNALSYM ERROR_FILENAME_EXCED_RANGE}
 
1755
 
 
1756
//
 
1757
// MessageId: ERROR_RING2_STACK_IN_USE
 
1758
//
 
1759
// MessageText:
 
1760
//
 
1761
//  The ring 2 stack is in use.
 
1762
//
 
1763
  ERROR_RING2_STACK_IN_USE = DWORD(207);
 
1764
  {$EXTERNALSYM ERROR_RING2_STACK_IN_USE}
 
1765
 
 
1766
//
 
1767
// MessageId: ERROR_META_EXPANSION_TOO_LONG
 
1768
//
 
1769
// MessageText:
 
1770
//
 
1771
//  The global filename characters, * or ?, are entered incorrectly or too many global filename characters are specified.
 
1772
//
 
1773
  ERROR_META_EXPANSION_TOO_LONG = DWORD(208);
 
1774
  {$EXTERNALSYM ERROR_META_EXPANSION_TOO_LONG}
 
1775
 
 
1776
//
 
1777
// MessageId: ERROR_INVALID_SIGNAL_NUMBER
 
1778
//
 
1779
// MessageText:
 
1780
//
 
1781
//  The signal being posted is not correct.
 
1782
//
 
1783
  ERROR_INVALID_SIGNAL_NUMBER = DWORD(209);
 
1784
  {$EXTERNALSYM ERROR_INVALID_SIGNAL_NUMBER}
 
1785
 
 
1786
//
 
1787
// MessageId: ERROR_THREAD_1_INACTIVE
 
1788
//
 
1789
// MessageText:
 
1790
//
 
1791
//  The signal handler cannot be set.
 
1792
//
 
1793
  ERROR_THREAD_1_INACTIVE = DWORD(210);
 
1794
  {$EXTERNALSYM ERROR_THREAD_1_INACTIVE}
 
1795
 
 
1796
//
 
1797
// MessageId: ERROR_LOCKED
 
1798
//
 
1799
// MessageText:
 
1800
//
 
1801
//  The segment is locked and cannot be reallocated.
 
1802
//
 
1803
  ERROR_LOCKED = DWORD(212);
 
1804
  {$EXTERNALSYM ERROR_LOCKED}
 
1805
 
 
1806
//
 
1807
// MessageId: ERROR_TOO_MANY_MODULES
 
1808
//
 
1809
// MessageText:
 
1810
//
 
1811
//  Too many dynamic-link modules are attached to this program or dynamic-link module.
 
1812
//
 
1813
  ERROR_TOO_MANY_MODULES = DWORD(214);
 
1814
  {$EXTERNALSYM ERROR_TOO_MANY_MODULES}
 
1815
 
 
1816
//
 
1817
// MessageId: ERROR_NESTING_NOT_ALLOWED
 
1818
//
 
1819
// MessageText:
 
1820
//
 
1821
//  Cannot nest calls to LoadModule.
 
1822
//
 
1823
  ERROR_NESTING_NOT_ALLOWED = DWORD(215);
 
1824
  {$EXTERNALSYM ERROR_NESTING_NOT_ALLOWED}
 
1825
 
 
1826
//
 
1827
// MessageId: ERROR_EXE_MACHINE_TYPE_MISMATCH
 
1828
//
 
1829
// MessageText:
 
1830
//
 
1831
//  The image file %1 is valid, but is for a machine type other than the current machine.
 
1832
//
 
1833
  ERROR_EXE_MACHINE_TYPE_MISMATCH = DWORD(216);
 
1834
  {$EXTERNALSYM ERROR_EXE_MACHINE_TYPE_MISMATCH}
 
1835
 
 
1836
//
 
1837
// MessageId: ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY
 
1838
//
 
1839
// MessageText:
 
1840
//
 
1841
//  The image file %1 is signed, unable to modify.
 
1842
//
 
1843
  ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY = DWORD(217);
 
1844
  {$EXTERNALSYM ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY}
 
1845
 
 
1846
//
 
1847
// MessageId: ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY
 
1848
//
 
1849
// MessageText:
 
1850
//
 
1851
//  The image file %1 is strong signed, unable to modify.
 
1852
//
 
1853
  ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY = DWORD(218);
 
1854
  {$EXTERNALSYM ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY}
 
1855
 
 
1856
//
 
1857
// MessageId: ERROR_BAD_PIPE
 
1858
//
 
1859
// MessageText:
 
1860
//
 
1861
//  The pipe state is invalid.
 
1862
//
 
1863
  ERROR_BAD_PIPE = DWORD(230);
 
1864
  {$EXTERNALSYM ERROR_BAD_PIPE}
 
1865
 
 
1866
//
 
1867
// MessageId: ERROR_PIPE_BUSY
 
1868
//
 
1869
// MessageText:
 
1870
//
 
1871
//  All pipe instances are busy.
 
1872
//
 
1873
  ERROR_PIPE_BUSY = DWORD(231);
 
1874
  {$EXTERNALSYM ERROR_PIPE_BUSY}
 
1875
 
 
1876
//
 
1877
// MessageId: ERROR_NO_DATA
 
1878
//
 
1879
// MessageText:
 
1880
//
 
1881
//  The pipe is being closed.
 
1882
//
 
1883
  ERROR_NO_DATA = DWORD(232);
 
1884
  {$EXTERNALSYM ERROR_NO_DATA}
 
1885
 
 
1886
//
 
1887
// MessageId: ERROR_PIPE_NOT_CONNECTED
 
1888
//
 
1889
// MessageText:
 
1890
//
 
1891
//  No process is on the other end of the pipe.
 
1892
//
 
1893
  ERROR_PIPE_NOT_CONNECTED = DWORD(233);
 
1894
  {$EXTERNALSYM ERROR_PIPE_NOT_CONNECTED}
 
1895
 
 
1896
//
 
1897
// MessageId: ERROR_MORE_DATA
 
1898
//
 
1899
// MessageText:
 
1900
//
 
1901
//  More data is available.
 
1902
//
 
1903
  ERROR_MORE_DATA = DWORD(234);  // dderror
 
1904
  {$EXTERNALSYM ERROR_MORE_DATA}
 
1905
 
 
1906
//
 
1907
// MessageId: ERROR_VC_DISCONNECTED
 
1908
//
 
1909
// MessageText:
 
1910
//
 
1911
//  The session was canceled.
 
1912
//
 
1913
  ERROR_VC_DISCONNECTED = DWORD(240);
 
1914
  {$EXTERNALSYM ERROR_VC_DISCONNECTED}
 
1915
 
 
1916
//
 
1917
// MessageId: ERROR_INVALID_EA_NAME
 
1918
//
 
1919
// MessageText:
 
1920
//
 
1921
//  The specified extended attribute name was invalid.
 
1922
//
 
1923
  ERROR_INVALID_EA_NAME = DWORD(254);
 
1924
  {$EXTERNALSYM ERROR_INVALID_EA_NAME}
 
1925
 
 
1926
//
 
1927
// MessageId: ERROR_EA_LIST_INCONSISTENT
 
1928
//
 
1929
// MessageText:
 
1930
//
 
1931
//  The extended attributes are inconsistent.
 
1932
//
 
1933
  ERROR_EA_LIST_INCONSISTENT = DWORD(255);
 
1934
  {$EXTERNALSYM ERROR_EA_LIST_INCONSISTENT}
 
1935
 
 
1936
//
 
1937
// MessageId: WAIT_TIMEOUT
 
1938
//
 
1939
// MessageText:
 
1940
//
 
1941
//  The wait operation timed out.
 
1942
//
 
1943
  WAIT_TIMEOUT = DWORD(258);  // dderror
 
1944
  {$EXTERNALSYM WAIT_TIMEOUT}
 
1945
 
 
1946
//
 
1947
// MessageId: ERROR_NO_MORE_ITEMS
 
1948
//
 
1949
// MessageText:
 
1950
//
 
1951
//  No more data is available.
 
1952
//
 
1953
  ERROR_NO_MORE_ITEMS = DWORD(259);
 
1954
  {$EXTERNALSYM ERROR_NO_MORE_ITEMS}
 
1955
 
 
1956
//
 
1957
// MessageId: ERROR_CANNOT_COPY
 
1958
//
 
1959
// MessageText:
 
1960
//
 
1961
//  The copy functions cannot be used.
 
1962
//
 
1963
  ERROR_CANNOT_COPY = DWORD(266);
 
1964
  {$EXTERNALSYM ERROR_CANNOT_COPY}
 
1965
 
 
1966
//
 
1967
// MessageId: ERROR_DIRECTORY
 
1968
//
 
1969
// MessageText:
 
1970
//
 
1971
//  The directory name is invalid.
 
1972
//
 
1973
  ERROR_DIRECTORY = DWORD(267);
 
1974
  {$EXTERNALSYM ERROR_DIRECTORY}
 
1975
 
 
1976
//
 
1977
// MessageId: ERROR_EAS_DIDNT_FIT
 
1978
//
 
1979
// MessageText:
 
1980
//
 
1981
//  The extended attributes did not fit in the buffer.
 
1982
//
 
1983
  ERROR_EAS_DIDNT_FIT = DWORD(275);
 
1984
  {$EXTERNALSYM ERROR_EAS_DIDNT_FIT}
 
1985
 
 
1986
//
 
1987
// MessageId: ERROR_EA_FILE_CORRUPT
 
1988
//
 
1989
// MessageText:
 
1990
//
 
1991
//  The extended attribute file on the mounted file system is corrupt.
 
1992
//
 
1993
  ERROR_EA_FILE_CORRUPT = DWORD(276);
 
1994
  {$EXTERNALSYM ERROR_EA_FILE_CORRUPT}
 
1995
 
 
1996
//
 
1997
// MessageId: ERROR_EA_TABLE_FULL
 
1998
//
 
1999
// MessageText:
 
2000
//
 
2001
//  The extended attribute table file is full.
 
2002
//
 
2003
  ERROR_EA_TABLE_FULL = DWORD(277);
 
2004
  {$EXTERNALSYM ERROR_EA_TABLE_FULL}
 
2005
 
 
2006
//
 
2007
// MessageId: ERROR_INVALID_EA_HANDLE
 
2008
//
 
2009
// MessageText:
 
2010
//
 
2011
//  The specified extended attribute handle is invalid.
 
2012
//
 
2013
  ERROR_INVALID_EA_HANDLE = DWORD(278);
 
2014
  {$EXTERNALSYM ERROR_INVALID_EA_HANDLE}
 
2015
 
 
2016
//
 
2017
// MessageId: ERROR_EAS_NOT_SUPPORTED
 
2018
//
 
2019
// MessageText:
 
2020
//
 
2021
//  The mounted file system does not support extended attributes.
 
2022
//
 
2023
  ERROR_EAS_NOT_SUPPORTED = DWORD(282);
 
2024
  {$EXTERNALSYM ERROR_EAS_NOT_SUPPORTED}
 
2025
 
 
2026
//
 
2027
// MessageId: ERROR_NOT_OWNER
 
2028
//
 
2029
// MessageText:
 
2030
//
 
2031
//  Attempt to release mutex not owned by caller.
 
2032
//
 
2033
  ERROR_NOT_OWNER = DWORD(288);
 
2034
  {$EXTERNALSYM ERROR_NOT_OWNER}
 
2035
 
 
2036
//
 
2037
// MessageId: ERROR_TOO_MANY_POSTS
 
2038
//
 
2039
// MessageText:
 
2040
//
 
2041
//  Too many posts were made to a semaphore.
 
2042
//
 
2043
  ERROR_TOO_MANY_POSTS = DWORD(298);
 
2044
  {$EXTERNALSYM ERROR_TOO_MANY_POSTS}
 
2045
 
 
2046
//
 
2047
// MessageId: ERROR_PARTIAL_COPY
 
2048
//
 
2049
// MessageText:
 
2050
//
 
2051
//  Only part of a ReadProcessMemory or WriteProcessMemory request was completed.
 
2052
//
 
2053
  ERROR_PARTIAL_COPY = DWORD(299);
 
2054
  {$EXTERNALSYM ERROR_PARTIAL_COPY}
 
2055
 
 
2056
//
 
2057
// MessageId: ERROR_OPLOCK_NOT_GRANTED
 
2058
//
 
2059
// MessageText:
 
2060
//
 
2061
//  The oplock request is denied.
 
2062
//
 
2063
  ERROR_OPLOCK_NOT_GRANTED = DWORD(300);
 
2064
  {$EXTERNALSYM ERROR_OPLOCK_NOT_GRANTED}
 
2065
 
 
2066
//
 
2067
// MessageId: ERROR_INVALID_OPLOCK_PROTOCOL
 
2068
//
 
2069
// MessageText:
 
2070
//
 
2071
//  An invalid oplock acknowledgment was received by the system.
 
2072
//
 
2073
  ERROR_INVALID_OPLOCK_PROTOCOL = DWORD(301);
 
2074
  {$EXTERNALSYM ERROR_INVALID_OPLOCK_PROTOCOL}
 
2075
 
 
2076
//
 
2077
// MessageId: ERROR_DISK_TOO_FRAGMENTED
 
2078
//
 
2079
// MessageText:
 
2080
//
 
2081
//  The volume is too fragmented to complete this operation.
 
2082
//
 
2083
  ERROR_DISK_TOO_FRAGMENTED = DWORD(302);
 
2084
  {$EXTERNALSYM ERROR_DISK_TOO_FRAGMENTED}
 
2085
 
 
2086
//
 
2087
// MessageId: ERROR_DELETE_PENDING
 
2088
//
 
2089
// MessageText:
 
2090
//
 
2091
//  The file cannot be opened because it is in the process of being deleted.
 
2092
//
 
2093
  ERROR_DELETE_PENDING = DWORD(303);
 
2094
  {$EXTERNALSYM ERROR_DELETE_PENDING}
 
2095
 
 
2096
//
 
2097
// MessageId: ERROR_MR_MID_NOT_FOUND
 
2098
//
 
2099
// MessageText:
 
2100
//
 
2101
//  The system cannot find message text for message number 0x%1 in the message file for %2.
 
2102
//
 
2103
  ERROR_MR_MID_NOT_FOUND = DWORD(317);
 
2104
  {$EXTERNALSYM ERROR_MR_MID_NOT_FOUND}
 
2105
 
 
2106
//
 
2107
// MessageId: ERROR_SCOPE_NOT_FOUND
 
2108
//
 
2109
// MessageText:
 
2110
//
 
2111
//  The scope specified was not found.
 
2112
//
 
2113
  ERROR_SCOPE_NOT_FOUND = DWORD(318);
 
2114
  {$EXTERNALSYM ERROR_SCOPE_NOT_FOUND}
 
2115
 
 
2116
//
 
2117
// MessageId: ERROR_INVALID_ADDRESS
 
2118
//
 
2119
// MessageText:
 
2120
//
 
2121
//  Attempt to access invalid address.
 
2122
//
 
2123
  ERROR_INVALID_ADDRESS = DWORD(487);
 
2124
  {$EXTERNALSYM ERROR_INVALID_ADDRESS}
 
2125
 
 
2126
//
 
2127
// MessageId: ERROR_ARITHMETIC_OVERFLOW
 
2128
//
 
2129
// MessageText:
 
2130
//
 
2131
//  Arithmetic result exceeded 32 bits.
 
2132
//
 
2133
  ERROR_ARITHMETIC_OVERFLOW = DWORD(534);
 
2134
  {$EXTERNALSYM ERROR_ARITHMETIC_OVERFLOW}
 
2135
 
 
2136
//
 
2137
// MessageId: ERROR_PIPE_CONNECTED
 
2138
//
 
2139
// MessageText:
 
2140
//
 
2141
//  There is a process on other end of the pipe.
 
2142
//
 
2143
  ERROR_PIPE_CONNECTED = DWORD(535);
 
2144
  {$EXTERNALSYM ERROR_PIPE_CONNECTED}
 
2145
 
 
2146
//
 
2147
// MessageId: ERROR_PIPE_LISTENING
 
2148
//
 
2149
// MessageText:
 
2150
//
 
2151
//  Waiting for a process to open the other end of the pipe.
 
2152
//
 
2153
  ERROR_PIPE_LISTENING = DWORD(536);
 
2154
  {$EXTERNALSYM ERROR_PIPE_LISTENING}
 
2155
 
 
2156
//
 
2157
// MessageId: ERROR_EA_ACCESS_DENIED
 
2158
//
 
2159
// MessageText:
 
2160
//
 
2161
//  Access to the extended attribute was denied.
 
2162
//
 
2163
  ERROR_EA_ACCESS_DENIED = DWORD(994);
 
2164
  {$EXTERNALSYM ERROR_EA_ACCESS_DENIED}
 
2165
 
 
2166
//
 
2167
// MessageId: ERROR_OPERATION_ABORTED
 
2168
//
 
2169
// MessageText:
 
2170
//
 
2171
//  The I/O operation has been aborted because of either a thread exit or an application request.
 
2172
//
 
2173
  ERROR_OPERATION_ABORTED = DWORD(995);
 
2174
  {$EXTERNALSYM ERROR_OPERATION_ABORTED}
 
2175
 
 
2176
//
 
2177
// MessageId: ERROR_IO_INCOMPLETE
 
2178
//
 
2179
// MessageText:
 
2180
//
 
2181
//  Overlapped I/O event is not in a signaled state.
 
2182
//
 
2183
  ERROR_IO_INCOMPLETE = DWORD(996);
 
2184
  {$EXTERNALSYM ERROR_IO_INCOMPLETE}
 
2185
 
 
2186
//
 
2187
// MessageId: ERROR_IO_PENDING
 
2188
//
 
2189
// MessageText:
 
2190
//
 
2191
//  Overlapped I/O operation is in progress.
 
2192
//
 
2193
  ERROR_IO_PENDING = DWORD(997);  // dderror
 
2194
  {$EXTERNALSYM ERROR_IO_PENDING}
 
2195
 
 
2196
//
 
2197
// MessageId: ERROR_NOACCESS
 
2198
//
 
2199
// MessageText:
 
2200
//
 
2201
//  Invalid access to memory location.
 
2202
//
 
2203
  ERROR_NOACCESS = DWORD(998);
 
2204
  {$EXTERNALSYM ERROR_NOACCESS}
 
2205
 
 
2206
//
 
2207
// MessageId: ERROR_SWAPERROR
 
2208
//
 
2209
// MessageText:
 
2210
//
 
2211
//  Error performing inpage operation.
 
2212
//
 
2213
  ERROR_SWAPERROR = DWORD(999);
 
2214
  {$EXTERNALSYM ERROR_SWAPERROR}
 
2215
 
 
2216
//
 
2217
// MessageId: ERROR_STACK_OVERFLOW
 
2218
//
 
2219
// MessageText:
 
2220
//
 
2221
//  Recursion too deep; the stack overflowed.
 
2222
//
 
2223
  ERROR_STACK_OVERFLOW = DWORD(1001);
 
2224
  {$EXTERNALSYM ERROR_STACK_OVERFLOW}
 
2225
 
 
2226
//
 
2227
// MessageId: ERROR_INVALID_MESSAGE
 
2228
//
 
2229
// MessageText:
 
2230
//
 
2231
//  The window cannot act on the sent message.
 
2232
//
 
2233
  ERROR_INVALID_MESSAGE = DWORD(1002);
 
2234
  {$EXTERNALSYM ERROR_INVALID_MESSAGE}
 
2235
 
 
2236
//
 
2237
// MessageId: ERROR_CAN_NOT_COMPLETE
 
2238
//
 
2239
// MessageText:
 
2240
//
 
2241
//  Cannot complete this function.
 
2242
//
 
2243
  ERROR_CAN_NOT_COMPLETE = DWORD(1003);
 
2244
  {$EXTERNALSYM ERROR_CAN_NOT_COMPLETE}
 
2245
 
 
2246
//
 
2247
// MessageId: ERROR_INVALID_FLAGS
 
2248
//
 
2249
// MessageText:
 
2250
//
 
2251
//  Invalid flags.
 
2252
//
 
2253
  ERROR_INVALID_FLAGS = DWORD(1004);
 
2254
  {$EXTERNALSYM ERROR_INVALID_FLAGS}
 
2255
 
 
2256
//
 
2257
// MessageId: ERROR_UNRECOGNIZED_VOLUME
 
2258
//
 
2259
// MessageText:
 
2260
//
 
2261
//  The volume does not contain a recognized file system.
 
2262
//  Please make sure that all required file system drivers are loaded and that the volume is not corrupted.
 
2263
//
 
2264
  ERROR_UNRECOGNIZED_VOLUME = DWORD(1005);
 
2265
  {$EXTERNALSYM ERROR_UNRECOGNIZED_VOLUME}
 
2266
 
 
2267
//
 
2268
// MessageId: ERROR_FILE_INVALID
 
2269
//
 
2270
// MessageText:
 
2271
//
 
2272
//  The volume for a file has been externally altered so that the opened file is no longer valid.
 
2273
//
 
2274
  ERROR_FILE_INVALID = DWORD(1006);
 
2275
  {$EXTERNALSYM ERROR_FILE_INVALID}
 
2276
 
 
2277
//
 
2278
// MessageId: ERROR_FULLSCREEN_MODE
 
2279
//
 
2280
// MessageText:
 
2281
//
 
2282
//  The requested operation cannot be performed in full-screen mode.
 
2283
//
 
2284
  ERROR_FULLSCREEN_MODE = DWORD(1007);
 
2285
  {$EXTERNALSYM ERROR_FULLSCREEN_MODE}
 
2286
 
 
2287
//
 
2288
// MessageId: ERROR_NO_TOKEN
 
2289
//
 
2290
// MessageText:
 
2291
//
 
2292
//  An attempt was made to reference a token that does not exist.
 
2293
//
 
2294
  ERROR_NO_TOKEN = DWORD(1008);
 
2295
  {$EXTERNALSYM ERROR_NO_TOKEN}
 
2296
 
 
2297
//
 
2298
// MessageId: ERROR_BADDB
 
2299
//
 
2300
// MessageText:
 
2301
//
 
2302
//  The configuration registry database is corrupt.
 
2303
//
 
2304
  ERROR_BADDB = DWORD(1009);
 
2305
  {$EXTERNALSYM ERROR_BADDB}
 
2306
 
 
2307
//
 
2308
// MessageId: ERROR_BADKEY
 
2309
//
 
2310
// MessageText:
 
2311
//
 
2312
//  The configuration registry key is invalid.
 
2313
//
 
2314
  ERROR_BADKEY = DWORD(1010);
 
2315
  {$EXTERNALSYM ERROR_BADKEY}
 
2316
 
 
2317
//
 
2318
// MessageId: ERROR_CANTOPEN
 
2319
//
 
2320
// MessageText:
 
2321
//
 
2322
//  The configuration registry key could not be opened.
 
2323
//
 
2324
  ERROR_CANTOPEN = DWORD(1011);
 
2325
  {$EXTERNALSYM ERROR_CANTOPEN}
 
2326
 
 
2327
//
 
2328
// MessageId: ERROR_CANTREAD
 
2329
//
 
2330
// MessageText:
 
2331
//
 
2332
//  The configuration registry key could not be read.
 
2333
//
 
2334
  ERROR_CANTREAD = DWORD(1012);
 
2335
  {$EXTERNALSYM ERROR_CANTREAD}
 
2336
 
 
2337
//
 
2338
// MessageId: ERROR_CANTWRITE
 
2339
//
 
2340
// MessageText:
 
2341
//
 
2342
//  The configuration registry key could not be written.
 
2343
//
 
2344
  ERROR_CANTWRITE = DWORD(1013);
 
2345
  {$EXTERNALSYM ERROR_CANTWRITE}
 
2346
 
 
2347
//
 
2348
// MessageId: ERROR_REGISTRY_RECOVERED
 
2349
//
 
2350
// MessageText:
 
2351
//
 
2352
//  One of the files in the registry database had to be recovered by use of a log or alternate copy. The recovery was successful.
 
2353
//
 
2354
  ERROR_REGISTRY_RECOVERED = DWORD(1014);
 
2355
  {$EXTERNALSYM ERROR_REGISTRY_RECOVERED}
 
2356
 
 
2357
//
 
2358
// MessageId: ERROR_REGISTRY_CORRUPT
 
2359
//
 
2360
// MessageText:
 
2361
//
 
2362
//  The registry is corrupted. The structure of one of the files containing registry data is corrupted, or the system's memory image of the file is corrupted, or the file could not be recovered because the alternate copy or log was absent or corrupted.
 
2363
//
 
2364
  ERROR_REGISTRY_CORRUPT = DWORD(1015);
 
2365
  {$EXTERNALSYM ERROR_REGISTRY_CORRUPT}
 
2366
 
 
2367
//
 
2368
// MessageId: ERROR_REGISTRY_IO_FAILED
 
2369
//
 
2370
// MessageText:
 
2371
//
 
2372
//  An I/O operation initiated by the registry failed unrecoverably. The registry could not read in, or write out, or flush, one of the files that contain the system's image of the registry.
 
2373
//
 
2374
  ERROR_REGISTRY_IO_FAILED = DWORD(1016);
 
2375
  {$EXTERNALSYM ERROR_REGISTRY_IO_FAILED}
 
2376
 
 
2377
//
 
2378
// MessageId: ERROR_NOT_REGISTRY_FILE
 
2379
//
 
2380
// MessageText:
 
2381
//
 
2382
//  The system has attempted to load or restore a file into the registry, but the specified file is not in a registry file format.
 
2383
//
 
2384
  ERROR_NOT_REGISTRY_FILE = DWORD(1017);
 
2385
  {$EXTERNALSYM ERROR_NOT_REGISTRY_FILE}
 
2386
 
 
2387
//
 
2388
// MessageId: ERROR_KEY_DELETED
 
2389
//
 
2390
// MessageText:
 
2391
//
 
2392
//  Illegal operation attempted on a registry key that has been marked for deletion.
 
2393
//
 
2394
  ERROR_KEY_DELETED = DWORD(1018);
 
2395
  {$EXTERNALSYM ERROR_KEY_DELETED}
 
2396
 
 
2397
//
 
2398
// MessageId: ERROR_NO_LOG_SPACE
 
2399
//
 
2400
// MessageText:
 
2401
//
 
2402
//  System could not allocate the required space in a registry log.
 
2403
//
 
2404
  ERROR_NO_LOG_SPACE = DWORD(1019);
 
2405
  {$EXTERNALSYM ERROR_NO_LOG_SPACE}
 
2406
 
 
2407
//
 
2408
// MessageId: ERROR_KEY_HAS_CHILDREN
 
2409
//
 
2410
// MessageText:
 
2411
//
 
2412
//  Cannot create a symbolic link in a registry key that already has subkeys or values.
 
2413
//
 
2414
  ERROR_KEY_HAS_CHILDREN = DWORD(1020);
 
2415
  {$EXTERNALSYM ERROR_KEY_HAS_CHILDREN}
 
2416
 
 
2417
//
 
2418
// MessageId: ERROR_CHILD_MUST_BE_VOLATILE
 
2419
//
 
2420
// MessageText:
 
2421
//
 
2422
//  Cannot create a stable subkey under a volatile parent key.
 
2423
//
 
2424
  ERROR_CHILD_MUST_BE_VOLATILE = DWORD(1021);
 
2425
  {$EXTERNALSYM ERROR_CHILD_MUST_BE_VOLATILE}
 
2426
 
 
2427
//
 
2428
// MessageId: ERROR_NOTIFY_ENUM_DIR
 
2429
//
 
2430
// MessageText:
 
2431
//
 
2432
//  A notify change request is being completed and the information is not being returned in the caller's buffer. The caller now needs to enumerate the files to find the changes.
 
2433
//
 
2434
  ERROR_NOTIFY_ENUM_DIR = DWORD(1022);
 
2435
  {$EXTERNALSYM ERROR_NOTIFY_ENUM_DIR}
 
2436
 
 
2437
//
 
2438
// MessageId: ERROR_DEPENDENT_SERVICES_RUNNING
 
2439
//
 
2440
// MessageText:
 
2441
//
 
2442
//  A stop control has been sent to a service that other running services are dependent on.
 
2443
//
 
2444
  ERROR_DEPENDENT_SERVICES_RUNNING = DWORD(1051);
 
2445
  {$EXTERNALSYM ERROR_DEPENDENT_SERVICES_RUNNING}
 
2446
 
 
2447
//
 
2448
// MessageId: ERROR_INVALID_SERVICE_CONTROL
 
2449
//
 
2450
// MessageText:
 
2451
//
 
2452
//  The requested control is not valid for this service.
 
2453
//
 
2454
  ERROR_INVALID_SERVICE_CONTROL = DWORD(1052);
 
2455
  {$EXTERNALSYM ERROR_INVALID_SERVICE_CONTROL}
 
2456
 
 
2457
//
 
2458
// MessageId: ERROR_SERVICE_REQUEST_TIMEOUT
 
2459
//
 
2460
// MessageText:
 
2461
//
 
2462
//  The service did not respond to the start or control request in a timely fashion.
 
2463
//
 
2464
  ERROR_SERVICE_REQUEST_TIMEOUT = DWORD(1053);
 
2465
  {$EXTERNALSYM ERROR_SERVICE_REQUEST_TIMEOUT}
 
2466
 
 
2467
//
 
2468
// MessageId: ERROR_SERVICE_NO_THREAD
 
2469
//
 
2470
// MessageText:
 
2471
//
 
2472
//  A thread could not be created for the service.
 
2473
//
 
2474
  ERROR_SERVICE_NO_THREAD = DWORD(1054);
 
2475
  {$EXTERNALSYM ERROR_SERVICE_NO_THREAD}
 
2476
 
 
2477
//
 
2478
// MessageId: ERROR_SERVICE_DATABASE_LOCKED
 
2479
//
 
2480
// MessageText:
 
2481
//
 
2482
//  The service database is locked.
 
2483
//
 
2484
  ERROR_SERVICE_DATABASE_LOCKED = DWORD(1055);
 
2485
  {$EXTERNALSYM ERROR_SERVICE_DATABASE_LOCKED}
 
2486
 
 
2487
//
 
2488
// MessageId: ERROR_SERVICE_ALREADY_RUNNING
 
2489
//
 
2490
// MessageText:
 
2491
//
 
2492
//  An instance of the service is already running.
 
2493
//
 
2494
  ERROR_SERVICE_ALREADY_RUNNING = DWORD(1056);
 
2495
  {$EXTERNALSYM ERROR_SERVICE_ALREADY_RUNNING}
 
2496
 
 
2497
//
 
2498
// MessageId: ERROR_INVALID_SERVICE_ACCOUNT
 
2499
//
 
2500
// MessageText:
 
2501
//
 
2502
//  The account name is invalid or does not exist, or the password is invalid for the account name specified.
 
2503
//
 
2504
  ERROR_INVALID_SERVICE_ACCOUNT = DWORD(1057);
 
2505
  {$EXTERNALSYM ERROR_INVALID_SERVICE_ACCOUNT}
 
2506
 
 
2507
//
 
2508
// MessageId: ERROR_SERVICE_DISABLED
 
2509
//
 
2510
// MessageText:
 
2511
//
 
2512
//  The service cannot be started, either because it is disabled or because it has no enabled devices associated with it.
 
2513
//
 
2514
  ERROR_SERVICE_DISABLED = DWORD(1058);
 
2515
  {$EXTERNALSYM ERROR_SERVICE_DISABLED}
 
2516
 
 
2517
//
 
2518
// MessageId: ERROR_CIRCULAR_DEPENDENCY
 
2519
//
 
2520
// MessageText:
 
2521
//
 
2522
//  Circular service dependency was specified.
 
2523
//
 
2524
  ERROR_CIRCULAR_DEPENDENCY = DWORD(1059);
 
2525
  {$EXTERNALSYM ERROR_CIRCULAR_DEPENDENCY}
 
2526
 
 
2527
//
 
2528
// MessageId: ERROR_SERVICE_DOES_NOT_EXIST
 
2529
//
 
2530
// MessageText:
 
2531
//
 
2532
//  The specified service does not exist as an installed service.
 
2533
//
 
2534
  ERROR_SERVICE_DOES_NOT_EXIST = DWORD(1060);
 
2535
  {$EXTERNALSYM ERROR_SERVICE_DOES_NOT_EXIST}
 
2536
 
 
2537
//
 
2538
// MessageId: ERROR_SERVICE_CANNOT_ACCEPT_CTRL
 
2539
//
 
2540
// MessageText:
 
2541
//
 
2542
//  The service cannot accept control messages at this time.
 
2543
//
 
2544
  ERROR_SERVICE_CANNOT_ACCEPT_CTRL = DWORD(1061);
 
2545
  {$EXTERNALSYM ERROR_SERVICE_CANNOT_ACCEPT_CTRL}
 
2546
 
 
2547
//
 
2548
// MessageId: ERROR_SERVICE_NOT_ACTIVE
 
2549
//
 
2550
// MessageText:
 
2551
//
 
2552
//  The service has not been started.
 
2553
//
 
2554
  ERROR_SERVICE_NOT_ACTIVE = DWORD(1062);
 
2555
  {$EXTERNALSYM ERROR_SERVICE_NOT_ACTIVE}
 
2556
 
 
2557
//
 
2558
// MessageId: ERROR_FAILED_SERVICE_CONTROLLER_CONNECT
 
2559
//
 
2560
// MessageText:
 
2561
//
 
2562
//  The service process could not connect to the service controller.
 
2563
//
 
2564
  ERROR_FAILED_SERVICE_CONTROLLER_CONNECT = DWORD(1063);
 
2565
  {$EXTERNALSYM ERROR_FAILED_SERVICE_CONTROLLER_CONNECT}
 
2566
 
 
2567
//
 
2568
// MessageId: ERROR_EXCEPTION_IN_SERVICE
 
2569
//
 
2570
// MessageText:
 
2571
//
 
2572
//  An exception occurred in the service when handling the control request.
 
2573
//
 
2574
  ERROR_EXCEPTION_IN_SERVICE = DWORD(1064);
 
2575
  {$EXTERNALSYM ERROR_EXCEPTION_IN_SERVICE}
 
2576
 
 
2577
//
 
2578
// MessageId: ERROR_DATABASE_DOES_NOT_EXIST
 
2579
//
 
2580
// MessageText:
 
2581
//
 
2582
//  The database specified does not exist.
 
2583
//
 
2584
  ERROR_DATABASE_DOES_NOT_EXIST = DWORD(1065);
 
2585
  {$EXTERNALSYM ERROR_DATABASE_DOES_NOT_EXIST}
 
2586
 
 
2587
//
 
2588
// MessageId: ERROR_SERVICE_SPECIFIC_ERROR
 
2589
//
 
2590
// MessageText:
 
2591
//
 
2592
//  The service has returned a service-specific error code.
 
2593
//
 
2594
  ERROR_SERVICE_SPECIFIC_ERROR = DWORD(1066);
 
2595
  {$EXTERNALSYM ERROR_SERVICE_SPECIFIC_ERROR}
 
2596
 
 
2597
//
 
2598
// MessageId: ERROR_PROCESS_ABORTED
 
2599
//
 
2600
// MessageText:
 
2601
//
 
2602
//  The process terminated unexpectedly.
 
2603
//
 
2604
  ERROR_PROCESS_ABORTED = DWORD(1067);
 
2605
  {$EXTERNALSYM ERROR_PROCESS_ABORTED}
 
2606
 
 
2607
//
 
2608
// MessageId: ERROR_SERVICE_DEPENDENCY_FAIL
 
2609
//
 
2610
// MessageText:
 
2611
//
 
2612
//  The dependency service or group failed to start.
 
2613
//
 
2614
  ERROR_SERVICE_DEPENDENCY_FAIL = DWORD(1068);
 
2615
  {$EXTERNALSYM ERROR_SERVICE_DEPENDENCY_FAIL}
 
2616
 
 
2617
//
 
2618
// MessageId: ERROR_SERVICE_LOGON_FAILED
 
2619
//
 
2620
// MessageText:
 
2621
//
 
2622
//  The service did not start due to a logon failure.
 
2623
//
 
2624
  ERROR_SERVICE_LOGON_FAILED = DWORD(1069);
 
2625
  {$EXTERNALSYM ERROR_SERVICE_LOGON_FAILED}
 
2626
 
 
2627
//
 
2628
// MessageId: ERROR_SERVICE_START_HANG
 
2629
//
 
2630
// MessageText:
 
2631
//
 
2632
//  After starting, the service hung in a start-pending state.
 
2633
//
 
2634
  ERROR_SERVICE_START_HANG = DWORD(1070);
 
2635
  {$EXTERNALSYM ERROR_SERVICE_START_HANG}
 
2636
 
 
2637
//
 
2638
// MessageId: ERROR_INVALID_SERVICE_LOCK
 
2639
//
 
2640
// MessageText:
 
2641
//
 
2642
//  The specified service database lock is invalid.
 
2643
//
 
2644
  ERROR_INVALID_SERVICE_LOCK = DWORD(1071);
 
2645
  {$EXTERNALSYM ERROR_INVALID_SERVICE_LOCK}
 
2646
 
 
2647
//
 
2648
// MessageId: ERROR_SERVICE_MARKED_FOR_DELETE
 
2649
//
 
2650
// MessageText:
 
2651
//
 
2652
//  The specified service has been marked for deletion.
 
2653
//
 
2654
  ERROR_SERVICE_MARKED_FOR_DELETE = DWORD(1072);
 
2655
  {$EXTERNALSYM ERROR_SERVICE_MARKED_FOR_DELETE}
 
2656
 
 
2657
//
 
2658
// MessageId: ERROR_SERVICE_EXISTS
 
2659
//
 
2660
// MessageText:
 
2661
//
 
2662
//  The specified service already exists.
 
2663
//
 
2664
  ERROR_SERVICE_EXISTS = DWORD(1073);
 
2665
  {$EXTERNALSYM ERROR_SERVICE_EXISTS}
 
2666
 
 
2667
//
 
2668
// MessageId: ERROR_ALREADY_RUNNING_LKG
 
2669
//
 
2670
// MessageText:
 
2671
//
 
2672
//  The system is currently running with the last-known-good configuration.
 
2673
//
 
2674
  ERROR_ALREADY_RUNNING_LKG = DWORD(1074);
 
2675
  {$EXTERNALSYM ERROR_ALREADY_RUNNING_LKG}
 
2676
 
 
2677
//
 
2678
// MessageId: ERROR_SERVICE_DEPENDENCY_DELETED
 
2679
//
 
2680
// MessageText:
 
2681
//
 
2682
//  The dependency service does not exist or has been marked for deletion.
 
2683
//
 
2684
  ERROR_SERVICE_DEPENDENCY_DELETED = DWORD(1075);
 
2685
  {$EXTERNALSYM ERROR_SERVICE_DEPENDENCY_DELETED}
 
2686
 
 
2687
//
 
2688
// MessageId: ERROR_BOOT_ALREADY_ACCEPTED
 
2689
//
 
2690
// MessageText:
 
2691
//
 
2692
//  The current boot has already been accepted for use as the last-known-good control set.
 
2693
//
 
2694
  ERROR_BOOT_ALREADY_ACCEPTED = DWORD(1076);
 
2695
  {$EXTERNALSYM ERROR_BOOT_ALREADY_ACCEPTED}
 
2696
 
 
2697
//
 
2698
// MessageId: ERROR_SERVICE_NEVER_STARTED
 
2699
//
 
2700
// MessageText:
 
2701
//
 
2702
//  No attempts to start the service have been made since the last boot.
 
2703
//
 
2704
  ERROR_SERVICE_NEVER_STARTED = DWORD(1077);
 
2705
  {$EXTERNALSYM ERROR_SERVICE_NEVER_STARTED}
 
2706
 
 
2707
//
 
2708
// MessageId: ERROR_DUPLICATE_SERVICE_NAME
 
2709
//
 
2710
// MessageText:
 
2711
//
 
2712
//  The name is already in use as either a service name or a service display name.
 
2713
//
 
2714
  ERROR_DUPLICATE_SERVICE_NAME = DWORD(1078);
 
2715
  {$EXTERNALSYM ERROR_DUPLICATE_SERVICE_NAME}
 
2716
 
 
2717
//
 
2718
// MessageId: ERROR_DIFFERENT_SERVICE_ACCOUNT
 
2719
//
 
2720
// MessageText:
 
2721
//
 
2722
//  The account specified for this service is different from the account specified for other services running in the same process.
 
2723
//
 
2724
  ERROR_DIFFERENT_SERVICE_ACCOUNT = DWORD(1079);
 
2725
  {$EXTERNALSYM ERROR_DIFFERENT_SERVICE_ACCOUNT}
 
2726
 
 
2727
//
 
2728
// MessageId: ERROR_CANNOT_DETECT_DRIVER_FAILURE
 
2729
//
 
2730
// MessageText:
 
2731
//
 
2732
//  Failure actions can only be set for Win32 services, not for drivers.
 
2733
//
 
2734
  ERROR_CANNOT_DETECT_DRIVER_FAILURE = DWORD(1080);
 
2735
  {$EXTERNALSYM ERROR_CANNOT_DETECT_DRIVER_FAILURE}
 
2736
 
 
2737
//
 
2738
// MessageId: ERROR_CANNOT_DETECT_PROCESS_ABORT
 
2739
//
 
2740
// MessageText:
 
2741
//
 
2742
//  This service runs in the same process as the service control manager.
 
2743
//  Therefore, the service control manager cannot take action if this service's process terminates unexpectedly.
 
2744
//
 
2745
  ERROR_CANNOT_DETECT_PROCESS_ABORT = DWORD(1081);
 
2746
  {$EXTERNALSYM ERROR_CANNOT_DETECT_PROCESS_ABORT}
 
2747
 
 
2748
//
 
2749
// MessageId: ERROR_NO_RECOVERY_PROGRAM
 
2750
//
 
2751
// MessageText:
 
2752
//
 
2753
//  No recovery program has been configured for this service.
 
2754
//
 
2755
  ERROR_NO_RECOVERY_PROGRAM = DWORD(1082);
 
2756
  {$EXTERNALSYM ERROR_NO_RECOVERY_PROGRAM}
 
2757
 
 
2758
//
 
2759
// MessageId: ERROR_SERVICE_NOT_IN_EXE
 
2760
//
 
2761
// MessageText:
 
2762
//
 
2763
//  The executable program that this service is configured to run in does not implement the service.
 
2764
//
 
2765
  ERROR_SERVICE_NOT_IN_EXE = DWORD(1083);
 
2766
  {$EXTERNALSYM ERROR_SERVICE_NOT_IN_EXE}
 
2767
 
 
2768
//
 
2769
// MessageId: ERROR_NOT_SAFEBOOT_SERVICE
 
2770
//
 
2771
// MessageText:
 
2772
//
 
2773
//  This service cannot be started in Safe Mode
 
2774
//
 
2775
  ERROR_NOT_SAFEBOOT_SERVICE = DWORD(1084);
 
2776
  {$EXTERNALSYM ERROR_NOT_SAFEBOOT_SERVICE}
 
2777
 
 
2778
//
 
2779
// MessageId: ERROR_END_OF_MEDIA
 
2780
//
 
2781
// MessageText:
 
2782
//
 
2783
//  The physical end of the tape has been reached.
 
2784
//
 
2785
  ERROR_END_OF_MEDIA = DWORD(1100);
 
2786
  {$EXTERNALSYM ERROR_END_OF_MEDIA}
 
2787
 
 
2788
//
 
2789
// MessageId: ERROR_FILEMARK_DETECTED
 
2790
//
 
2791
// MessageText:
 
2792
//
 
2793
//  A tape access reached a filemark.
 
2794
//
 
2795
  ERROR_FILEMARK_DETECTED = DWORD(1101);
 
2796
  {$EXTERNALSYM ERROR_FILEMARK_DETECTED}
 
2797
 
 
2798
//
 
2799
// MessageId: ERROR_BEGINNING_OF_MEDIA
 
2800
//
 
2801
// MessageText:
 
2802
//
 
2803
//  The beginning of the tape or a partition was encountered.
 
2804
//
 
2805
  ERROR_BEGINNING_OF_MEDIA = DWORD(1102);
 
2806
  {$EXTERNALSYM ERROR_BEGINNING_OF_MEDIA}
 
2807
 
 
2808
//
 
2809
// MessageId: ERROR_SETMARK_DETECTED
 
2810
//
 
2811
// MessageText:
 
2812
//
 
2813
//  A tape access reached the end of a set of files.
 
2814
//
 
2815
  ERROR_SETMARK_DETECTED = DWORD(1103);
 
2816
  {$EXTERNALSYM ERROR_SETMARK_DETECTED}
 
2817
 
 
2818
//
 
2819
// MessageId: ERROR_NO_DATA_DETECTED
 
2820
//
 
2821
// MessageText:
 
2822
//
 
2823
//  No more data is on the tape.
 
2824
//
 
2825
  ERROR_NO_DATA_DETECTED = DWORD(1104);
 
2826
  {$EXTERNALSYM ERROR_NO_DATA_DETECTED}
 
2827
 
 
2828
//
 
2829
// MessageId: ERROR_PARTITION_FAILURE
 
2830
//
 
2831
// MessageText:
 
2832
//
 
2833
//  Tape could not be partitioned.
 
2834
//
 
2835
  ERROR_PARTITION_FAILURE = DWORD(1105);
 
2836
  {$EXTERNALSYM ERROR_PARTITION_FAILURE}
 
2837
 
 
2838
//
 
2839
// MessageId: ERROR_INVALID_BLOCK_LENGTH
 
2840
//
 
2841
// MessageText:
 
2842
//
 
2843
//  When accessing a new tape of a multivolume partition, the current block size is incorrect.
 
2844
//
 
2845
  ERROR_INVALID_BLOCK_LENGTH = DWORD(1106);
 
2846
  {$EXTERNALSYM ERROR_INVALID_BLOCK_LENGTH}
 
2847
 
 
2848
//
 
2849
// MessageId: ERROR_DEVICE_NOT_PARTITIONED
 
2850
//
 
2851
// MessageText:
 
2852
//
 
2853
//  Tape partition information could not be found when loading a tape.
 
2854
//
 
2855
  ERROR_DEVICE_NOT_PARTITIONED = DWORD(1107);
 
2856
  {$EXTERNALSYM ERROR_DEVICE_NOT_PARTITIONED}
 
2857
 
 
2858
//
 
2859
// MessageId: ERROR_UNABLE_TO_LOCK_MEDIA
 
2860
//
 
2861
// MessageText:
 
2862
//
 
2863
//  Unable to lock the media eject mechanism.
 
2864
//
 
2865
  ERROR_UNABLE_TO_LOCK_MEDIA = DWORD(1108);
 
2866
  {$EXTERNALSYM ERROR_UNABLE_TO_LOCK_MEDIA}
 
2867
 
 
2868
//
 
2869
// MessageId: ERROR_UNABLE_TO_UNLOAD_MEDIA
 
2870
//
 
2871
// MessageText:
 
2872
//
 
2873
//  Unable to unload the media.
 
2874
//
 
2875
  ERROR_UNABLE_TO_UNLOAD_MEDIA = DWORD(1109);
 
2876
  {$EXTERNALSYM ERROR_UNABLE_TO_UNLOAD_MEDIA}
 
2877
 
 
2878
//
 
2879
// MessageId: ERROR_MEDIA_CHANGED
 
2880
//
 
2881
// MessageText:
 
2882
//
 
2883
//  The media in the drive may have changed.
 
2884
//
 
2885
  ERROR_MEDIA_CHANGED = DWORD(1110);
 
2886
  {$EXTERNALSYM ERROR_MEDIA_CHANGED}
 
2887
 
 
2888
//
 
2889
// MessageId: ERROR_BUS_RESET
 
2890
//
 
2891
// MessageText:
 
2892
//
 
2893
//  The I/O bus was reset.
 
2894
//
 
2895
  ERROR_BUS_RESET = DWORD(1111);
 
2896
  {$EXTERNALSYM ERROR_BUS_RESET}
 
2897
 
 
2898
//
 
2899
// MessageId: ERROR_NO_MEDIA_IN_DRIVE
 
2900
//
 
2901
// MessageText:
 
2902
//
 
2903
//  No media in drive.
 
2904
//
 
2905
  ERROR_NO_MEDIA_IN_DRIVE = DWORD(1112);
 
2906
  {$EXTERNALSYM ERROR_NO_MEDIA_IN_DRIVE}
 
2907
 
 
2908
//
 
2909
// MessageId: ERROR_NO_UNICODE_TRANSLATION
 
2910
//
 
2911
// MessageText:
 
2912
//
 
2913
//  No mapping for the Unicode character exists in the target multi-byte code page.
 
2914
//
 
2915
  ERROR_NO_UNICODE_TRANSLATION = DWORD(1113);
 
2916
  {$EXTERNALSYM ERROR_NO_UNICODE_TRANSLATION}
 
2917
 
 
2918
//
 
2919
// MessageId: ERROR_DLL_INIT_FAILED
 
2920
//
 
2921
// MessageText:
 
2922
//
 
2923
//  A dynamic link library (DLL) initialization routine failed.
 
2924
//
 
2925
  ERROR_DLL_INIT_FAILED = DWORD(1114);
 
2926
  {$EXTERNALSYM ERROR_DLL_INIT_FAILED}
 
2927
 
 
2928
//
 
2929
// MessageId: ERROR_SHUTDOWN_IN_PROGRESS
 
2930
//
 
2931
// MessageText:
 
2932
//
 
2933
//  A system shutdown is in progress.
 
2934
//
 
2935
  ERROR_SHUTDOWN_IN_PROGRESS = DWORD(1115);
 
2936
  {$EXTERNALSYM ERROR_SHUTDOWN_IN_PROGRESS}
 
2937
 
 
2938
//
 
2939
// MessageId: ERROR_NO_SHUTDOWN_IN_PROGRESS
 
2940
//
 
2941
// MessageText:
 
2942
//
 
2943
//  Unable to abort the system shutdown because no shutdown was in progress.
 
2944
//
 
2945
  ERROR_NO_SHUTDOWN_IN_PROGRESS = DWORD(1116);
 
2946
  {$EXTERNALSYM ERROR_NO_SHUTDOWN_IN_PROGRESS}
 
2947
 
 
2948
//
 
2949
// MessageId: ERROR_IO_DEVICE
 
2950
//
 
2951
// MessageText:
 
2952
//
 
2953
//  The request could not be performed because of an I/O device error.
 
2954
//
 
2955
  ERROR_IO_DEVICE = DWORD(1117);
 
2956
  {$EXTERNALSYM ERROR_IO_DEVICE}
 
2957
 
 
2958
//
 
2959
// MessageId: ERROR_SERIAL_NO_DEVICE
 
2960
//
 
2961
// MessageText:
 
2962
//
 
2963
//  No serial device was successfully initialized. The serial driver will unload.
 
2964
//
 
2965
  ERROR_SERIAL_NO_DEVICE = DWORD(1118);
 
2966
  {$EXTERNALSYM ERROR_SERIAL_NO_DEVICE}
 
2967
 
 
2968
//
 
2969
// MessageId: ERROR_IRQ_BUSY
 
2970
//
 
2971
// MessageText:
 
2972
//
 
2973
//  Unable to open a device that was sharing an interrupt request (IRQ) with other devices. At least one other device that uses that IRQ was already opened.
 
2974
//
 
2975
  ERROR_IRQ_BUSY = DWORD(1119);
 
2976
  {$EXTERNALSYM ERROR_IRQ_BUSY}
 
2977
 
 
2978
//
 
2979
// MessageId: ERROR_MORE_WRITES
 
2980
//
 
2981
// MessageText:
 
2982
//
 
2983
//  A serial I/O operation was completed by another write to the serial port.
 
2984
//  (The IOCTL_SERIAL_XOFF_COUNTER reached zero.)
 
2985
//
 
2986
  ERROR_MORE_WRITES = DWORD(1120);
 
2987
  {$EXTERNALSYM ERROR_MORE_WRITES}
 
2988
 
 
2989
//
 
2990
// MessageId: ERROR_COUNTER_TIMEOUT
 
2991
//
 
2992
// MessageText:
 
2993
//
 
2994
//  A serial I/O operation completed because the timeout period expired.
 
2995
//  (The IOCTL_SERIAL_XOFF_COUNTER did not reach zero.)
 
2996
//
 
2997
  ERROR_COUNTER_TIMEOUT = DWORD(1121);
 
2998
  {$EXTERNALSYM ERROR_COUNTER_TIMEOUT}
 
2999
 
 
3000
//
 
3001
// MessageId: ERROR_FLOPPY_ID_MARK_NOT_FOUND
 
3002
//
 
3003
// MessageText:
 
3004
//
 
3005
//  No ID address mark was found on the floppy disk.
 
3006
//
 
3007
  ERROR_FLOPPY_ID_MARK_NOT_FOUND = DWORD(1122);
 
3008
  {$EXTERNALSYM ERROR_FLOPPY_ID_MARK_NOT_FOUND}
 
3009
 
 
3010
//
 
3011
// MessageId: ERROR_FLOPPY_WRONG_CYLINDER
 
3012
//
 
3013
// MessageText:
 
3014
//
 
3015
//  Mismatch between the floppy disk sector ID field and the floppy disk controller track address.
 
3016
//
 
3017
  ERROR_FLOPPY_WRONG_CYLINDER = DWORD(1123);
 
3018
  {$EXTERNALSYM ERROR_FLOPPY_WRONG_CYLINDER}
 
3019
 
 
3020
//
 
3021
// MessageId: ERROR_FLOPPY_UNKNOWN_ERROR
 
3022
//
 
3023
// MessageText:
 
3024
//
 
3025
//  The floppy disk controller reported an error that is not recognized by the floppy disk driver.
 
3026
//
 
3027
  ERROR_FLOPPY_UNKNOWN_ERROR = DWORD(1124);
 
3028
  {$EXTERNALSYM ERROR_FLOPPY_UNKNOWN_ERROR}
 
3029
 
 
3030
//
 
3031
// MessageId: ERROR_FLOPPY_BAD_REGISTERS
 
3032
//
 
3033
// MessageText:
 
3034
//
 
3035
//  The floppy disk controller returned inconsistent results in its registers.
 
3036
//
 
3037
  ERROR_FLOPPY_BAD_REGISTERS = DWORD(1125);
 
3038
  {$EXTERNALSYM ERROR_FLOPPY_BAD_REGISTERS}
 
3039
 
 
3040
//
 
3041
// MessageId: ERROR_DISK_RECALIBRATE_FAILED
 
3042
//
 
3043
// MessageText:
 
3044
//
 
3045
//  While accessing the hard disk, a recalibrate operation failed, even after retries.
 
3046
//
 
3047
  ERROR_DISK_RECALIBRATE_FAILED = DWORD(1126);
 
3048
  {$EXTERNALSYM ERROR_DISK_RECALIBRATE_FAILED}
 
3049
 
 
3050
//
 
3051
// MessageId: ERROR_DISK_OPERATION_FAILED
 
3052
//
 
3053
// MessageText:
 
3054
//
 
3055
//  While accessing the hard disk, a disk operation failed even after retries.
 
3056
//
 
3057
  ERROR_DISK_OPERATION_FAILED = DWORD(1127);
 
3058
  {$EXTERNALSYM ERROR_DISK_OPERATION_FAILED}
 
3059
 
 
3060
//
 
3061
// MessageId: ERROR_DISK_RESET_FAILED
 
3062
//
 
3063
// MessageText:
 
3064
//
 
3065
//  While accessing the hard disk, a disk controller reset was needed, but even that failed.
 
3066
//
 
3067
  ERROR_DISK_RESET_FAILED = DWORD(1128);
 
3068
  {$EXTERNALSYM ERROR_DISK_RESET_FAILED}
 
3069
 
 
3070
//
 
3071
// MessageId: ERROR_EOM_OVERFLOW
 
3072
//
 
3073
// MessageText:
 
3074
//
 
3075
//  Physical end of tape encountered.
 
3076
//
 
3077
  ERROR_EOM_OVERFLOW = DWORD(1129);
 
3078
  {$EXTERNALSYM ERROR_EOM_OVERFLOW}
 
3079
 
 
3080
//
 
3081
// MessageId: ERROR_NOT_ENOUGH_SERVER_MEMORY
 
3082
//
 
3083
// MessageText:
 
3084
//
 
3085
//  Not enough server storage is available to process this command.
 
3086
//
 
3087
  ERROR_NOT_ENOUGH_SERVER_MEMORY = DWORD(1130);
 
3088
  {$EXTERNALSYM ERROR_NOT_ENOUGH_SERVER_MEMORY}
 
3089
 
 
3090
//
 
3091
// MessageId: ERROR_POSSIBLE_DEADLOCK
 
3092
//
 
3093
// MessageText:
 
3094
//
 
3095
//  A potential deadlock condition has been detected.
 
3096
//
 
3097
  ERROR_POSSIBLE_DEADLOCK = DWORD(1131);
 
3098
  {$EXTERNALSYM ERROR_POSSIBLE_DEADLOCK}
 
3099
 
 
3100
//
 
3101
// MessageId: ERROR_MAPPED_ALIGNMENT
 
3102
//
 
3103
// MessageText:
 
3104
//
 
3105
//  The base address or the file offset specified does not have the proper alignment.
 
3106
//
 
3107
  ERROR_MAPPED_ALIGNMENT = DWORD(1132);
 
3108
  {$EXTERNALSYM ERROR_MAPPED_ALIGNMENT}
 
3109
 
 
3110
//
 
3111
// MessageId: ERROR_SET_POWER_STATE_VETOED
 
3112
//
 
3113
// MessageText:
 
3114
//
 
3115
//  An attempt to change the system power state was vetoed by another application or driver.
 
3116
//
 
3117
  ERROR_SET_POWER_STATE_VETOED = DWORD(1140);
 
3118
  {$EXTERNALSYM ERROR_SET_POWER_STATE_VETOED}
 
3119
 
 
3120
//
 
3121
// MessageId: ERROR_SET_POWER_STATE_FAILED
 
3122
//
 
3123
// MessageText:
 
3124
//
 
3125
//  The system BIOS failed an attempt to change the system power state.
 
3126
//
 
3127
  ERROR_SET_POWER_STATE_FAILED = DWORD(1141);
 
3128
  {$EXTERNALSYM ERROR_SET_POWER_STATE_FAILED}
 
3129
 
 
3130
//
 
3131
// MessageId: ERROR_TOO_MANY_LINKS
 
3132
//
 
3133
// MessageText:
 
3134
//
 
3135
//  An attempt was made to create more links on a file than the file system supports.
 
3136
//
 
3137
  ERROR_TOO_MANY_LINKS = DWORD(1142);
 
3138
  {$EXTERNALSYM ERROR_TOO_MANY_LINKS}
 
3139
 
 
3140
//
 
3141
// MessageId: ERROR_OLD_WIN_VERSION
 
3142
//
 
3143
// MessageText:
 
3144
//
 
3145
//  The specified program requires a newer version of Windows.
 
3146
//
 
3147
  ERROR_OLD_WIN_VERSION = DWORD(1150);
 
3148
  {$EXTERNALSYM ERROR_OLD_WIN_VERSION}
 
3149
 
 
3150
//
 
3151
// MessageId: ERROR_APP_WRONG_OS
 
3152
//
 
3153
// MessageText:
 
3154
//
 
3155
//  The specified program is not a Windows or MS-DOS program.
 
3156
//
 
3157
  ERROR_APP_WRONG_OS = DWORD(1151);
 
3158
  {$EXTERNALSYM ERROR_APP_WRONG_OS}
 
3159
 
 
3160
//
 
3161
// MessageId: ERROR_SINGLE_INSTANCE_APP
 
3162
//
 
3163
// MessageText:
 
3164
//
 
3165
//  Cannot start more than one instance of the specified program.
 
3166
//
 
3167
  ERROR_SINGLE_INSTANCE_APP = DWORD(1152);
 
3168
  {$EXTERNALSYM ERROR_SINGLE_INSTANCE_APP}
 
3169
 
 
3170
//
 
3171
// MessageId: ERROR_RMODE_APP
 
3172
//
 
3173
// MessageText:
 
3174
//
 
3175
//  The specified program was written for an earlier version of Windows.
 
3176
//
 
3177
  ERROR_RMODE_APP = DWORD(1153);
 
3178
  {$EXTERNALSYM ERROR_RMODE_APP}
 
3179
 
 
3180
//
 
3181
// MessageId: ERROR_INVALID_DLL
 
3182
//
 
3183
// MessageText:
 
3184
//
 
3185
//  One of the library files needed to run this application is damaged.
 
3186
//
 
3187
  ERROR_INVALID_DLL = DWORD(1154);
 
3188
  {$EXTERNALSYM ERROR_INVALID_DLL}
 
3189
 
 
3190
//
 
3191
// MessageId: ERROR_NO_ASSOCIATION
 
3192
//
 
3193
// MessageText:
 
3194
//
 
3195
//  No application is associated with the specified file for this operation.
 
3196
//
 
3197
  ERROR_NO_ASSOCIATION = DWORD(1155);
 
3198
  {$EXTERNALSYM ERROR_NO_ASSOCIATION}
 
3199
 
 
3200
//
 
3201
// MessageId: ERROR_DDE_FAIL
 
3202
//
 
3203
// MessageText:
 
3204
//
 
3205
//  An error occurred in sending the command to the application.
 
3206
//
 
3207
  ERROR_DDE_FAIL = DWORD(1156);
 
3208
  {$EXTERNALSYM ERROR_DDE_FAIL}
 
3209
 
 
3210
//
 
3211
// MessageId: ERROR_DLL_NOT_FOUND
 
3212
//
 
3213
// MessageText:
 
3214
//
 
3215
//  One of the library files needed to run this application cannot be found.
 
3216
//
 
3217
  ERROR_DLL_NOT_FOUND = DWORD(1157);
 
3218
  {$EXTERNALSYM ERROR_DLL_NOT_FOUND}
 
3219
 
 
3220
//
 
3221
// MessageId: ERROR_NO_MORE_USER_HANDLES
 
3222
//
 
3223
// MessageText:
 
3224
//
 
3225
//  The current process has used all of its system allowance of handles for Window Manager objects.
 
3226
//
 
3227
  ERROR_NO_MORE_USER_HANDLES = DWORD(1158);
 
3228
  {$EXTERNALSYM ERROR_NO_MORE_USER_HANDLES}
 
3229
 
 
3230
//
 
3231
// MessageId: ERROR_MESSAGE_SYNC_ONLY
 
3232
//
 
3233
// MessageText:
 
3234
//
 
3235
//  The message can be used only with synchronous operations.
 
3236
//
 
3237
  ERROR_MESSAGE_SYNC_ONLY = DWORD(1159);
 
3238
  {$EXTERNALSYM ERROR_MESSAGE_SYNC_ONLY}
 
3239
 
 
3240
//
 
3241
// MessageId: ERROR_SOURCE_ELEMENT_EMPTY
 
3242
//
 
3243
// MessageText:
 
3244
//
 
3245
//  The indicated source element has no media.
 
3246
//
 
3247
  ERROR_SOURCE_ELEMENT_EMPTY = DWORD(1160);
 
3248
  {$EXTERNALSYM ERROR_SOURCE_ELEMENT_EMPTY}
 
3249
 
 
3250
//
 
3251
// MessageId: ERROR_DESTINATION_ELEMENT_FULL
 
3252
//
 
3253
// MessageText:
 
3254
//
 
3255
//  The indicated destination element already contains media.
 
3256
//
 
3257
  ERROR_DESTINATION_ELEMENT_FULL = DWORD(1161);
 
3258
  {$EXTERNALSYM ERROR_DESTINATION_ELEMENT_FULL}
 
3259
 
 
3260
//
 
3261
// MessageId: ERROR_ILLEGAL_ELEMENT_ADDRESS
 
3262
//
 
3263
// MessageText:
 
3264
//
 
3265
//  The indicated element does not exist.
 
3266
//
 
3267
  ERROR_ILLEGAL_ELEMENT_ADDRESS = DWORD(1162);
 
3268
  {$EXTERNALSYM ERROR_ILLEGAL_ELEMENT_ADDRESS}
 
3269
 
 
3270
//
 
3271
// MessageId: ERROR_MAGAZINE_NOT_PRESENT
 
3272
//
 
3273
// MessageText:
 
3274
//
 
3275
//  The indicated element is part of a magazine that is not present.
 
3276
//
 
3277
  ERROR_MAGAZINE_NOT_PRESENT = DWORD(1163);
 
3278
  {$EXTERNALSYM ERROR_MAGAZINE_NOT_PRESENT}
 
3279
 
 
3280
//
 
3281
// MessageId: ERROR_DEVICE_REINITIALIZATION_NEEDED
 
3282
//
 
3283
// MessageText:
 
3284
//
 
3285
//  The indicated device requires reinitialization due to hardware errors.
 
3286
//
 
3287
  ERROR_DEVICE_REINITIALIZATION_NEEDED = DWORD(1164);  // dderror
 
3288
  {$EXTERNALSYM ERROR_DEVICE_REINITIALIZATION_NEEDED}
 
3289
 
 
3290
//
 
3291
// MessageId: ERROR_DEVICE_REQUIRES_CLEANING
 
3292
//
 
3293
// MessageText:
 
3294
//
 
3295
//  The device has indicated that cleaning is required before further operations are attempted.
 
3296
//
 
3297
  ERROR_DEVICE_REQUIRES_CLEANING = DWORD(1165);
 
3298
  {$EXTERNALSYM ERROR_DEVICE_REQUIRES_CLEANING}
 
3299
 
 
3300
//
 
3301
// MessageId: ERROR_DEVICE_DOOR_OPEN
 
3302
//
 
3303
// MessageText:
 
3304
//
 
3305
//  The device has indicated that its door is open.
 
3306
//
 
3307
  ERROR_DEVICE_DOOR_OPEN = DWORD(1166);
 
3308
  {$EXTERNALSYM ERROR_DEVICE_DOOR_OPEN}
 
3309
 
 
3310
//
 
3311
// MessageId: ERROR_DEVICE_NOT_CONNECTED
 
3312
//
 
3313
// MessageText:
 
3314
//
 
3315
//  The device is not connected.
 
3316
//
 
3317
  ERROR_DEVICE_NOT_CONNECTED = DWORD(1167);
 
3318
  {$EXTERNALSYM ERROR_DEVICE_NOT_CONNECTED}
 
3319
 
 
3320
//
 
3321
// MessageId: ERROR_NOT_FOUND
 
3322
//
 
3323
// MessageText:
 
3324
//
 
3325
//  Element not found.
 
3326
//
 
3327
  ERROR_NOT_FOUND = DWORD(1168);
 
3328
  {$EXTERNALSYM ERROR_NOT_FOUND}
 
3329
 
 
3330
//
 
3331
// MessageId: ERROR_NO_MATCH
 
3332
//
 
3333
// MessageText:
 
3334
//
 
3335
//  There was no match for the specified key in the index.
 
3336
//
 
3337
  ERROR_NO_MATCH = DWORD(1169);
 
3338
  {$EXTERNALSYM ERROR_NO_MATCH}
 
3339
 
 
3340
//
 
3341
// MessageId: ERROR_SET_NOT_FOUND
 
3342
//
 
3343
// MessageText:
 
3344
//
 
3345
//  The property set specified does not exist on the object.
 
3346
//
 
3347
  ERROR_SET_NOT_FOUND = DWORD(1170);
 
3348
  {$EXTERNALSYM ERROR_SET_NOT_FOUND}
 
3349
 
 
3350
//
 
3351
// MessageId: ERROR_POINT_NOT_FOUND
 
3352
//
 
3353
// MessageText:
 
3354
//
 
3355
//  The point passed to GetMouseMovePoints is not in the buffer.
 
3356
//
 
3357
  ERROR_POINT_NOT_FOUND = DWORD(1171);
 
3358
  {$EXTERNALSYM ERROR_POINT_NOT_FOUND}
 
3359
 
 
3360
//
 
3361
// MessageId: ERROR_NO_TRACKING_SERVICE
 
3362
//
 
3363
// MessageText:
 
3364
//
 
3365
//  The tracking (workstation) service is not running.
 
3366
//
 
3367
  ERROR_NO_TRACKING_SERVICE = DWORD(1172);
 
3368
  {$EXTERNALSYM ERROR_NO_TRACKING_SERVICE}
 
3369
 
 
3370
//
 
3371
// MessageId: ERROR_NO_VOLUME_ID
 
3372
//
 
3373
// MessageText:
 
3374
//
 
3375
//  The Volume ID could not be found.
 
3376
//
 
3377
  ERROR_NO_VOLUME_ID = DWORD(1173);
 
3378
  {$EXTERNALSYM ERROR_NO_VOLUME_ID}
 
3379
 
 
3380
//
 
3381
// MessageId: ERROR_UNABLE_TO_REMOVE_REPLACED
 
3382
//
 
3383
// MessageText:
 
3384
//
 
3385
//  Unable to remove the file to be replaced.
 
3386
//
 
3387
  ERROR_UNABLE_TO_REMOVE_REPLACED = DWORD(1175);
 
3388
  {$EXTERNALSYM ERROR_UNABLE_TO_REMOVE_REPLACED}
 
3389
 
 
3390
//
 
3391
// MessageId: ERROR_UNABLE_TO_MOVE_REPLACEMENT
 
3392
//
 
3393
// MessageText:
 
3394
//
 
3395
//  Unable to move the replacement file to the file to be replaced. The file to be replaced has retained its original name.
 
3396
//
 
3397
  ERROR_UNABLE_TO_MOVE_REPLACEMENT = DWORD(1176);
 
3398
  {$EXTERNALSYM ERROR_UNABLE_TO_MOVE_REPLACEMENT}
 
3399
 
 
3400
//
 
3401
// MessageId: ERROR_UNABLE_TO_MOVE_REPLACEMENT_2
 
3402
//
 
3403
// MessageText:
 
3404
//
 
3405
//  Unable to move the replacement file to the file to be replaced. The file to be replaced has been renamed using the backup name.
 
3406
//
 
3407
  ERROR_UNABLE_TO_MOVE_REPLACEMENT_2 = DWORD(1177);
 
3408
  {$EXTERNALSYM ERROR_UNABLE_TO_MOVE_REPLACEMENT_2}
 
3409
 
 
3410
//
 
3411
// MessageId: ERROR_JOURNAL_DELETE_IN_PROGRESS
 
3412
//
 
3413
// MessageText:
 
3414
//
 
3415
//  The volume change journal is being deleted.
 
3416
//
 
3417
  ERROR_JOURNAL_DELETE_IN_PROGRESS = DWORD(1178);
 
3418
  {$EXTERNALSYM ERROR_JOURNAL_DELETE_IN_PROGRESS}
 
3419
 
 
3420
//
 
3421
// MessageId: ERROR_JOURNAL_NOT_ACTIVE
 
3422
//
 
3423
// MessageText:
 
3424
//
 
3425
//  The volume change journal is not active.
 
3426
//
 
3427
  ERROR_JOURNAL_NOT_ACTIVE = DWORD(1179);
 
3428
  {$EXTERNALSYM ERROR_JOURNAL_NOT_ACTIVE}
 
3429
 
 
3430
//
 
3431
// MessageId: ERROR_POTENTIAL_FILE_FOUND
 
3432
//
 
3433
// MessageText:
 
3434
//
 
3435
//  A file was found, but it may not be the correct file.
 
3436
//
 
3437
  ERROR_POTENTIAL_FILE_FOUND = DWORD(1180);
 
3438
  {$EXTERNALSYM ERROR_POTENTIAL_FILE_FOUND}
 
3439
 
 
3440
//
 
3441
// MessageId: ERROR_JOURNAL_ENTRY_DELETED
 
3442
//
 
3443
// MessageText:
 
3444
//
 
3445
//  The journal entry has been deleted from the journal.
 
3446
//
 
3447
  ERROR_JOURNAL_ENTRY_DELETED = DWORD(1181);
 
3448
  {$EXTERNALSYM ERROR_JOURNAL_ENTRY_DELETED}
 
3449
 
 
3450
//
 
3451
// MessageId: ERROR_BAD_DEVICE
 
3452
//
 
3453
// MessageText:
 
3454
//
 
3455
//  The specified device name is invalid.
 
3456
//
 
3457
  ERROR_BAD_DEVICE = DWORD(1200);
 
3458
  {$EXTERNALSYM ERROR_BAD_DEVICE}
 
3459
 
 
3460
//
 
3461
// MessageId: ERROR_CONNECTION_UNAVAIL
 
3462
//
 
3463
// MessageText:
 
3464
//
 
3465
//  The device is not currently connected but it is a remembered connection.
 
3466
//
 
3467
  ERROR_CONNECTION_UNAVAIL = DWORD(1201);
 
3468
  {$EXTERNALSYM ERROR_CONNECTION_UNAVAIL}
 
3469
 
 
3470
//
 
3471
// MessageId: ERROR_DEVICE_ALREADY_REMEMBERED
 
3472
//
 
3473
// MessageText:
 
3474
//
 
3475
//  The local device name has a remembered connection to another network resource.
 
3476
//
 
3477
  ERROR_DEVICE_ALREADY_REMEMBERED = DWORD(1202);
 
3478
  {$EXTERNALSYM ERROR_DEVICE_ALREADY_REMEMBERED}
 
3479
 
 
3480
//
 
3481
// MessageId: ERROR_NO_NET_OR_BAD_PATH
 
3482
//
 
3483
// MessageText:
 
3484
//
 
3485
//  No network provider accepted the given network path.
 
3486
//
 
3487
  ERROR_NO_NET_OR_BAD_PATH = DWORD(1203);
 
3488
  {$EXTERNALSYM ERROR_NO_NET_OR_BAD_PATH}
 
3489
 
 
3490
//
 
3491
// MessageId: ERROR_BAD_PROVIDER
 
3492
//
 
3493
// MessageText:
 
3494
//
 
3495
//  The specified network provider name is invalid.
 
3496
//
 
3497
  ERROR_BAD_PROVIDER = DWORD(1204);
 
3498
  {$EXTERNALSYM ERROR_BAD_PROVIDER}
 
3499
 
 
3500
//
 
3501
// MessageId: ERROR_CANNOT_OPEN_PROFILE
 
3502
//
 
3503
// MessageText:
 
3504
//
 
3505
//  Unable to open the network connection profile.
 
3506
//
 
3507
  ERROR_CANNOT_OPEN_PROFILE = DWORD(1205);
 
3508
  {$EXTERNALSYM ERROR_CANNOT_OPEN_PROFILE}
 
3509
 
 
3510
//
 
3511
// MessageId: ERROR_BAD_PROFILE
 
3512
//
 
3513
// MessageText:
 
3514
//
 
3515
//  The network connection profile is corrupted.
 
3516
//
 
3517
  ERROR_BAD_PROFILE = DWORD(1206);
 
3518
  {$EXTERNALSYM ERROR_BAD_PROFILE}
 
3519
 
 
3520
//
 
3521
// MessageId: ERROR_NOT_CONTAINER
 
3522
//
 
3523
// MessageText:
 
3524
//
 
3525
//  Cannot enumerate a noncontainer.
 
3526
//
 
3527
  ERROR_NOT_CONTAINER = DWORD(1207);
 
3528
  {$EXTERNALSYM ERROR_NOT_CONTAINER}
 
3529
 
 
3530
//
 
3531
// MessageId: ERROR_EXTENDED_ERROR
 
3532
//
 
3533
// MessageText:
 
3534
//
 
3535
//  An extended error has occurred.
 
3536
//
 
3537
  ERROR_EXTENDED_ERROR = DWORD(1208);
 
3538
  {$EXTERNALSYM ERROR_EXTENDED_ERROR}
 
3539
 
 
3540
//
 
3541
// MessageId: ERROR_INVALID_GROUPNAME
 
3542
//
 
3543
// MessageText:
 
3544
//
 
3545
//  The format of the specified group name is invalid.
 
3546
//
 
3547
  ERROR_INVALID_GROUPNAME = DWORD(1209);
 
3548
  {$EXTERNALSYM ERROR_INVALID_GROUPNAME}
 
3549
 
 
3550
//
 
3551
// MessageId: ERROR_INVALID_COMPUTERNAME
 
3552
//
 
3553
// MessageText:
 
3554
//
 
3555
//  The format of the specified computer name is invalid.
 
3556
//
 
3557
  ERROR_INVALID_COMPUTERNAME = DWORD(1210);
 
3558
  {$EXTERNALSYM ERROR_INVALID_COMPUTERNAME}
 
3559
 
 
3560
//
 
3561
// MessageId: ERROR_INVALID_EVENTNAME
 
3562
//
 
3563
// MessageText:
 
3564
//
 
3565
//  The format of the specified event name is invalid.
 
3566
//
 
3567
  ERROR_INVALID_EVENTNAME = DWORD(1211);
 
3568
  {$EXTERNALSYM ERROR_INVALID_EVENTNAME}
 
3569
 
 
3570
//
 
3571
// MessageId: ERROR_INVALID_DOMAINNAME
 
3572
//
 
3573
// MessageText:
 
3574
//
 
3575
//  The format of the specified domain name is invalid.
 
3576
//
 
3577
  ERROR_INVALID_DOMAINNAME = DWORD(1212);
 
3578
  {$EXTERNALSYM ERROR_INVALID_DOMAINNAME}
 
3579
 
 
3580
//
 
3581
// MessageId: ERROR_INVALID_SERVICENAME
 
3582
//
 
3583
// MessageText:
 
3584
//
 
3585
//  The format of the specified service name is invalid.
 
3586
//
 
3587
  ERROR_INVALID_SERVICENAME = DWORD(1213);
 
3588
  {$EXTERNALSYM ERROR_INVALID_SERVICENAME}
 
3589
 
 
3590
//
 
3591
// MessageId: ERROR_INVALID_NETNAME
 
3592
//
 
3593
// MessageText:
 
3594
//
 
3595
//  The format of the specified network name is invalid.
 
3596
//
 
3597
  ERROR_INVALID_NETNAME = DWORD(1214);
 
3598
  {$EXTERNALSYM ERROR_INVALID_NETNAME}
 
3599
 
 
3600
//
 
3601
// MessageId: ERROR_INVALID_SHARENAME
 
3602
//
 
3603
// MessageText:
 
3604
//
 
3605
//  The format of the specified share name is invalid.
 
3606
//
 
3607
  ERROR_INVALID_SHARENAME = DWORD(1215);
 
3608
  {$EXTERNALSYM ERROR_INVALID_SHARENAME}
 
3609
 
 
3610
//
 
3611
// MessageId: ERROR_INVALID_PASSWORDNAME
 
3612
//
 
3613
// MessageText:
 
3614
//
 
3615
//  The format of the specified password is invalid.
 
3616
//
 
3617
  ERROR_INVALID_PASSWORDNAME = DWORD(1216);
 
3618
  {$EXTERNALSYM ERROR_INVALID_PASSWORDNAME}
 
3619
 
 
3620
//
 
3621
// MessageId: ERROR_INVALID_MESSAGENAME
 
3622
//
 
3623
// MessageText:
 
3624
//
 
3625
//  The format of the specified message name is invalid.
 
3626
//
 
3627
  ERROR_INVALID_MESSAGENAME = DWORD(1217);
 
3628
  {$EXTERNALSYM ERROR_INVALID_MESSAGENAME}
 
3629
 
 
3630
//
 
3631
// MessageId: ERROR_INVALID_MESSAGEDEST
 
3632
//
 
3633
// MessageText:
 
3634
//
 
3635
//  The format of the specified message destination is invalid.
 
3636
//
 
3637
  ERROR_INVALID_MESSAGEDEST = DWORD(1218);
 
3638
  {$EXTERNALSYM ERROR_INVALID_MESSAGEDEST}
 
3639
 
 
3640
//
 
3641
// MessageId: ERROR_SESSION_CREDENTIAL_CONFLICT
 
3642
//
 
3643
// MessageText:
 
3644
//
 
3645
//  Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed. Disconnect all previous connections to the server or shared resource and try again.
 
3646
//
 
3647
  ERROR_SESSION_CREDENTIAL_CONFLICT = DWORD(1219);
 
3648
  {$EXTERNALSYM ERROR_SESSION_CREDENTIAL_CONFLICT}
 
3649
 
 
3650
//
 
3651
// MessageId: ERROR_REMOTE_SESSION_LIMIT_EXCEEDED
 
3652
//
 
3653
// MessageText:
 
3654
//
 
3655
//  An attempt was made to establish a session to a network server, but there are already too many sessions established to that server.
 
3656
//
 
3657
  ERROR_REMOTE_SESSION_LIMIT_EXCEEDED = DWORD(1220);
 
3658
  {$EXTERNALSYM ERROR_REMOTE_SESSION_LIMIT_EXCEEDED}
 
3659
 
 
3660
//
 
3661
// MessageId: ERROR_DUP_DOMAINNAME
 
3662
//
 
3663
// MessageText:
 
3664
//
 
3665
//  The workgroup or domain name is already in use by another computer on the network.
 
3666
//
 
3667
  ERROR_DUP_DOMAINNAME = DWORD(1221);
 
3668
  {$EXTERNALSYM ERROR_DUP_DOMAINNAME}
 
3669
 
 
3670
//
 
3671
// MessageId: ERROR_NO_NETWORK
 
3672
//
 
3673
// MessageText:
 
3674
//
 
3675
//  The network is not present or not started.
 
3676
//
 
3677
  ERROR_NO_NETWORK = DWORD(1222);
 
3678
  {$EXTERNALSYM ERROR_NO_NETWORK}
 
3679
 
 
3680
//
 
3681
// MessageId: ERROR_CANCELLED
 
3682
//
 
3683
// MessageText:
 
3684
//
 
3685
//  The operation was canceled by the user.
 
3686
//
 
3687
  ERROR_CANCELLED = DWORD(1223);
 
3688
  {$EXTERNALSYM ERROR_CANCELLED}
 
3689
 
 
3690
//
 
3691
// MessageId: ERROR_USER_MAPPED_FILE
 
3692
//
 
3693
// MessageText:
 
3694
//
 
3695
//  The requested operation cannot be performed on a file with a user-mapped section open.
 
3696
//
 
3697
  ERROR_USER_MAPPED_FILE = DWORD(1224);
 
3698
  {$EXTERNALSYM ERROR_USER_MAPPED_FILE}
 
3699
 
 
3700
//
 
3701
// MessageId: ERROR_CONNECTION_REFUSED
 
3702
//
 
3703
// MessageText:
 
3704
//
 
3705
//  The remote system refused the network connection.
 
3706
//
 
3707
  ERROR_CONNECTION_REFUSED = DWORD(1225);
 
3708
  {$EXTERNALSYM ERROR_CONNECTION_REFUSED}
 
3709
 
 
3710
//
 
3711
// MessageId: ERROR_GRACEFUL_DISCONNECT
 
3712
//
 
3713
// MessageText:
 
3714
//
 
3715
//  The network connection was gracefully closed.
 
3716
//
 
3717
  ERROR_GRACEFUL_DISCONNECT = DWORD(1226);
 
3718
  {$EXTERNALSYM ERROR_GRACEFUL_DISCONNECT}
 
3719
 
 
3720
//
 
3721
// MessageId: ERROR_ADDRESS_ALREADY_ASSOCIATED
 
3722
//
 
3723
// MessageText:
 
3724
//
 
3725
//  The network transport endpoint already has an address associated with it.
 
3726
//
 
3727
  ERROR_ADDRESS_ALREADY_ASSOCIATED = DWORD(1227);
 
3728
  {$EXTERNALSYM ERROR_ADDRESS_ALREADY_ASSOCIATED}
 
3729
 
 
3730
//
 
3731
// MessageId: ERROR_ADDRESS_NOT_ASSOCIATED
 
3732
//
 
3733
// MessageText:
 
3734
//
 
3735
//  An address has not yet been associated with the network endpoint.
 
3736
//
 
3737
  ERROR_ADDRESS_NOT_ASSOCIATED = DWORD(1228);
 
3738
  {$EXTERNALSYM ERROR_ADDRESS_NOT_ASSOCIATED}
 
3739
 
 
3740
//
 
3741
// MessageId: ERROR_CONNECTION_INVALID
 
3742
//
 
3743
// MessageText:
 
3744
//
 
3745
//  An operation was attempted on a nonexistent network connection.
 
3746
//
 
3747
  ERROR_CONNECTION_INVALID = DWORD(1229);
 
3748
  {$EXTERNALSYM ERROR_CONNECTION_INVALID}
 
3749
 
 
3750
//
 
3751
// MessageId: ERROR_CONNECTION_ACTIVE
 
3752
//
 
3753
// MessageText:
 
3754
//
 
3755
//  An invalid operation was attempted on an active network connection.
 
3756
//
 
3757
  ERROR_CONNECTION_ACTIVE = DWORD(1230);
 
3758
  {$EXTERNALSYM ERROR_CONNECTION_ACTIVE}
 
3759
 
 
3760
//
 
3761
// MessageId: ERROR_NETWORK_UNREACHABLE
 
3762
//
 
3763
// MessageText:
 
3764
//
 
3765
//  The network location cannot be reached. For information about network troubleshooting, see Windows Help.
 
3766
//
 
3767
  ERROR_NETWORK_UNREACHABLE = DWORD(1231);
 
3768
  {$EXTERNALSYM ERROR_NETWORK_UNREACHABLE}
 
3769
 
 
3770
//
 
3771
// MessageId: ERROR_HOST_UNREACHABLE
 
3772
//
 
3773
// MessageText:
 
3774
//
 
3775
//  The network location cannot be reached. For information about network troubleshooting, see Windows Help.
 
3776
//
 
3777
  ERROR_HOST_UNREACHABLE = DWORD(1232);
 
3778
  {$EXTERNALSYM ERROR_HOST_UNREACHABLE}
 
3779
 
 
3780
//
 
3781
// MessageId: ERROR_PROTOCOL_UNREACHABLE
 
3782
//
 
3783
// MessageText:
 
3784
//
 
3785
//  The network location cannot be reached. For information about network troubleshooting, see Windows Help.
 
3786
//
 
3787
  ERROR_PROTOCOL_UNREACHABLE = DWORD(1233);
 
3788
  {$EXTERNALSYM ERROR_PROTOCOL_UNREACHABLE}
 
3789
 
 
3790
//
 
3791
// MessageId: ERROR_PORT_UNREACHABLE
 
3792
//
 
3793
// MessageText:
 
3794
//
 
3795
//  No service is operating at the destination network endpoint on the remote system.
 
3796
//
 
3797
  ERROR_PORT_UNREACHABLE = DWORD(1234);
 
3798
  {$EXTERNALSYM ERROR_PORT_UNREACHABLE}
 
3799
 
 
3800
//
 
3801
// MessageId: ERROR_REQUEST_ABORTED
 
3802
//
 
3803
// MessageText:
 
3804
//
 
3805
//  The request was aborted.
 
3806
//
 
3807
  ERROR_REQUEST_ABORTED = DWORD(1235);
 
3808
  {$EXTERNALSYM ERROR_REQUEST_ABORTED}
 
3809
 
 
3810
//
 
3811
// MessageId: ERROR_CONNECTION_ABORTED
 
3812
//
 
3813
// MessageText:
 
3814
//
 
3815
//  The network connection was aborted by the local system.
 
3816
//
 
3817
  ERROR_CONNECTION_ABORTED = DWORD(1236);
 
3818
  {$EXTERNALSYM ERROR_CONNECTION_ABORTED}
 
3819
 
 
3820
//
 
3821
// MessageId: ERROR_RETRY
 
3822
//
 
3823
// MessageText:
 
3824
//
 
3825
//  The operation could not be completed. A retry should be performed.
 
3826
//
 
3827
  ERROR_RETRY = DWORD(1237);
 
3828
  {$EXTERNALSYM ERROR_RETRY}
 
3829
 
 
3830
//
 
3831
// MessageId: ERROR_CONNECTION_COUNT_LIMIT
 
3832
//
 
3833
// MessageText:
 
3834
//
 
3835
//  A connection to the server could not be made because the limit on the number of concurrent connections for this account has been reached.
 
3836
//
 
3837
  ERROR_CONNECTION_COUNT_LIMIT = DWORD(1238);
 
3838
  {$EXTERNALSYM ERROR_CONNECTION_COUNT_LIMIT}
 
3839
 
 
3840
//
 
3841
// MessageId: ERROR_LOGIN_TIME_RESTRICTION
 
3842
//
 
3843
// MessageText:
 
3844
//
 
3845
//  Attempting to log in during an unauthorized time of day for this account.
 
3846
//
 
3847
  ERROR_LOGIN_TIME_RESTRICTION = DWORD(1239);
 
3848
  {$EXTERNALSYM ERROR_LOGIN_TIME_RESTRICTION}
 
3849
 
 
3850
//
 
3851
// MessageId: ERROR_LOGIN_WKSTA_RESTRICTION
 
3852
//
 
3853
// MessageText:
 
3854
//
 
3855
//  The account is not authorized to log in from this station.
 
3856
//
 
3857
  ERROR_LOGIN_WKSTA_RESTRICTION = DWORD(1240);
 
3858
  {$EXTERNALSYM ERROR_LOGIN_WKSTA_RESTRICTION}
 
3859
 
 
3860
//
 
3861
// MessageId: ERROR_INCORRECT_ADDRESS
 
3862
//
 
3863
// MessageText:
 
3864
//
 
3865
//  The network address could not be used for the operation requested.
 
3866
//
 
3867
  ERROR_INCORRECT_ADDRESS = DWORD(1241);
 
3868
  {$EXTERNALSYM ERROR_INCORRECT_ADDRESS}
 
3869
 
 
3870
//
 
3871
// MessageId: ERROR_ALREADY_REGISTERED
 
3872
//
 
3873
// MessageText:
 
3874
//
 
3875
//  The service is already registered.
 
3876
//
 
3877
  ERROR_ALREADY_REGISTERED = DWORD(1242);
 
3878
  {$EXTERNALSYM ERROR_ALREADY_REGISTERED}
 
3879
 
 
3880
//
 
3881
// MessageId: ERROR_SERVICE_NOT_FOUND
 
3882
//
 
3883
// MessageText:
 
3884
//
 
3885
//  The specified service does not exist.
 
3886
//
 
3887
  ERROR_SERVICE_NOT_FOUND = DWORD(1243);
 
3888
  {$EXTERNALSYM ERROR_SERVICE_NOT_FOUND}
 
3889
 
 
3890
//
 
3891
// MessageId: ERROR_NOT_AUTHENTICATED
 
3892
//
 
3893
// MessageText:
 
3894
//
 
3895
//  The operation being requested was not performed because the user has not been authenticated.
 
3896
//
 
3897
  ERROR_NOT_AUTHENTICATED = DWORD(1244);
 
3898
  {$EXTERNALSYM ERROR_NOT_AUTHENTICATED}
 
3899
 
 
3900
//
 
3901
// MessageId: ERROR_NOT_LOGGED_ON
 
3902
//
 
3903
// MessageText:
 
3904
//
 
3905
//  The operation being requested was not performed because the user has not logged on to the network.
 
3906
//  The specified service does not exist.
 
3907
//
 
3908
  ERROR_NOT_LOGGED_ON = DWORD(1245);
 
3909
  {$EXTERNALSYM ERROR_NOT_LOGGED_ON}
 
3910
 
 
3911
//
 
3912
// MessageId: ERROR_CONTINUE
 
3913
//
 
3914
// MessageText:
 
3915
//
 
3916
//  Continue with work in progress.
 
3917
//
 
3918
  ERROR_CONTINUE = DWORD(1246);  // dderror
 
3919
  {$EXTERNALSYM ERROR_CONTINUE}
 
3920
 
 
3921
//
 
3922
// MessageId: ERROR_ALREADY_INITIALIZED
 
3923
//
 
3924
// MessageText:
 
3925
//
 
3926
//  An attempt was made to perform an initialization operation when initialization has already been completed.
 
3927
//
 
3928
  ERROR_ALREADY_INITIALIZED = DWORD(1247);
 
3929
  {$EXTERNALSYM ERROR_ALREADY_INITIALIZED}
 
3930
 
 
3931
//
 
3932
// MessageId: ERROR_NO_MORE_DEVICES
 
3933
//
 
3934
// MessageText:
 
3935
//
 
3936
//  No more local devices.
 
3937
//
 
3938
  ERROR_NO_MORE_DEVICES = DWORD(1248);  // dderror
 
3939
  {$EXTERNALSYM ERROR_NO_MORE_DEVICES}
 
3940
 
 
3941
//
 
3942
// MessageId: ERROR_NO_SUCH_SITE
 
3943
//
 
3944
// MessageText:
 
3945
//
 
3946
//  The specified site does not exist.
 
3947
//
 
3948
  ERROR_NO_SUCH_SITE = DWORD(1249);
 
3949
  {$EXTERNALSYM ERROR_NO_SUCH_SITE}
 
3950
 
 
3951
//
 
3952
// MessageId: ERROR_DOMAIN_CONTROLLER_EXISTS
 
3953
//
 
3954
// MessageText:
 
3955
//
 
3956
//  A domain controller with the specified name already exists.
 
3957
//
 
3958
  ERROR_DOMAIN_CONTROLLER_EXISTS = DWORD(1250);
 
3959
  {$EXTERNALSYM ERROR_DOMAIN_CONTROLLER_EXISTS}
 
3960
 
 
3961
//
 
3962
// MessageId: ERROR_ONLY_IF_CONNECTED
 
3963
//
 
3964
// MessageText:
 
3965
//
 
3966
//  This operation is supported only when you are connected to the server.
 
3967
//
 
3968
  ERROR_ONLY_IF_CONNECTED = DWORD(1251);
 
3969
  {$EXTERNALSYM ERROR_ONLY_IF_CONNECTED}
 
3970
 
 
3971
//
 
3972
// MessageId: ERROR_OVERRIDE_NOCHANGES
 
3973
//
 
3974
// MessageText:
 
3975
//
 
3976
//  The group policy framework should call the extension even if there are no changes.
 
3977
//
 
3978
  ERROR_OVERRIDE_NOCHANGES = DWORD(1252);
 
3979
  {$EXTERNALSYM ERROR_OVERRIDE_NOCHANGES}
 
3980
 
 
3981
//
 
3982
// MessageId: ERROR_BAD_USER_PROFILE
 
3983
//
 
3984
// MessageText:
 
3985
//
 
3986
//  The specified user does not have a valid profile.
 
3987
//
 
3988
  ERROR_BAD_USER_PROFILE = DWORD(1253);
 
3989
  {$EXTERNALSYM ERROR_BAD_USER_PROFILE}
 
3990
 
 
3991
//
 
3992
// MessageId: ERROR_NOT_SUPPORTED_ON_SBS
 
3993
//
 
3994
// MessageText:
 
3995
//
 
3996
//  This operation is not supported on a computer running Windows Server 2003 for Small Business Server
 
3997
//
 
3998
  ERROR_NOT_SUPPORTED_ON_SBS = DWORD(1254);
 
3999
  {$EXTERNALSYM ERROR_NOT_SUPPORTED_ON_SBS}
 
4000
 
 
4001
//
 
4002
// MessageId: ERROR_SERVER_SHUTDOWN_IN_PROGRESS
 
4003
//
 
4004
// MessageText:
 
4005
//
 
4006
//  The server machine is shutting down.
 
4007
//
 
4008
  ERROR_SERVER_SHUTDOWN_IN_PROGRESS = DWORD(1255);
 
4009
  {$EXTERNALSYM ERROR_SERVER_SHUTDOWN_IN_PROGRESS}
 
4010
 
 
4011
//
 
4012
// MessageId: ERROR_HOST_DOWN
 
4013
//
 
4014
// MessageText:
 
4015
//
 
4016
//  The remote system is not available. For information about network troubleshooting, see Windows Help.
 
4017
//
 
4018
  ERROR_HOST_DOWN = DWORD(1256);
 
4019
  {$EXTERNALSYM ERROR_HOST_DOWN}
 
4020
 
 
4021
//
 
4022
// MessageId: ERROR_NON_ACCOUNT_SID
 
4023
//
 
4024
// MessageText:
 
4025
//
 
4026
//  The security identifier provided is not from an account domain.
 
4027
//
 
4028
  ERROR_NON_ACCOUNT_SID = DWORD(1257);
 
4029
  {$EXTERNALSYM ERROR_NON_ACCOUNT_SID}
 
4030
 
 
4031
//
 
4032
// MessageId: ERROR_NON_DOMAIN_SID
 
4033
//
 
4034
// MessageText:
 
4035
//
 
4036
//  The security identifier provided does not have a domain component.
 
4037
//
 
4038
  ERROR_NON_DOMAIN_SID = DWORD(1258);
 
4039
  {$EXTERNALSYM ERROR_NON_DOMAIN_SID}
 
4040
 
 
4041
//
 
4042
// MessageId: ERROR_APPHELP_BLOCK
 
4043
//
 
4044
// MessageText:
 
4045
//
 
4046
//  AppHelp dialog canceled thus preventing the application from starting.
 
4047
//
 
4048
  ERROR_APPHELP_BLOCK = DWORD(1259);
 
4049
  {$EXTERNALSYM ERROR_APPHELP_BLOCK}
 
4050
 
 
4051
//
 
4052
// MessageId: ERROR_ACCESS_DISABLED_BY_POLICY
 
4053
//
 
4054
// MessageText:
 
4055
//
 
4056
//  Windows cannot open this program because it has been prevented by a software restriction policy. For more information, open Event Viewer or contact your system administrator.
 
4057
//
 
4058
  ERROR_ACCESS_DISABLED_BY_POLICY = DWORD(1260);
 
4059
  {$EXTERNALSYM ERROR_ACCESS_DISABLED_BY_POLICY}
 
4060
 
 
4061
//
 
4062
// MessageId: ERROR_REG_NAT_CONSUMPTION
 
4063
//
 
4064
// MessageText:
 
4065
//
 
4066
//  A program attempt to use an invalid register value.  Normally caused by an uninitialized register. This error is Itanium specific.
 
4067
//
 
4068
  ERROR_REG_NAT_CONSUMPTION = DWORD(1261);
 
4069
  {$EXTERNALSYM ERROR_REG_NAT_CONSUMPTION}
 
4070
 
 
4071
//
 
4072
// MessageId: ERROR_CSCSHARE_OFFLINE
 
4073
//
 
4074
// MessageText:
 
4075
//
 
4076
//  The share is currently offline or does not exist.
 
4077
//
 
4078
  ERROR_CSCSHARE_OFFLINE = DWORD(1262);
 
4079
  {$EXTERNALSYM ERROR_CSCSHARE_OFFLINE}
 
4080
 
 
4081
//
 
4082
// MessageId: ERROR_PKINIT_FAILURE
 
4083
//
 
4084
// MessageText:
 
4085
//
 
4086
//  The kerberos protocol encountered an error while validating the
 
4087
//  KDC certificate during smartcard logon.  There is more information in the
 
4088
//  system event log.
 
4089
//
 
4090
  ERROR_PKINIT_FAILURE = DWORD(1263);
 
4091
  {$EXTERNALSYM ERROR_PKINIT_FAILURE}
 
4092
 
 
4093
//
 
4094
// MessageId: ERROR_SMARTCARD_SUBSYSTEM_FAILURE
 
4095
//
 
4096
// MessageText:
 
4097
//
 
4098
//  The kerberos protocol encountered an error while attempting to utilize
 
4099
//  the smartcard subsystem.
 
4100
//
 
4101
  ERROR_SMARTCARD_SUBSYSTEM_FAILURE = DWORD(1264);
 
4102
  {$EXTERNALSYM ERROR_SMARTCARD_SUBSYSTEM_FAILURE}
 
4103
 
 
4104
//
 
4105
// MessageId: ERROR_DOWNGRADE_DETECTED
 
4106
//
 
4107
// MessageText:
 
4108
//
 
4109
//  The system detected a possible attempt to compromise security. Please ensure that you can contact the server that authenticated you.
 
4110
//
 
4111
  ERROR_DOWNGRADE_DETECTED = DWORD(1265);
 
4112
  {$EXTERNALSYM ERROR_DOWNGRADE_DETECTED}
 
4113
 
 
4114
//
 
4115
// Do not use ID's 1266 - 1270 as the symbolicNames have been moved to SEC_E_*
 
4116
//
 
4117
//
 
4118
// MessageId: ERROR_MACHINE_LOCKED
 
4119
//
 
4120
// MessageText:
 
4121
//
 
4122
//  The machine is locked and can not be shut down without the force option.
 
4123
//
 
4124
  ERROR_MACHINE_LOCKED = DWORD(1271);
 
4125
  {$EXTERNALSYM ERROR_MACHINE_LOCKED}
 
4126
 
 
4127
//
 
4128
// MessageId: ERROR_CALLBACK_SUPPLIED_INVALID_DATA
 
4129
//
 
4130
// MessageText:
 
4131
//
 
4132
//  An application-defined callback gave invalid data when called.
 
4133
//
 
4134
  ERROR_CALLBACK_SUPPLIED_INVALID_DATA = DWORD(1273);
 
4135
  {$EXTERNALSYM ERROR_CALLBACK_SUPPLIED_INVALID_DATA}
 
4136
 
 
4137
//
 
4138
// MessageId: ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED
 
4139
//
 
4140
// MessageText:
 
4141
//
 
4142
//  The group policy framework should call the extension in the synchronous foreground policy refresh.
 
4143
//
 
4144
  ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED = DWORD(1274);
 
4145
  {$EXTERNALSYM ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED}
 
4146
 
 
4147
//
 
4148
// MessageId: ERROR_DRIVER_BLOCKED
 
4149
//
 
4150
// MessageText:
 
4151
//
 
4152
//  This driver has been blocked from loading
 
4153
//
 
4154
  ERROR_DRIVER_BLOCKED = DWORD(1275);
 
4155
  {$EXTERNALSYM ERROR_DRIVER_BLOCKED}
 
4156
 
 
4157
//
 
4158
// MessageId: ERROR_INVALID_IMPORT_OF_NON_DLL
 
4159
//
 
4160
// MessageText:
 
4161
//
 
4162
//  A dynamic link library (DLL) referenced a module that was neither a DLL nor the process's executable image.
 
4163
//
 
4164
  ERROR_INVALID_IMPORT_OF_NON_DLL = DWORD(1276);
 
4165
  {$EXTERNALSYM ERROR_INVALID_IMPORT_OF_NON_DLL}
 
4166
 
 
4167
//
 
4168
// MessageId: ERROR_ACCESS_DISABLED_WEBBLADE
 
4169
//
 
4170
// MessageText:
 
4171
//
 
4172
//  Windows cannot open this program since it has been disabled.
 
4173
//
 
4174
  ERROR_ACCESS_DISABLED_WEBBLADE = DWORD(1277);
 
4175
  {$EXTERNALSYM ERROR_ACCESS_DISABLED_WEBBLADE}
 
4176
 
 
4177
//
 
4178
// MessageId: ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER
 
4179
//
 
4180
// MessageText:
 
4181
//
 
4182
//  Windows cannot open this program because the license enforcement system has been tampered with or become corrupted.
 
4183
//
 
4184
  ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER = DWORD(1278);
 
4185
  {$EXTERNALSYM ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER}
 
4186
 
 
4187
//
 
4188
// MessageId: ERROR_RECOVERY_FAILURE
 
4189
//
 
4190
// MessageText:
 
4191
//
 
4192
//  A transaction recover failed.
 
4193
//
 
4194
  ERROR_RECOVERY_FAILURE = DWORD(1279);
 
4195
  {$EXTERNALSYM ERROR_RECOVERY_FAILURE}
 
4196
 
 
4197
//
 
4198
// MessageId: ERROR_ALREADY_FIBER
 
4199
//
 
4200
// MessageText:
 
4201
//
 
4202
//  The current thread has already been converted to a fiber.
 
4203
//
 
4204
  ERROR_ALREADY_FIBER = DWORD(1280);
 
4205
  {$EXTERNALSYM ERROR_ALREADY_FIBER}
 
4206
 
 
4207
//
 
4208
// MessageId: ERROR_ALREADY_THREAD
 
4209
//
 
4210
// MessageText:
 
4211
//
 
4212
//  The current thread has already been converted from a fiber.
 
4213
//
 
4214
  ERROR_ALREADY_THREAD = DWORD(1281);
 
4215
  {$EXTERNALSYM ERROR_ALREADY_THREAD}
 
4216
 
 
4217
//
 
4218
// MessageId: ERROR_STACK_BUFFER_OVERRUN
 
4219
//
 
4220
// MessageText:
 
4221
//
 
4222
//  The system detected an overrun of a stack-based buffer in this application.  This
 
4223
//  overrun could potentially allow a malicious user to gain control of this application.
 
4224
//
 
4225
  ERROR_STACK_BUFFER_OVERRUN = DWORD(1282);
 
4226
  {$EXTERNALSYM ERROR_STACK_BUFFER_OVERRUN}
 
4227
 
 
4228
//
 
4229
// MessageId: ERROR_PARAMETER_QUOTA_EXCEEDED
 
4230
//
 
4231
// MessageText:
 
4232
//
 
4233
//  Data present in one of the parameters is more than the function can operate on.
 
4234
//
 
4235
  ERROR_PARAMETER_QUOTA_EXCEEDED = DWORD(1283);
 
4236
  {$EXTERNALSYM ERROR_PARAMETER_QUOTA_EXCEEDED}
 
4237
 
 
4238
//
 
4239
// MessageId: ERROR_DEBUGGER_INACTIVE
 
4240
//
 
4241
// MessageText:
 
4242
//
 
4243
//  An attempt to do an operation on a debug object failed because the object is in the process of being deleted.
 
4244
//
 
4245
  ERROR_DEBUGGER_INACTIVE = DWORD(1284);
 
4246
  {$EXTERNALSYM ERROR_DEBUGGER_INACTIVE}
 
4247
 
 
4248
//
 
4249
// MessageId: ERROR_DELAY_LOAD_FAILED
 
4250
//
 
4251
// MessageText:
 
4252
//
 
4253
//  An attempt to delay-load a .dll or get a function address in a delay-loaded .dll failed.
 
4254
//
 
4255
  ERROR_DELAY_LOAD_FAILED = DWORD(1285);
 
4256
  {$EXTERNALSYM ERROR_DELAY_LOAD_FAILED}
 
4257
 
 
4258
//
 
4259
// MessageId: ERROR_VDM_DISALLOWED
 
4260
//
 
4261
// MessageText:
 
4262
//
 
4263
//  %1 is a 16-bit application. You do not have permissions to execute 16-bit applications. Check your permissions with your system administrator.
 
4264
//
 
4265
  ERROR_VDM_DISALLOWED = DWORD(1286);
 
4266
  {$EXTERNALSYM ERROR_VDM_DISALLOWED}
 
4267
 
 
4268
//
 
4269
// MessageId: ERROR_UNIDENTIFIED_ERROR
 
4270
//
 
4271
// MessageText:
 
4272
//
 
4273
//  Insufficient information exists to identify the cause of failure.
 
4274
//
 
4275
  ERROR_UNIDENTIFIED_ERROR = DWORD(1287);
 
4276
  {$EXTERNALSYM ERROR_UNIDENTIFIED_ERROR}
 
4277
 
 
4278
///////////////////////////
 
4279
//
 
4280
// Add new status codes before this point unless there is a component specific section below.
 
4281
//
 
4282
///////////////////////////
 
4283
 
 
4284
///////////////////////////
 
4285
//                       //
 
4286
// Security Status Codes //
 
4287
//                       //
 
4288
///////////////////////////
 
4289
 
 
4290
//
 
4291
// MessageId: ERROR_NOT_ALL_ASSIGNED
 
4292
//
 
4293
// MessageText:
 
4294
//
 
4295
//  Not all privileges referenced are assigned to the caller.
 
4296
//
 
4297
  ERROR_NOT_ALL_ASSIGNED = DWORD(1300);
 
4298
  {$EXTERNALSYM ERROR_NOT_ALL_ASSIGNED}
 
4299
 
 
4300
//
 
4301
// MessageId: ERROR_SOME_NOT_MAPPED
 
4302
//
 
4303
// MessageText:
 
4304
//
 
4305
//  Some mapping between account names and security IDs was not done.
 
4306
//
 
4307
  ERROR_SOME_NOT_MAPPED = DWORD(1301);
 
4308
  {$EXTERNALSYM ERROR_SOME_NOT_MAPPED}
 
4309
 
 
4310
//
 
4311
// MessageId: ERROR_NO_QUOTAS_FOR_ACCOUNT
 
4312
//
 
4313
// MessageText:
 
4314
//
 
4315
//  No system quota limits are specifically set for this account.
 
4316
//
 
4317
  ERROR_NO_QUOTAS_FOR_ACCOUNT = DWORD(1302);
 
4318
  {$EXTERNALSYM ERROR_NO_QUOTAS_FOR_ACCOUNT}
 
4319
 
 
4320
//
 
4321
// MessageId: ERROR_LOCAL_USER_SESSION_KEY
 
4322
//
 
4323
// MessageText:
 
4324
//
 
4325
//  No encryption key is available. A well-known encryption key was returned.
 
4326
//
 
4327
  ERROR_LOCAL_USER_SESSION_KEY = DWORD(1303);
 
4328
  {$EXTERNALSYM ERROR_LOCAL_USER_SESSION_KEY}
 
4329
 
 
4330
//
 
4331
// MessageId: ERROR_NULL_LM_PASSWORD
 
4332
//
 
4333
// MessageText:
 
4334
//
 
4335
//  The password is too complex to be converted to a LAN Manager password. The LAN Manager password returned is a NULL string.
 
4336
//
 
4337
  ERROR_NULL_LM_PASSWORD = DWORD(1304);
 
4338
  {$EXTERNALSYM ERROR_NULL_LM_PASSWORD}
 
4339
 
 
4340
//
 
4341
// MessageId: ERROR_UNKNOWN_REVISION
 
4342
//
 
4343
// MessageText:
 
4344
//
 
4345
//  The revision level is unknown.
 
4346
//
 
4347
  ERROR_UNKNOWN_REVISION = DWORD(1305);
 
4348
  {$EXTERNALSYM ERROR_UNKNOWN_REVISION}
 
4349
 
 
4350
//
 
4351
// MessageId: ERROR_REVISION_MISMATCH
 
4352
//
 
4353
// MessageText:
 
4354
//
 
4355
//  Indicates two revision levels are incompatible.
 
4356
//
 
4357
  ERROR_REVISION_MISMATCH = DWORD(1306);
 
4358
  {$EXTERNALSYM ERROR_REVISION_MISMATCH}
 
4359
 
 
4360
//
 
4361
// MessageId: ERROR_INVALID_OWNER
 
4362
//
 
4363
// MessageText:
 
4364
//
 
4365
//  This security ID may not be assigned as the owner of this object.
 
4366
//
 
4367
  ERROR_INVALID_OWNER = DWORD(1307);
 
4368
  {$EXTERNALSYM ERROR_INVALID_OWNER}
 
4369
 
 
4370
//
 
4371
// MessageId: ERROR_INVALID_PRIMARY_GROUP
 
4372
//
 
4373
// MessageText:
 
4374
//
 
4375
//  This security ID may not be assigned as the primary group of an object.
 
4376
//
 
4377
  ERROR_INVALID_PRIMARY_GROUP = DWORD(1308);
 
4378
  {$EXTERNALSYM ERROR_INVALID_PRIMARY_GROUP}
 
4379
 
 
4380
//
 
4381
// MessageId: ERROR_NO_IMPERSONATION_TOKEN
 
4382
//
 
4383
// MessageText:
 
4384
//
 
4385
//  An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client.
 
4386
//
 
4387
  ERROR_NO_IMPERSONATION_TOKEN = DWORD(1309);
 
4388
  {$EXTERNALSYM ERROR_NO_IMPERSONATION_TOKEN}
 
4389
 
 
4390
//
 
4391
// MessageId: ERROR_CANT_DISABLE_MANDATORY
 
4392
//
 
4393
// MessageText:
 
4394
//
 
4395
//  The group may not be disabled.
 
4396
//
 
4397
  ERROR_CANT_DISABLE_MANDATORY = DWORD(1310);
 
4398
  {$EXTERNALSYM ERROR_CANT_DISABLE_MANDATORY}
 
4399
 
 
4400
//
 
4401
// MessageId: ERROR_NO_LOGON_SERVERS
 
4402
//
 
4403
// MessageText:
 
4404
//
 
4405
//  There are currently no logon servers available to service the logon request.
 
4406
//
 
4407
  ERROR_NO_LOGON_SERVERS = DWORD(1311);
 
4408
  {$EXTERNALSYM ERROR_NO_LOGON_SERVERS}
 
4409
 
 
4410
//
 
4411
// MessageId: ERROR_NO_SUCH_LOGON_SESSION
 
4412
//
 
4413
// MessageText:
 
4414
//
 
4415
//  A specified logon session does not exist. It may already have been terminated.
 
4416
//
 
4417
  ERROR_NO_SUCH_LOGON_SESSION = DWORD(1312);
 
4418
  {$EXTERNALSYM ERROR_NO_SUCH_LOGON_SESSION}
 
4419
 
 
4420
//
 
4421
// MessageId: ERROR_NO_SUCH_PRIVILEGE
 
4422
//
 
4423
// MessageText:
 
4424
//
 
4425
//  A specified privilege does not exist.
 
4426
//
 
4427
  ERROR_NO_SUCH_PRIVILEGE = DWORD(1313);
 
4428
  {$EXTERNALSYM ERROR_NO_SUCH_PRIVILEGE}
 
4429
 
 
4430
//
 
4431
// MessageId: ERROR_PRIVILEGE_NOT_HELD
 
4432
//
 
4433
// MessageText:
 
4434
//
 
4435
//  A required privilege is not held by the client.
 
4436
//
 
4437
  ERROR_PRIVILEGE_NOT_HELD = DWORD(1314);
 
4438
  {$EXTERNALSYM ERROR_PRIVILEGE_NOT_HELD}
 
4439
 
 
4440
//
 
4441
// MessageId: ERROR_INVALID_ACCOUNT_NAME
 
4442
//
 
4443
// MessageText:
 
4444
//
 
4445
//  The name provided is not a properly formed account name.
 
4446
//
 
4447
  ERROR_INVALID_ACCOUNT_NAME = DWORD(1315);
 
4448
  {$EXTERNALSYM ERROR_INVALID_ACCOUNT_NAME}
 
4449
 
 
4450
//
 
4451
// MessageId: ERROR_USER_EXISTS
 
4452
//
 
4453
// MessageText:
 
4454
//
 
4455
//  The specified user already exists.
 
4456
//
 
4457
  ERROR_USER_EXISTS = DWORD(1316);
 
4458
  {$EXTERNALSYM ERROR_USER_EXISTS}
 
4459
 
 
4460
//
 
4461
// MessageId: ERROR_NO_SUCH_USER
 
4462
//
 
4463
// MessageText:
 
4464
//
 
4465
//  The specified user does not exist.
 
4466
//
 
4467
  ERROR_NO_SUCH_USER = DWORD(1317);
 
4468
  {$EXTERNALSYM ERROR_NO_SUCH_USER}
 
4469
 
 
4470
//
 
4471
// MessageId: ERROR_GROUP_EXISTS
 
4472
//
 
4473
// MessageText:
 
4474
//
 
4475
//  The specified group already exists.
 
4476
//
 
4477
  ERROR_GROUP_EXISTS = DWORD(1318);
 
4478
  {$EXTERNALSYM ERROR_GROUP_EXISTS}
 
4479
 
 
4480
//
 
4481
// MessageId: ERROR_NO_SUCH_GROUP
 
4482
//
 
4483
// MessageText:
 
4484
//
 
4485
//  The specified group does not exist.
 
4486
//
 
4487
  ERROR_NO_SUCH_GROUP = DWORD(1319);
 
4488
  {$EXTERNALSYM ERROR_NO_SUCH_GROUP}
 
4489
 
 
4490
//
 
4491
// MessageId: ERROR_MEMBER_IN_GROUP
 
4492
//
 
4493
// MessageText:
 
4494
//
 
4495
//  Either the specified user account is already a member of the specified group, or the specified group cannot be deleted because it contains a member.
 
4496
//
 
4497
  ERROR_MEMBER_IN_GROUP = DWORD(1320);
 
4498
  {$EXTERNALSYM ERROR_MEMBER_IN_GROUP}
 
4499
 
 
4500
//
 
4501
// MessageId: ERROR_MEMBER_NOT_IN_GROUP
 
4502
//
 
4503
// MessageText:
 
4504
//
 
4505
//  The specified user account is not a member of the specified group account.
 
4506
//
 
4507
  ERROR_MEMBER_NOT_IN_GROUP = DWORD(1321);
 
4508
  {$EXTERNALSYM ERROR_MEMBER_NOT_IN_GROUP}
 
4509
 
 
4510
//
 
4511
// MessageId: ERROR_LAST_ADMIN
 
4512
//
 
4513
// MessageText:
 
4514
//
 
4515
//  The last remaining administration account cannot be disabled or deleted.
 
4516
//
 
4517
  ERROR_LAST_ADMIN = DWORD(1322);
 
4518
  {$EXTERNALSYM ERROR_LAST_ADMIN}
 
4519
 
 
4520
//
 
4521
// MessageId: ERROR_WRONG_PASSWORD
 
4522
//
 
4523
// MessageText:
 
4524
//
 
4525
//  Unable to update the password. The value provided as the current password is incorrect.
 
4526
//
 
4527
  ERROR_WRONG_PASSWORD = DWORD(1323);
 
4528
  {$EXTERNALSYM ERROR_WRONG_PASSWORD}
 
4529
 
 
4530
//
 
4531
// MessageId: ERROR_ILL_FORMED_PASSWORD
 
4532
//
 
4533
// MessageText:
 
4534
//
 
4535
//  Unable to update the password. The value provided for the new password contains values that are not allowed in passwords.
 
4536
//
 
4537
  ERROR_ILL_FORMED_PASSWORD = DWORD(1324);
 
4538
  {$EXTERNALSYM ERROR_ILL_FORMED_PASSWORD}
 
4539
 
 
4540
//
 
4541
// MessageId: ERROR_PASSWORD_RESTRICTION
 
4542
//
 
4543
// MessageText:
 
4544
//
 
4545
//  Unable to update the password. The value provided for the new password does not meet the length, complexity, or history requirement of the domain.
 
4546
//
 
4547
  ERROR_PASSWORD_RESTRICTION = DWORD(1325);
 
4548
  {$EXTERNALSYM ERROR_PASSWORD_RESTRICTION}
 
4549
 
 
4550
//
 
4551
// MessageId: ERROR_LOGON_FAILURE
 
4552
//
 
4553
// MessageText:
 
4554
//
 
4555
//  Logon failure: unknown user name or bad password.
 
4556
//
 
4557
  ERROR_LOGON_FAILURE = DWORD(1326);
 
4558
  {$EXTERNALSYM ERROR_LOGON_FAILURE}
 
4559
 
 
4560
//
 
4561
// MessageId: ERROR_ACCOUNT_RESTRICTION
 
4562
//
 
4563
// MessageText:
 
4564
//
 
4565
//  Logon failure: user account restriction.  Possible reasons are blank passwords not allowed, logon hour restrictions, or a policy restriction has been enforced.
 
4566
//
 
4567
  ERROR_ACCOUNT_RESTRICTION = DWORD(1327);
 
4568
  {$EXTERNALSYM ERROR_ACCOUNT_RESTRICTION}
 
4569
 
 
4570
//
 
4571
// MessageId: ERROR_INVALID_LOGON_HOURS
 
4572
//
 
4573
// MessageText:
 
4574
//
 
4575
//  Logon failure: account logon time restriction violation.
 
4576
//
 
4577
  ERROR_INVALID_LOGON_HOURS = DWORD(1328);
 
4578
  {$EXTERNALSYM ERROR_INVALID_LOGON_HOURS}
 
4579
 
 
4580
//
 
4581
// MessageId: ERROR_INVALID_WORKSTATION
 
4582
//
 
4583
// MessageText:
 
4584
//
 
4585
//  Logon failure: user not allowed to log on to this computer.
 
4586
//
 
4587
  ERROR_INVALID_WORKSTATION = DWORD(1329);
 
4588
  {$EXTERNALSYM ERROR_INVALID_WORKSTATION}
 
4589
 
 
4590
//
 
4591
// MessageId: ERROR_PASSWORD_EXPIRED
 
4592
//
 
4593
// MessageText:
 
4594
//
 
4595
//  Logon failure: the specified account password has expired.
 
4596
//
 
4597
  ERROR_PASSWORD_EXPIRED = DWORD(1330);
 
4598
  {$EXTERNALSYM ERROR_PASSWORD_EXPIRED}
 
4599
 
 
4600
//
 
4601
// MessageId: ERROR_ACCOUNT_DISABLED
 
4602
//
 
4603
// MessageText:
 
4604
//
 
4605
//  Logon failure: account currently disabled.
 
4606
//
 
4607
  ERROR_ACCOUNT_DISABLED = DWORD(1331);
 
4608
  {$EXTERNALSYM ERROR_ACCOUNT_DISABLED}
 
4609
 
 
4610
//
 
4611
// MessageId: ERROR_NONE_MAPPED
 
4612
//
 
4613
// MessageText:
 
4614
//
 
4615
//  No mapping between account names and security IDs was done.
 
4616
//
 
4617
  ERROR_NONE_MAPPED = DWORD(1332);
 
4618
  {$EXTERNALSYM ERROR_NONE_MAPPED}
 
4619
 
 
4620
//
 
4621
// MessageId: ERROR_TOO_MANY_LUIDS_REQUESTED
 
4622
//
 
4623
// MessageText:
 
4624
//
 
4625
//  Too many local user identifiers (LUIDs) were requested at one time.
 
4626
//
 
4627
  ERROR_TOO_MANY_LUIDS_REQUESTED = DWORD(1333);
 
4628
  {$EXTERNALSYM ERROR_TOO_MANY_LUIDS_REQUESTED}
 
4629
 
 
4630
//
 
4631
// MessageId: ERROR_LUIDS_EXHAUSTED
 
4632
//
 
4633
// MessageText:
 
4634
//
 
4635
//  No more local user identifiers (LUIDs) are available.
 
4636
//
 
4637
  ERROR_LUIDS_EXHAUSTED = DWORD(1334);
 
4638
  {$EXTERNALSYM ERROR_LUIDS_EXHAUSTED}
 
4639
 
 
4640
//
 
4641
// MessageId: ERROR_INVALID_SUB_AUTHORITY
 
4642
//
 
4643
// MessageText:
 
4644
//
 
4645
//  The subauthority part of a security ID is invalid for this particular use.
 
4646
//
 
4647
  ERROR_INVALID_SUB_AUTHORITY = DWORD(1335);
 
4648
  {$EXTERNALSYM ERROR_INVALID_SUB_AUTHORITY}
 
4649
 
 
4650
//
 
4651
// MessageId: ERROR_INVALID_ACL
 
4652
//
 
4653
// MessageText:
 
4654
//
 
4655
//  The access control list (ACL) structure is invalid.
 
4656
//
 
4657
  ERROR_INVALID_ACL = DWORD(1336);
 
4658
  {$EXTERNALSYM ERROR_INVALID_ACL}
 
4659
 
 
4660
//
 
4661
// MessageId: ERROR_INVALID_SID
 
4662
//
 
4663
// MessageText:
 
4664
//
 
4665
//  The security ID structure is invalid.
 
4666
//
 
4667
  ERROR_INVALID_SID = DWORD(1337);
 
4668
  {$EXTERNALSYM ERROR_INVALID_SID}
 
4669
 
 
4670
//
 
4671
// MessageId: ERROR_INVALID_SECURITY_DESCR
 
4672
//
 
4673
// MessageText:
 
4674
//
 
4675
//  The security descriptor structure is invalid.
 
4676
//
 
4677
  ERROR_INVALID_SECURITY_DESCR = DWORD(1338);
 
4678
  {$EXTERNALSYM ERROR_INVALID_SECURITY_DESCR}
 
4679
 
 
4680
//
 
4681
// MessageId: ERROR_BAD_INHERITANCE_ACL
 
4682
//
 
4683
// MessageText:
 
4684
//
 
4685
//  The inherited access control list (ACL) or access control entry (ACE) could not be built.
 
4686
//
 
4687
  ERROR_BAD_INHERITANCE_ACL = DWORD(1340);
 
4688
  {$EXTERNALSYM ERROR_BAD_INHERITANCE_ACL}
 
4689
 
 
4690
//
 
4691
// MessageId: ERROR_SERVER_DISABLED
 
4692
//
 
4693
// MessageText:
 
4694
//
 
4695
//  The server is currently disabled.
 
4696
//
 
4697
  ERROR_SERVER_DISABLED = DWORD(1341);
 
4698
  {$EXTERNALSYM ERROR_SERVER_DISABLED}
 
4699
 
 
4700
//
 
4701
// MessageId: ERROR_SERVER_NOT_DISABLED
 
4702
//
 
4703
// MessageText:
 
4704
//
 
4705
//  The server is currently enabled.
 
4706
//
 
4707
  ERROR_SERVER_NOT_DISABLED = DWORD(1342);
 
4708
  {$EXTERNALSYM ERROR_SERVER_NOT_DISABLED}
 
4709
 
 
4710
//
 
4711
// MessageId: ERROR_INVALID_ID_AUTHORITY
 
4712
//
 
4713
// MessageText:
 
4714
//
 
4715
//  The value provided was an invalid value for an identifier authority.
 
4716
//
 
4717
  ERROR_INVALID_ID_AUTHORITY = DWORD(1343);
 
4718
  {$EXTERNALSYM ERROR_INVALID_ID_AUTHORITY}
 
4719
 
 
4720
//
 
4721
// MessageId: ERROR_ALLOTTED_SPACE_EXCEEDED
 
4722
//
 
4723
// MessageText:
 
4724
//
 
4725
//  No more memory is available for security information updates.
 
4726
//
 
4727
  ERROR_ALLOTTED_SPACE_EXCEEDED = DWORD(1344);
 
4728
  {$EXTERNALSYM ERROR_ALLOTTED_SPACE_EXCEEDED}
 
4729
 
 
4730
//
 
4731
// MessageId: ERROR_INVALID_GROUP_ATTRIBUTES
 
4732
//
 
4733
// MessageText:
 
4734
//
 
4735
//  The specified attributes are invalid, or incompatible with the attributes for the group as a whole.
 
4736
//
 
4737
  ERROR_INVALID_GROUP_ATTRIBUTES = DWORD(1345);
 
4738
  {$EXTERNALSYM ERROR_INVALID_GROUP_ATTRIBUTES}
 
4739
 
 
4740
//
 
4741
// MessageId: ERROR_BAD_IMPERSONATION_LEVEL
 
4742
//
 
4743
// MessageText:
 
4744
//
 
4745
//  Either a required impersonation level was not provided, or the provided impersonation level is invalid.
 
4746
//
 
4747
  ERROR_BAD_IMPERSONATION_LEVEL = DWORD(1346);
 
4748
  {$EXTERNALSYM ERROR_BAD_IMPERSONATION_LEVEL}
 
4749
 
 
4750
//
 
4751
// MessageId: ERROR_CANT_OPEN_ANONYMOUS
 
4752
//
 
4753
// MessageText:
 
4754
//
 
4755
//  Cannot open an anonymous level security token.
 
4756
//
 
4757
  ERROR_CANT_OPEN_ANONYMOUS = DWORD(1347);
 
4758
  {$EXTERNALSYM ERROR_CANT_OPEN_ANONYMOUS}
 
4759
 
 
4760
//
 
4761
// MessageId: ERROR_BAD_VALIDATION_CLASS
 
4762
//
 
4763
// MessageText:
 
4764
//
 
4765
//  The validation information class requested was invalid.
 
4766
//
 
4767
  ERROR_BAD_VALIDATION_CLASS = DWORD(1348);
 
4768
  {$EXTERNALSYM ERROR_BAD_VALIDATION_CLASS}
 
4769
 
 
4770
//
 
4771
// MessageId: ERROR_BAD_TOKEN_TYPE
 
4772
//
 
4773
// MessageText:
 
4774
//
 
4775
//  The type of the token is inappropriate for its attempted use.
 
4776
//
 
4777
  ERROR_BAD_TOKEN_TYPE = DWORD(1349);
 
4778
  {$EXTERNALSYM ERROR_BAD_TOKEN_TYPE}
 
4779
 
 
4780
//
 
4781
// MessageId: ERROR_NO_SECURITY_ON_OBJECT
 
4782
//
 
4783
// MessageText:
 
4784
//
 
4785
//  Unable to perform a security operation on an object that has no associated security.
 
4786
//
 
4787
  ERROR_NO_SECURITY_ON_OBJECT = DWORD(1350);
 
4788
  {$EXTERNALSYM ERROR_NO_SECURITY_ON_OBJECT}
 
4789
 
 
4790
//
 
4791
// MessageId: ERROR_CANT_ACCESS_DOMAIN_INFO
 
4792
//
 
4793
// MessageText:
 
4794
//
 
4795
//  Configuration information could not be read from the domain controller, either because the machine is unavailable, or access has been denied.
 
4796
//
 
4797
  ERROR_CANT_ACCESS_DOMAIN_INFO = DWORD(1351);
 
4798
  {$EXTERNALSYM ERROR_CANT_ACCESS_DOMAIN_INFO}
 
4799
 
 
4800
//
 
4801
// MessageId: ERROR_INVALID_SERVER_STATE
 
4802
//
 
4803
// MessageText:
 
4804
//
 
4805
//  The security account manager (SAM) or local security authority (LSA) server was in the wrong state to perform the security operation.
 
4806
//
 
4807
  ERROR_INVALID_SERVER_STATE = DWORD(1352);
 
4808
  {$EXTERNALSYM ERROR_INVALID_SERVER_STATE}
 
4809
 
 
4810
//
 
4811
// MessageId: ERROR_INVALID_DOMAIN_STATE
 
4812
//
 
4813
// MessageText:
 
4814
//
 
4815
//  The domain was in the wrong state to perform the security operation.
 
4816
//
 
4817
  ERROR_INVALID_DOMAIN_STATE = DWORD(1353);
 
4818
  {$EXTERNALSYM ERROR_INVALID_DOMAIN_STATE}
 
4819
 
 
4820
//
 
4821
// MessageId: ERROR_INVALID_DOMAIN_ROLE
 
4822
//
 
4823
// MessageText:
 
4824
//
 
4825
//  This operation is only allowed for the Primary Domain Controller of the domain.
 
4826
//
 
4827
  ERROR_INVALID_DOMAIN_ROLE = DWORD(1354);
 
4828
  {$EXTERNALSYM ERROR_INVALID_DOMAIN_ROLE}
 
4829
 
 
4830
//
 
4831
// MessageId: ERROR_NO_SUCH_DOMAIN
 
4832
//
 
4833
// MessageText:
 
4834
//
 
4835
//  The specified domain either does not exist or could not be contacted.
 
4836
//
 
4837
  ERROR_NO_SUCH_DOMAIN = DWORD(1355);
 
4838
  {$EXTERNALSYM ERROR_NO_SUCH_DOMAIN}
 
4839
 
 
4840
//
 
4841
// MessageId: ERROR_DOMAIN_EXISTS
 
4842
//
 
4843
// MessageText:
 
4844
//
 
4845
//  The specified domain already exists.
 
4846
//
 
4847
  ERROR_DOMAIN_EXISTS = DWORD(1356);
 
4848
  {$EXTERNALSYM ERROR_DOMAIN_EXISTS}
 
4849
 
 
4850
//
 
4851
// MessageId: ERROR_DOMAIN_LIMIT_EXCEEDED
 
4852
//
 
4853
// MessageText:
 
4854
//
 
4855
//  An attempt was made to exceed the limit on the number of domains per server.
 
4856
//
 
4857
  ERROR_DOMAIN_LIMIT_EXCEEDED = DWORD(1357);
 
4858
  {$EXTERNALSYM ERROR_DOMAIN_LIMIT_EXCEEDED}
 
4859
 
 
4860
//
 
4861
// MessageId: ERROR_INTERNAL_DB_CORRUPTION
 
4862
//
 
4863
// MessageText:
 
4864
//
 
4865
//  Unable to complete the requested operation because of either a catastrophic media failure or a data structure corruption on the disk.
 
4866
//
 
4867
  ERROR_INTERNAL_DB_CORRUPTION = DWORD(1358);
 
4868
  {$EXTERNALSYM ERROR_INTERNAL_DB_CORRUPTION}
 
4869
 
 
4870
//
 
4871
// MessageId: ERROR_INTERNAL_ERROR
 
4872
//
 
4873
// MessageText:
 
4874
//
 
4875
//  An internal error occurred.
 
4876
//
 
4877
  ERROR_INTERNAL_ERROR = DWORD(1359);
 
4878
  {$EXTERNALSYM ERROR_INTERNAL_ERROR}
 
4879
 
 
4880
//
 
4881
// MessageId: ERROR_GENERIC_NOT_MAPPED
 
4882
//
 
4883
// MessageText:
 
4884
//
 
4885
//  Generic access types were contained in an access mask which should already be mapped to nongeneric types.
 
4886
//
 
4887
  ERROR_GENERIC_NOT_MAPPED = DWORD(1360);
 
4888
  {$EXTERNALSYM ERROR_GENERIC_NOT_MAPPED}
 
4889
 
 
4890
//
 
4891
// MessageId: ERROR_BAD_DESCRIPTOR_FORMAT
 
4892
//
 
4893
// MessageText:
 
4894
//
 
4895
//  A security descriptor is not in the right format (absolute or self-relative).
 
4896
//
 
4897
  ERROR_BAD_DESCRIPTOR_FORMAT = DWORD(1361);
 
4898
  {$EXTERNALSYM ERROR_BAD_DESCRIPTOR_FORMAT}
 
4899
 
 
4900
//
 
4901
// MessageId: ERROR_NOT_LOGON_PROCESS
 
4902
//
 
4903
// MessageText:
 
4904
//
 
4905
//  The requested action is restricted for use by logon processes only. The calling process has not registered as a logon process.
 
4906
//
 
4907
  ERROR_NOT_LOGON_PROCESS = DWORD(1362);
 
4908
  {$EXTERNALSYM ERROR_NOT_LOGON_PROCESS}
 
4909
 
 
4910
//
 
4911
// MessageId: ERROR_LOGON_SESSION_EXISTS
 
4912
//
 
4913
// MessageText:
 
4914
//
 
4915
//  Cannot start a new logon session with an ID that is already in use.
 
4916
//
 
4917
  ERROR_LOGON_SESSION_EXISTS = DWORD(1363);
 
4918
  {$EXTERNALSYM ERROR_LOGON_SESSION_EXISTS}
 
4919
 
 
4920
//
 
4921
// MessageId: ERROR_NO_SUCH_PACKAGE
 
4922
//
 
4923
// MessageText:
 
4924
//
 
4925
//  A specified authentication package is unknown.
 
4926
//
 
4927
  ERROR_NO_SUCH_PACKAGE = DWORD(1364);
 
4928
  {$EXTERNALSYM ERROR_NO_SUCH_PACKAGE}
 
4929
 
 
4930
//
 
4931
// MessageId: ERROR_BAD_LOGON_SESSION_STATE
 
4932
//
 
4933
// MessageText:
 
4934
//
 
4935
//  The logon session is not in a state that is consistent with the requested operation.
 
4936
//
 
4937
  ERROR_BAD_LOGON_SESSION_STATE = DWORD(1365);
 
4938
  {$EXTERNALSYM ERROR_BAD_LOGON_SESSION_STATE}
 
4939
 
 
4940
//
 
4941
// MessageId: ERROR_LOGON_SESSION_COLLISION
 
4942
//
 
4943
// MessageText:
 
4944
//
 
4945
//  The logon session ID is already in use.
 
4946
//
 
4947
  ERROR_LOGON_SESSION_COLLISION = DWORD(1366);
 
4948
  {$EXTERNALSYM ERROR_LOGON_SESSION_COLLISION}
 
4949
 
 
4950
//
 
4951
// MessageId: ERROR_INVALID_LOGON_TYPE
 
4952
//
 
4953
// MessageText:
 
4954
//
 
4955
//  A logon request contained an invalid logon type value.
 
4956
//
 
4957
  ERROR_INVALID_LOGON_TYPE = DWORD(1367);
 
4958
  {$EXTERNALSYM ERROR_INVALID_LOGON_TYPE}
 
4959
 
 
4960
//
 
4961
// MessageId: ERROR_CANNOT_IMPERSONATE
 
4962
//
 
4963
// MessageText:
 
4964
//
 
4965
//  Unable to impersonate using a named pipe until data has been read from that pipe.
 
4966
//
 
4967
  ERROR_CANNOT_IMPERSONATE = DWORD(1368);
 
4968
  {$EXTERNALSYM ERROR_CANNOT_IMPERSONATE}
 
4969
 
 
4970
//
 
4971
// MessageId: ERROR_RXACT_INVALID_STATE
 
4972
//
 
4973
// MessageText:
 
4974
//
 
4975
//  The transaction state of a registry subtree is incompatible with the requested operation.
 
4976
//
 
4977
  ERROR_RXACT_INVALID_STATE = DWORD(1369);
 
4978
  {$EXTERNALSYM ERROR_RXACT_INVALID_STATE}
 
4979
 
 
4980
//
 
4981
// MessageId: ERROR_RXACT_COMMIT_FAILURE
 
4982
//
 
4983
// MessageText:
 
4984
//
 
4985
//  An internal security database corruption has been encountered.
 
4986
//
 
4987
  ERROR_RXACT_COMMIT_FAILURE = DWORD(1370);
 
4988
  {$EXTERNALSYM ERROR_RXACT_COMMIT_FAILURE}
 
4989
 
 
4990
//
 
4991
// MessageId: ERROR_SPECIAL_ACCOUNT
 
4992
//
 
4993
// MessageText:
 
4994
//
 
4995
//  Cannot perform this operation on built-in accounts.
 
4996
//
 
4997
  ERROR_SPECIAL_ACCOUNT = DWORD(1371);
 
4998
  {$EXTERNALSYM ERROR_SPECIAL_ACCOUNT}
 
4999
 
 
5000
//
 
5001
// MessageId: ERROR_SPECIAL_GROUP
 
5002
//
 
5003
// MessageText:
 
5004
//
 
5005
//  Cannot perform this operation on this built-in special group.
 
5006
//
 
5007
  ERROR_SPECIAL_GROUP = DWORD(1372);
 
5008
  {$EXTERNALSYM ERROR_SPECIAL_GROUP}
 
5009
 
 
5010
//
 
5011
// MessageId: ERROR_SPECIAL_USER
 
5012
//
 
5013
// MessageText:
 
5014
//
 
5015
//  Cannot perform this operation on this built-in special user.
 
5016
//
 
5017
  ERROR_SPECIAL_USER = DWORD(1373);
 
5018
  {$EXTERNALSYM ERROR_SPECIAL_USER}
 
5019
 
 
5020
//
 
5021
// MessageId: ERROR_MEMBERS_PRIMARY_GROUP
 
5022
//
 
5023
// MessageText:
 
5024
//
 
5025
//  The user cannot be removed from a group because the group is currently the user's primary group.
 
5026
//
 
5027
  ERROR_MEMBERS_PRIMARY_GROUP = DWORD(1374);
 
5028
  {$EXTERNALSYM ERROR_MEMBERS_PRIMARY_GROUP}
 
5029
 
 
5030
//
 
5031
// MessageId: ERROR_TOKEN_ALREADY_IN_USE
 
5032
//
 
5033
// MessageText:
 
5034
//
 
5035
//  The token is already in use as a primary token.
 
5036
//
 
5037
  ERROR_TOKEN_ALREADY_IN_USE = DWORD(1375);
 
5038
  {$EXTERNALSYM ERROR_TOKEN_ALREADY_IN_USE}
 
5039
 
 
5040
//
 
5041
// MessageId: ERROR_NO_SUCH_ALIAS
 
5042
//
 
5043
// MessageText:
 
5044
//
 
5045
//  The specified local group does not exist.
 
5046
//
 
5047
  ERROR_NO_SUCH_ALIAS = DWORD(1376);
 
5048
  {$EXTERNALSYM ERROR_NO_SUCH_ALIAS}
 
5049
 
 
5050
//
 
5051
// MessageId: ERROR_MEMBER_NOT_IN_ALIAS
 
5052
//
 
5053
// MessageText:
 
5054
//
 
5055
//  The specified account name is not a member of the local group.
 
5056
//
 
5057
  ERROR_MEMBER_NOT_IN_ALIAS = DWORD(1377);
 
5058
  {$EXTERNALSYM ERROR_MEMBER_NOT_IN_ALIAS}
 
5059
 
 
5060
//
 
5061
// MessageId: ERROR_MEMBER_IN_ALIAS
 
5062
//
 
5063
// MessageText:
 
5064
//
 
5065
//  The specified account name is already a member of the local group.
 
5066
//
 
5067
  ERROR_MEMBER_IN_ALIAS = DWORD(1378);
 
5068
  {$EXTERNALSYM ERROR_MEMBER_IN_ALIAS}
 
5069
 
 
5070
//
 
5071
// MessageId: ERROR_ALIAS_EXISTS
 
5072
//
 
5073
// MessageText:
 
5074
//
 
5075
//  The specified local group already exists.
 
5076
//
 
5077
  ERROR_ALIAS_EXISTS = DWORD(1379);
 
5078
  {$EXTERNALSYM ERROR_ALIAS_EXISTS}
 
5079
 
 
5080
//
 
5081
// MessageId: ERROR_LOGON_NOT_GRANTED
 
5082
//
 
5083
// MessageText:
 
5084
//
 
5085
//  Logon failure: the user has not been granted the requested logon type at this computer.
 
5086
//
 
5087
  ERROR_LOGON_NOT_GRANTED = DWORD(1380);
 
5088
  {$EXTERNALSYM ERROR_LOGON_NOT_GRANTED}
 
5089
 
 
5090
//
 
5091
// MessageId: ERROR_TOO_MANY_SECRETS
 
5092
//
 
5093
// MessageText:
 
5094
//
 
5095
//  The maximum number of secrets that may be stored in a single system has been exceeded.
 
5096
//
 
5097
  ERROR_TOO_MANY_SECRETS = DWORD(1381);
 
5098
  {$EXTERNALSYM ERROR_TOO_MANY_SECRETS}
 
5099
 
 
5100
//
 
5101
// MessageId: ERROR_SECRET_TOO_LONG
 
5102
//
 
5103
// MessageText:
 
5104
//
 
5105
//  The length of a secret exceeds the maximum length allowed.
 
5106
//
 
5107
  ERROR_SECRET_TOO_LONG = DWORD(1382);
 
5108
  {$EXTERNALSYM ERROR_SECRET_TOO_LONG}
 
5109
 
 
5110
//
 
5111
// MessageId: ERROR_INTERNAL_DB_ERROR
 
5112
//
 
5113
// MessageText:
 
5114
//
 
5115
//  The local security authority database contains an internal inconsistency.
 
5116
//
 
5117
  ERROR_INTERNAL_DB_ERROR = DWORD(1383);
 
5118
  {$EXTERNALSYM ERROR_INTERNAL_DB_ERROR}
 
5119
 
 
5120
//
 
5121
// MessageId: ERROR_TOO_MANY_CONTEXT_IDS
 
5122
//
 
5123
// MessageText:
 
5124
//
 
5125
//  During a logon attempt, the user's security context accumulated too many security IDs.
 
5126
//
 
5127
  ERROR_TOO_MANY_CONTEXT_IDS = DWORD(1384);
 
5128
  {$EXTERNALSYM ERROR_TOO_MANY_CONTEXT_IDS}
 
5129
 
 
5130
//
 
5131
// MessageId: ERROR_LOGON_TYPE_NOT_GRANTED
 
5132
//
 
5133
// MessageText:
 
5134
//
 
5135
//  Logon failure: the user has not been granted the requested logon type at this computer.
 
5136
//
 
5137
  ERROR_LOGON_TYPE_NOT_GRANTED = DWORD(1385);
 
5138
  {$EXTERNALSYM ERROR_LOGON_TYPE_NOT_GRANTED}
 
5139
 
 
5140
//
 
5141
// MessageId: ERROR_NT_CROSS_ENCRYPTION_REQUIRED
 
5142
//
 
5143
// MessageText:
 
5144
//
 
5145
//  A cross-encrypted password is necessary to change a user password.
 
5146
//
 
5147
  ERROR_NT_CROSS_ENCRYPTION_REQUIRED = DWORD(1386);
 
5148
  {$EXTERNALSYM ERROR_NT_CROSS_ENCRYPTION_REQUIRED}
 
5149
 
 
5150
//
 
5151
// MessageId: ERROR_NO_SUCH_MEMBER
 
5152
//
 
5153
// MessageText:
 
5154
//
 
5155
//  A member could not be added to or removed from the local group because the member does not exist.
 
5156
//
 
5157
  ERROR_NO_SUCH_MEMBER = DWORD(1387);
 
5158
  {$EXTERNALSYM ERROR_NO_SUCH_MEMBER}
 
5159
 
 
5160
//
 
5161
// MessageId: ERROR_INVALID_MEMBER
 
5162
//
 
5163
// MessageText:
 
5164
//
 
5165
//  A new member could not be added to a local group because the member has the wrong account type.
 
5166
//
 
5167
  ERROR_INVALID_MEMBER = DWORD(1388);
 
5168
  {$EXTERNALSYM ERROR_INVALID_MEMBER}
 
5169
 
 
5170
//
 
5171
// MessageId: ERROR_TOO_MANY_SIDS
 
5172
//
 
5173
// MessageText:
 
5174
//
 
5175
//  Too many security IDs have been specified.
 
5176
//
 
5177
  ERROR_TOO_MANY_SIDS = DWORD(1389);
 
5178
  {$EXTERNALSYM ERROR_TOO_MANY_SIDS}
 
5179
 
 
5180
//
 
5181
// MessageId: ERROR_LM_CROSS_ENCRYPTION_REQUIRED
 
5182
//
 
5183
// MessageText:
 
5184
//
 
5185
//  A cross-encrypted password is necessary to change this user password.
 
5186
//
 
5187
  ERROR_LM_CROSS_ENCRYPTION_REQUIRED = DWORD(1390);
 
5188
  {$EXTERNALSYM ERROR_LM_CROSS_ENCRYPTION_REQUIRED}
 
5189
 
 
5190
//
 
5191
// MessageId: ERROR_NO_INHERITANCE
 
5192
//
 
5193
// MessageText:
 
5194
//
 
5195
//  Indicates an ACL contains no inheritable components.
 
5196
//
 
5197
  ERROR_NO_INHERITANCE = DWORD(1391);
 
5198
  {$EXTERNALSYM ERROR_NO_INHERITANCE}
 
5199
 
 
5200
//
 
5201
// MessageId: ERROR_FILE_CORRUPT
 
5202
//
 
5203
// MessageText:
 
5204
//
 
5205
//  The file or directory is corrupted and unreadable.
 
5206
//
 
5207
  ERROR_FILE_CORRUPT = DWORD(1392);
 
5208
  {$EXTERNALSYM ERROR_FILE_CORRUPT}
 
5209
 
 
5210
//
 
5211
// MessageId: ERROR_DISK_CORRUPT
 
5212
//
 
5213
// MessageText:
 
5214
//
 
5215
//  The disk structure is corrupted and unreadable.
 
5216
//
 
5217
  ERROR_DISK_CORRUPT = DWORD(1393);
 
5218
  {$EXTERNALSYM ERROR_DISK_CORRUPT}
 
5219
 
 
5220
//
 
5221
// MessageId: ERROR_NO_USER_SESSION_KEY
 
5222
//
 
5223
// MessageText:
 
5224
//
 
5225
//  There is no user session key for the specified logon session.
 
5226
//
 
5227
  ERROR_NO_USER_SESSION_KEY = DWORD(1394);
 
5228
  {$EXTERNALSYM ERROR_NO_USER_SESSION_KEY}
 
5229
 
 
5230
//
 
5231
// MessageId: ERROR_LICENSE_QUOTA_EXCEEDED
 
5232
//
 
5233
// MessageText:
 
5234
//
 
5235
//  The service being accessed is licensed for a particular number of connections.
 
5236
//  No more connections can be made to the service at this time because there are already as many connections as the service can accept.
 
5237
//
 
5238
  ERROR_LICENSE_QUOTA_EXCEEDED = DWORD(1395);
 
5239
  {$EXTERNALSYM ERROR_LICENSE_QUOTA_EXCEEDED}
 
5240
 
 
5241
//
 
5242
// MessageId: ERROR_WRONG_TARGET_NAME
 
5243
//
 
5244
// MessageText:
 
5245
//
 
5246
//  Logon Failure: The target account name is incorrect.
 
5247
//
 
5248
  ERROR_WRONG_TARGET_NAME = DWORD(1396);
 
5249
  {$EXTERNALSYM ERROR_WRONG_TARGET_NAME}
 
5250
 
 
5251
//
 
5252
// MessageId: ERROR_MUTUAL_AUTH_FAILED
 
5253
//
 
5254
// MessageText:
 
5255
//
 
5256
//  Mutual Authentication failed. The server's password is out of date at the domain controller.
 
5257
//
 
5258
  ERROR_MUTUAL_AUTH_FAILED = DWORD(1397);
 
5259
  {$EXTERNALSYM ERROR_MUTUAL_AUTH_FAILED}
 
5260
 
 
5261
//
 
5262
// MessageId: ERROR_TIME_SKEW
 
5263
//
 
5264
// MessageText:
 
5265
//
 
5266
//  There is a time and/or date difference between the client and server.
 
5267
//
 
5268
  ERROR_TIME_SKEW = DWORD(1398);
 
5269
  {$EXTERNALSYM ERROR_TIME_SKEW}
 
5270
 
 
5271
//
 
5272
// MessageId: ERROR_CURRENT_DOMAIN_NOT_ALLOWED
 
5273
//
 
5274
// MessageText:
 
5275
//
 
5276
//  This operation can not be performed on the current domain.
 
5277
//
 
5278
  ERROR_CURRENT_DOMAIN_NOT_ALLOWED = DWORD(1399);
 
5279
  {$EXTERNALSYM ERROR_CURRENT_DOMAIN_NOT_ALLOWED}
 
5280
 
 
5281
// End of security error codes
 
5282
 
 
5283
 
 
5284
///////////////////////////
 
5285
//                       //
 
5286
// WinUser Error Codes   //
 
5287
//                       //
 
5288
///////////////////////////
 
5289
 
 
5290
//
 
5291
// MessageId: ERROR_INVALID_WINDOW_HANDLE
 
5292
//
 
5293
// MessageText:
 
5294
//
 
5295
//  Invalid window handle.
 
5296
//
 
5297
  ERROR_INVALID_WINDOW_HANDLE = DWORD(1400);
 
5298
  {$EXTERNALSYM ERROR_INVALID_WINDOW_HANDLE}
 
5299
 
 
5300
//
 
5301
// MessageId: ERROR_INVALID_MENU_HANDLE
 
5302
//
 
5303
// MessageText:
 
5304
//
 
5305
//  Invalid menu handle.
 
5306
//
 
5307
  ERROR_INVALID_MENU_HANDLE = DWORD(1401);
 
5308
  {$EXTERNALSYM ERROR_INVALID_MENU_HANDLE}
 
5309
 
 
5310
//
 
5311
// MessageId: ERROR_INVALID_CURSOR_HANDLE
 
5312
//
 
5313
// MessageText:
 
5314
//
 
5315
//  Invalid cursor handle.
 
5316
//
 
5317
  ERROR_INVALID_CURSOR_HANDLE = DWORD(1402);
 
5318
  {$EXTERNALSYM ERROR_INVALID_CURSOR_HANDLE}
 
5319
 
 
5320
//
 
5321
// MessageId: ERROR_INVALID_ACCEL_HANDLE
 
5322
//
 
5323
// MessageText:
 
5324
//
 
5325
//  Invalid accelerator table handle.
 
5326
//
 
5327
  ERROR_INVALID_ACCEL_HANDLE = DWORD(1403);
 
5328
  {$EXTERNALSYM ERROR_INVALID_ACCEL_HANDLE}
 
5329
 
 
5330
//
 
5331
// MessageId: ERROR_INVALID_HOOK_HANDLE
 
5332
//
 
5333
// MessageText:
 
5334
//
 
5335
//  Invalid hook handle.
 
5336
//
 
5337
  ERROR_INVALID_HOOK_HANDLE = DWORD(1404);
 
5338
  {$EXTERNALSYM ERROR_INVALID_HOOK_HANDLE}
 
5339
 
 
5340
//
 
5341
// MessageId: ERROR_INVALID_DWP_HANDLE
 
5342
//
 
5343
// MessageText:
 
5344
//
 
5345
//  Invalid handle to a multiple-window position structure.
 
5346
//
 
5347
  ERROR_INVALID_DWP_HANDLE = DWORD(1405);
 
5348
  {$EXTERNALSYM ERROR_INVALID_DWP_HANDLE}
 
5349
 
 
5350
//
 
5351
// MessageId: ERROR_TLW_WITH_WSCHILD
 
5352
//
 
5353
// MessageText:
 
5354
//
 
5355
//  Cannot create a top-level child window.
 
5356
//
 
5357
  ERROR_TLW_WITH_WSCHILD = DWORD(1406);
 
5358
  {$EXTERNALSYM ERROR_TLW_WITH_WSCHILD}
 
5359
 
 
5360
//
 
5361
// MessageId: ERROR_CANNOT_FIND_WND_CLASS
 
5362
//
 
5363
// MessageText:
 
5364
//
 
5365
//  Cannot find window class.
 
5366
//
 
5367
  ERROR_CANNOT_FIND_WND_CLASS = DWORD(1407);
 
5368
  {$EXTERNALSYM ERROR_CANNOT_FIND_WND_CLASS}
 
5369
 
 
5370
//
 
5371
// MessageId: ERROR_WINDOW_OF_OTHER_THREAD
 
5372
//
 
5373
// MessageText:
 
5374
//
 
5375
//  Invalid window; it belongs to other thread.
 
5376
//
 
5377
  ERROR_WINDOW_OF_OTHER_THREAD = DWORD(1408);
 
5378
  {$EXTERNALSYM ERROR_WINDOW_OF_OTHER_THREAD}
 
5379
 
 
5380
//
 
5381
// MessageId: ERROR_HOTKEY_ALREADY_REGISTERED
 
5382
//
 
5383
// MessageText:
 
5384
//
 
5385
//  Hot key is already registered.
 
5386
//
 
5387
  ERROR_HOTKEY_ALREADY_REGISTERED = DWORD(1409);
 
5388
  {$EXTERNALSYM ERROR_HOTKEY_ALREADY_REGISTERED}
 
5389
 
 
5390
//
 
5391
// MessageId: ERROR_CLASS_ALREADY_EXISTS
 
5392
//
 
5393
// MessageText:
 
5394
//
 
5395
//  Class already exists.
 
5396
//
 
5397
  ERROR_CLASS_ALREADY_EXISTS = DWORD(1410);
 
5398
  {$EXTERNALSYM ERROR_CLASS_ALREADY_EXISTS}
 
5399
 
 
5400
//
 
5401
// MessageId: ERROR_CLASS_DOES_NOT_EXIST
 
5402
//
 
5403
// MessageText:
 
5404
//
 
5405
//  Class does not exist.
 
5406
//
 
5407
  ERROR_CLASS_DOES_NOT_EXIST = DWORD(1411);
 
5408
  {$EXTERNALSYM ERROR_CLASS_DOES_NOT_EXIST}
 
5409
 
 
5410
//
 
5411
// MessageId: ERROR_CLASS_HAS_WINDOWS
 
5412
//
 
5413
// MessageText:
 
5414
//
 
5415
//  Class still has open windows.
 
5416
//
 
5417
  ERROR_CLASS_HAS_WINDOWS = DWORD(1412);
 
5418
  {$EXTERNALSYM ERROR_CLASS_HAS_WINDOWS}
 
5419
 
 
5420
//
 
5421
// MessageId: ERROR_INVALID_INDEX
 
5422
//
 
5423
// MessageText:
 
5424
//
 
5425
//  Invalid index.
 
5426
//
 
5427
  ERROR_INVALID_INDEX = DWORD(1413);
 
5428
  {$EXTERNALSYM ERROR_INVALID_INDEX}
 
5429
 
 
5430
//
 
5431
// MessageId: ERROR_INVALID_ICON_HANDLE
 
5432
//
 
5433
// MessageText:
 
5434
//
 
5435
//  Invalid icon handle.
 
5436
//
 
5437
  ERROR_INVALID_ICON_HANDLE = DWORD(1414);
 
5438
  {$EXTERNALSYM ERROR_INVALID_ICON_HANDLE}
 
5439
 
 
5440
//
 
5441
// MessageId: ERROR_PRIVATE_DIALOG_INDEX
 
5442
//
 
5443
// MessageText:
 
5444
//
 
5445
//  Using private DIALOG window words.
 
5446
//
 
5447
  ERROR_PRIVATE_DIALOG_INDEX = DWORD(1415);
 
5448
  {$EXTERNALSYM ERROR_PRIVATE_DIALOG_INDEX}
 
5449
 
 
5450
//
 
5451
// MessageId: ERROR_LISTBOX_ID_NOT_FOUND
 
5452
//
 
5453
// MessageText:
 
5454
//
 
5455
//  The list box identifier was not found.
 
5456
//
 
5457
  ERROR_LISTBOX_ID_NOT_FOUND = DWORD(1416);
 
5458
  {$EXTERNALSYM ERROR_LISTBOX_ID_NOT_FOUND}
 
5459
 
 
5460
//
 
5461
// MessageId: ERROR_NO_WILDCARD_CHARACTERS
 
5462
//
 
5463
// MessageText:
 
5464
//
 
5465
//  No wildcards were found.
 
5466
//
 
5467
  ERROR_NO_WILDCARD_CHARACTERS = DWORD(1417);
 
5468
  {$EXTERNALSYM ERROR_NO_WILDCARD_CHARACTERS}
 
5469
 
 
5470
//
 
5471
// MessageId: ERROR_CLIPBOARD_NOT_OPEN
 
5472
//
 
5473
// MessageText:
 
5474
//
 
5475
//  Thread does not have a clipboard open.
 
5476
//
 
5477
  ERROR_CLIPBOARD_NOT_OPEN = DWORD(1418);
 
5478
  {$EXTERNALSYM ERROR_CLIPBOARD_NOT_OPEN}
 
5479
 
 
5480
//
 
5481
// MessageId: ERROR_HOTKEY_NOT_REGISTERED
 
5482
//
 
5483
// MessageText:
 
5484
//
 
5485
//  Hot key is not registered.
 
5486
//
 
5487
  ERROR_HOTKEY_NOT_REGISTERED = DWORD(1419);
 
5488
  {$EXTERNALSYM ERROR_HOTKEY_NOT_REGISTERED}
 
5489
 
 
5490
//
 
5491
// MessageId: ERROR_WINDOW_NOT_DIALOG
 
5492
//
 
5493
// MessageText:
 
5494
//
 
5495
//  The window is not a valid dialog window.
 
5496
//
 
5497
  ERROR_WINDOW_NOT_DIALOG = DWORD(1420);
 
5498
  {$EXTERNALSYM ERROR_WINDOW_NOT_DIALOG}
 
5499
 
 
5500
//
 
5501
// MessageId: ERROR_CONTROL_ID_NOT_FOUND
 
5502
//
 
5503
// MessageText:
 
5504
//
 
5505
//  Control ID not found.
 
5506
//
 
5507
  ERROR_CONTROL_ID_NOT_FOUND = DWORD(1421);
 
5508
  {$EXTERNALSYM ERROR_CONTROL_ID_NOT_FOUND}
 
5509
 
 
5510
//
 
5511
// MessageId: ERROR_INVALID_COMBOBOX_MESSAGE
 
5512
//
 
5513
// MessageText:
 
5514
//
 
5515
//  Invalid message for a combo box because it does not have an edit control.
 
5516
//
 
5517
  ERROR_INVALID_COMBOBOX_MESSAGE = DWORD(1422);
 
5518
  {$EXTERNALSYM ERROR_INVALID_COMBOBOX_MESSAGE}
 
5519
 
 
5520
//
 
5521
// MessageId: ERROR_WINDOW_NOT_COMBOBOX
 
5522
//
 
5523
// MessageText:
 
5524
//
 
5525
//  The window is not a combo box.
 
5526
//
 
5527
  ERROR_WINDOW_NOT_COMBOBOX = DWORD(1423);
 
5528
  {$EXTERNALSYM ERROR_WINDOW_NOT_COMBOBOX}
 
5529
 
 
5530
//
 
5531
// MessageId: ERROR_INVALID_EDIT_HEIGHT
 
5532
//
 
5533
// MessageText:
 
5534
//
 
5535
//  Height must be less than 256.
 
5536
//
 
5537
  ERROR_INVALID_EDIT_HEIGHT = DWORD(1424);
 
5538
  {$EXTERNALSYM ERROR_INVALID_EDIT_HEIGHT}
 
5539
 
 
5540
//
 
5541
// MessageId: ERROR_DC_NOT_FOUND
 
5542
//
 
5543
// MessageText:
 
5544
//
 
5545
//  Invalid device context (DC) handle.
 
5546
//
 
5547
  ERROR_DC_NOT_FOUND = DWORD(1425);
 
5548
  {$EXTERNALSYM ERROR_DC_NOT_FOUND}
 
5549
 
 
5550
//
 
5551
// MessageId: ERROR_INVALID_HOOK_FILTER
 
5552
//
 
5553
// MessageText:
 
5554
//
 
5555
//  Invalid hook procedure type.
 
5556
//
 
5557
  ERROR_INVALID_HOOK_FILTER = DWORD(1426);
 
5558
  {$EXTERNALSYM ERROR_INVALID_HOOK_FILTER}
 
5559
 
 
5560
//
 
5561
// MessageId: ERROR_INVALID_FILTER_PROC
 
5562
//
 
5563
// MessageText:
 
5564
//
 
5565
//  Invalid hook procedure.
 
5566
//
 
5567
  ERROR_INVALID_FILTER_PROC = DWORD(1427);
 
5568
  {$EXTERNALSYM ERROR_INVALID_FILTER_PROC}
 
5569
 
 
5570
//
 
5571
// MessageId: ERROR_HOOK_NEEDS_HMOD
 
5572
//
 
5573
// MessageText:
 
5574
//
 
5575
//  Cannot set nonlocal hook without a module handle.
 
5576
//
 
5577
  ERROR_HOOK_NEEDS_HMOD = DWORD(1428);
 
5578
  {$EXTERNALSYM ERROR_HOOK_NEEDS_HMOD}
 
5579
 
 
5580
//
 
5581
// MessageId: ERROR_GLOBAL_ONLY_HOOK
 
5582
//
 
5583
// MessageText:
 
5584
//
 
5585
//  This hook procedure can only be set globally.
 
5586
//
 
5587
  ERROR_GLOBAL_ONLY_HOOK = DWORD(1429);
 
5588
  {$EXTERNALSYM ERROR_GLOBAL_ONLY_HOOK}
 
5589
 
 
5590
//
 
5591
// MessageId: ERROR_JOURNAL_HOOK_SET
 
5592
//
 
5593
// MessageText:
 
5594
//
 
5595
//  The journal hook procedure is already installed.
 
5596
//
 
5597
  ERROR_JOURNAL_HOOK_SET = DWORD(1430);
 
5598
  {$EXTERNALSYM ERROR_JOURNAL_HOOK_SET}
 
5599
 
 
5600
//
 
5601
// MessageId: ERROR_HOOK_NOT_INSTALLED
 
5602
//
 
5603
// MessageText:
 
5604
//
 
5605
//  The hook procedure is not installed.
 
5606
//
 
5607
  ERROR_HOOK_NOT_INSTALLED = DWORD(1431);
 
5608
  {$EXTERNALSYM ERROR_HOOK_NOT_INSTALLED}
 
5609
 
 
5610
//
 
5611
// MessageId: ERROR_INVALID_LB_MESSAGE
 
5612
//
 
5613
// MessageText:
 
5614
//
 
5615
//  Invalid message for single-selection list box.
 
5616
//
 
5617
  ERROR_INVALID_LB_MESSAGE = DWORD(1432);
 
5618
  {$EXTERNALSYM ERROR_INVALID_LB_MESSAGE}
 
5619
 
 
5620
//
 
5621
// MessageId: ERROR_SETCOUNT_ON_BAD_LB
 
5622
//
 
5623
// MessageText:
 
5624
//
 
5625
//  LB_SETCOUNT sent to non-lazy list box.
 
5626
//
 
5627
  ERROR_SETCOUNT_ON_BAD_LB = DWORD(1433);
 
5628
  {$EXTERNALSYM ERROR_SETCOUNT_ON_BAD_LB}
 
5629
 
 
5630
//
 
5631
// MessageId: ERROR_LB_WITHOUT_TABSTOPS
 
5632
//
 
5633
// MessageText:
 
5634
//
 
5635
//  This list box does not support tab stops.
 
5636
//
 
5637
  ERROR_LB_WITHOUT_TABSTOPS = DWORD(1434);
 
5638
  {$EXTERNALSYM ERROR_LB_WITHOUT_TABSTOPS}
 
5639
 
 
5640
//
 
5641
// MessageId: ERROR_DESTROY_OBJECT_OF_OTHER_THREAD
 
5642
//
 
5643
// MessageText:
 
5644
//
 
5645
//  Cannot destroy object created by another thread.
 
5646
//
 
5647
  ERROR_DESTROY_OBJECT_OF_OTHER_THREAD = DWORD(1435);
 
5648
  {$EXTERNALSYM ERROR_DESTROY_OBJECT_OF_OTHER_THREAD}
 
5649
 
 
5650
//
 
5651
// MessageId: ERROR_CHILD_WINDOW_MENU
 
5652
//
 
5653
// MessageText:
 
5654
//
 
5655
//  Child windows cannot have menus.
 
5656
//
 
5657
  ERROR_CHILD_WINDOW_MENU = DWORD(1436);
 
5658
  {$EXTERNALSYM ERROR_CHILD_WINDOW_MENU}
 
5659
 
 
5660
//
 
5661
// MessageId: ERROR_NO_SYSTEM_MENU
 
5662
//
 
5663
// MessageText:
 
5664
//
 
5665
//  The window does not have a system menu.
 
5666
//
 
5667
  ERROR_NO_SYSTEM_MENU = DWORD(1437);
 
5668
  {$EXTERNALSYM ERROR_NO_SYSTEM_MENU}
 
5669
 
 
5670
//
 
5671
// MessageId: ERROR_INVALID_MSGBOX_STYLE
 
5672
//
 
5673
// MessageText:
 
5674
//
 
5675
//  Invalid message box style.
 
5676
//
 
5677
  ERROR_INVALID_MSGBOX_STYLE = DWORD(1438);
 
5678
  {$EXTERNALSYM ERROR_INVALID_MSGBOX_STYLE}
 
5679
 
 
5680
//
 
5681
// MessageId: ERROR_INVALID_SPI_VALUE
 
5682
//
 
5683
// MessageText:
 
5684
//
 
5685
//  Invalid system-wide (SPI_*) parameter.
 
5686
//
 
5687
  ERROR_INVALID_SPI_VALUE = DWORD(1439);
 
5688
  {$EXTERNALSYM ERROR_INVALID_SPI_VALUE}
 
5689
 
 
5690
//
 
5691
// MessageId: ERROR_SCREEN_ALREADY_LOCKED
 
5692
//
 
5693
// MessageText:
 
5694
//
 
5695
//  Screen already locked.
 
5696
//
 
5697
  ERROR_SCREEN_ALREADY_LOCKED = DWORD(1440);
 
5698
  {$EXTERNALSYM ERROR_SCREEN_ALREADY_LOCKED}
 
5699
 
 
5700
//
 
5701
// MessageId: ERROR_HWNDS_HAVE_DIFF_PARENT
 
5702
//
 
5703
// MessageText:
 
5704
//
 
5705
//  All handles to windows in a multiple-window position structure must have the same parent.
 
5706
//
 
5707
  ERROR_HWNDS_HAVE_DIFF_PARENT = DWORD(1441);
 
5708
  {$EXTERNALSYM ERROR_HWNDS_HAVE_DIFF_PARENT}
 
5709
 
 
5710
//
 
5711
// MessageId: ERROR_NOT_CHILD_WINDOW
 
5712
//
 
5713
// MessageText:
 
5714
//
 
5715
//  The window is not a child window.
 
5716
//
 
5717
  ERROR_NOT_CHILD_WINDOW = DWORD(1442);
 
5718
  {$EXTERNALSYM ERROR_NOT_CHILD_WINDOW}
 
5719
 
 
5720
//
 
5721
// MessageId: ERROR_INVALID_GW_COMMAND
 
5722
//
 
5723
// MessageText:
 
5724
//
 
5725
//  Invalid GW_* command.
 
5726
//
 
5727
  ERROR_INVALID_GW_COMMAND = DWORD(1443);
 
5728
  {$EXTERNALSYM ERROR_INVALID_GW_COMMAND}
 
5729
 
 
5730
//
 
5731
// MessageId: ERROR_INVALID_THREAD_ID
 
5732
//
 
5733
// MessageText:
 
5734
//
 
5735
//  Invalid thread identifier.
 
5736
//
 
5737
  ERROR_INVALID_THREAD_ID = DWORD(1444);
 
5738
  {$EXTERNALSYM ERROR_INVALID_THREAD_ID}
 
5739
 
 
5740
//
 
5741
// MessageId: ERROR_NON_MDICHILD_WINDOW
 
5742
//
 
5743
// MessageText:
 
5744
//
 
5745
//  Cannot process a message from a window that is not a multiple document interface (MDI) window.
 
5746
//
 
5747
  ERROR_NON_MDICHILD_WINDOW = DWORD(1445);
 
5748
  {$EXTERNALSYM ERROR_NON_MDICHILD_WINDOW}
 
5749
 
 
5750
//
 
5751
// MessageId: ERROR_POPUP_ALREADY_ACTIVE
 
5752
//
 
5753
// MessageText:
 
5754
//
 
5755
//  Popup menu already active.
 
5756
//
 
5757
  ERROR_POPUP_ALREADY_ACTIVE = DWORD(1446);
 
5758
  {$EXTERNALSYM ERROR_POPUP_ALREADY_ACTIVE}
 
5759
 
 
5760
//
 
5761
// MessageId: ERROR_NO_SCROLLBARS
 
5762
//
 
5763
// MessageText:
 
5764
//
 
5765
//  The window does not have scroll bars.
 
5766
//
 
5767
  ERROR_NO_SCROLLBARS = DWORD(1447);
 
5768
  {$EXTERNALSYM ERROR_NO_SCROLLBARS}
 
5769
 
 
5770
//
 
5771
// MessageId: ERROR_INVALID_SCROLLBAR_RANGE
 
5772
//
 
5773
// MessageText:
 
5774
//
 
5775
//  Scroll bar range cannot be greater than MAXLONG.
 
5776
//
 
5777
  ERROR_INVALID_SCROLLBAR_RANGE = DWORD(1448);
 
5778
  {$EXTERNALSYM ERROR_INVALID_SCROLLBAR_RANGE}
 
5779
 
 
5780
//
 
5781
// MessageId: ERROR_INVALID_SHOWWIN_COMMAND
 
5782
//
 
5783
// MessageText:
 
5784
//
 
5785
//  Cannot show or remove the window in the way specified.
 
5786
//
 
5787
  ERROR_INVALID_SHOWWIN_COMMAND = DWORD(1449);
 
5788
  {$EXTERNALSYM ERROR_INVALID_SHOWWIN_COMMAND}
 
5789
 
 
5790
//
 
5791
// MessageId: ERROR_NO_SYSTEM_RESOURCES
 
5792
//
 
5793
// MessageText:
 
5794
//
 
5795
//  Insufficient system resources exist to complete the requested service.
 
5796
//
 
5797
  ERROR_NO_SYSTEM_RESOURCES = DWORD(1450);
 
5798
  {$EXTERNALSYM ERROR_NO_SYSTEM_RESOURCES}
 
5799
 
 
5800
//
 
5801
// MessageId: ERROR_NONPAGED_SYSTEM_RESOURCES
 
5802
//
 
5803
// MessageText:
 
5804
//
 
5805
//  Insufficient system resources exist to complete the requested service.
 
5806
//
 
5807
  ERROR_NONPAGED_SYSTEM_RESOURCES = DWORD(1451);
 
5808
  {$EXTERNALSYM ERROR_NONPAGED_SYSTEM_RESOURCES}
 
5809
 
 
5810
//
 
5811
// MessageId: ERROR_PAGED_SYSTEM_RESOURCES
 
5812
//
 
5813
// MessageText:
 
5814
//
 
5815
//  Insufficient system resources exist to complete the requested service.
 
5816
//
 
5817
  ERROR_PAGED_SYSTEM_RESOURCES = DWORD(1452);
 
5818
  {$EXTERNALSYM ERROR_PAGED_SYSTEM_RESOURCES}
 
5819
 
 
5820
//
 
5821
// MessageId: ERROR_WORKING_SET_QUOTA
 
5822
//
 
5823
// MessageText:
 
5824
//
 
5825
//  Insufficient quota to complete the requested service.
 
5826
//
 
5827
  ERROR_WORKING_SET_QUOTA = DWORD(1453);
 
5828
  {$EXTERNALSYM ERROR_WORKING_SET_QUOTA}
 
5829
 
 
5830
//
 
5831
// MessageId: ERROR_PAGEFILE_QUOTA
 
5832
//
 
5833
// MessageText:
 
5834
//
 
5835
//  Insufficient quota to complete the requested service.
 
5836
//
 
5837
  ERROR_PAGEFILE_QUOTA = DWORD(1454);
 
5838
  {$EXTERNALSYM ERROR_PAGEFILE_QUOTA}
 
5839
 
 
5840
//
 
5841
// MessageId: ERROR_COMMITMENT_LIMIT
 
5842
//
 
5843
// MessageText:
 
5844
//
 
5845
//  The paging file is too small for this operation to complete.
 
5846
//
 
5847
  ERROR_COMMITMENT_LIMIT = DWORD(1455);
 
5848
  {$EXTERNALSYM ERROR_COMMITMENT_LIMIT}
 
5849
 
 
5850
//
 
5851
// MessageId: ERROR_MENU_ITEM_NOT_FOUND
 
5852
//
 
5853
// MessageText:
 
5854
//
 
5855
//  A menu item was not found.
 
5856
//
 
5857
  ERROR_MENU_ITEM_NOT_FOUND = DWORD(1456);
 
5858
  {$EXTERNALSYM ERROR_MENU_ITEM_NOT_FOUND}
 
5859
 
 
5860
//
 
5861
// MessageId: ERROR_INVALID_KEYBOARD_HANDLE
 
5862
//
 
5863
// MessageText:
 
5864
//
 
5865
//  Invalid keyboard layout handle.
 
5866
//
 
5867
  ERROR_INVALID_KEYBOARD_HANDLE = DWORD(1457);
 
5868
  {$EXTERNALSYM ERROR_INVALID_KEYBOARD_HANDLE}
 
5869
 
 
5870
//
 
5871
// MessageId: ERROR_HOOK_TYPE_NOT_ALLOWED
 
5872
//
 
5873
// MessageText:
 
5874
//
 
5875
//  Hook type not allowed.
 
5876
//
 
5877
  ERROR_HOOK_TYPE_NOT_ALLOWED = DWORD(1458);
 
5878
  {$EXTERNALSYM ERROR_HOOK_TYPE_NOT_ALLOWED}
 
5879
 
 
5880
//
 
5881
// MessageId: ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION
 
5882
//
 
5883
// MessageText:
 
5884
//
 
5885
//  This operation requires an interactive window station.
 
5886
//
 
5887
  ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION = DWORD(1459);
 
5888
  {$EXTERNALSYM ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION}
 
5889
 
 
5890
//
 
5891
// MessageId: ERROR_TIMEOUT
 
5892
//
 
5893
// MessageText:
 
5894
//
 
5895
//  This operation returned because the timeout period expired.
 
5896
//
 
5897
  ERROR_TIMEOUT = DWORD(1460);
 
5898
  {$EXTERNALSYM ERROR_TIMEOUT}
 
5899
 
 
5900
//
 
5901
// MessageId: ERROR_INVALID_MONITOR_HANDLE
 
5902
//
 
5903
// MessageText:
 
5904
//
 
5905
//  Invalid monitor handle.
 
5906
//
 
5907
  ERROR_INVALID_MONITOR_HANDLE = DWORD(1461);
 
5908
  {$EXTERNALSYM ERROR_INVALID_MONITOR_HANDLE}
 
5909
 
 
5910
// End of WinUser error codes
 
5911
 
 
5912
 
 
5913
///////////////////////////
 
5914
//                       //
 
5915
// Eventlog Status Codes //
 
5916
//                       //
 
5917
///////////////////////////
 
5918
 
 
5919
//
 
5920
// MessageId: ERROR_EVENTLOG_FILE_CORRUPT
 
5921
//
 
5922
// MessageText:
 
5923
//
 
5924
//  The event log file is corrupted.
 
5925
//
 
5926
  ERROR_EVENTLOG_FILE_CORRUPT = DWORD(1500);
 
5927
  {$EXTERNALSYM ERROR_EVENTLOG_FILE_CORRUPT}
 
5928
 
 
5929
//
 
5930
// MessageId: ERROR_EVENTLOG_CANT_START
 
5931
//
 
5932
// MessageText:
 
5933
//
 
5934
//  No event log file could be opened, so the event logging service did not start.
 
5935
//
 
5936
  ERROR_EVENTLOG_CANT_START = DWORD(1501);
 
5937
  {$EXTERNALSYM ERROR_EVENTLOG_CANT_START}
 
5938
 
 
5939
//
 
5940
// MessageId: ERROR_LOG_FILE_FULL
 
5941
//
 
5942
// MessageText:
 
5943
//
 
5944
//  The event log file is full.
 
5945
//
 
5946
  ERROR_LOG_FILE_FULL = DWORD(1502);
 
5947
  {$EXTERNALSYM ERROR_LOG_FILE_FULL}
 
5948
 
 
5949
//
 
5950
// MessageId: ERROR_EVENTLOG_FILE_CHANGED
 
5951
//
 
5952
// MessageText:
 
5953
//
 
5954
//  The event log file has changed between read operations.
 
5955
//
 
5956
  ERROR_EVENTLOG_FILE_CHANGED = DWORD(1503);
 
5957
  {$EXTERNALSYM ERROR_EVENTLOG_FILE_CHANGED}
 
5958
 
 
5959
// End of eventlog error codes
 
5960
 
 
5961
 
 
5962
///////////////////////////
 
5963
//                       //
 
5964
// MSI Error Codes       //
 
5965
//                       //
 
5966
///////////////////////////
 
5967
 
 
5968
//
 
5969
// MessageId: ERROR_INSTALL_SERVICE_FAILURE
 
5970
//
 
5971
// MessageText:
 
5972
//
 
5973
//  The Windows Installer Service could not be accessed. This can occur if you are running Windows in safe mode, or if the Windows Installer is not correctly installed. Contact your support personnel for assistance.
 
5974
//
 
5975
  ERROR_INSTALL_SERVICE_FAILURE = DWORD(1601);
 
5976
  {$EXTERNALSYM ERROR_INSTALL_SERVICE_FAILURE}
 
5977
 
 
5978
//
 
5979
// MessageId: ERROR_INSTALL_USEREXIT
 
5980
//
 
5981
// MessageText:
 
5982
//
 
5983
//  User cancelled installation.
 
5984
//
 
5985
  ERROR_INSTALL_USEREXIT = DWORD(1602);
 
5986
  {$EXTERNALSYM ERROR_INSTALL_USEREXIT}
 
5987
 
 
5988
//
 
5989
// MessageId: ERROR_INSTALL_FAILURE
 
5990
//
 
5991
// MessageText:
 
5992
//
 
5993
//  Fatal error during installation.
 
5994
//
 
5995
  ERROR_INSTALL_FAILURE = DWORD(1603);
 
5996
  {$EXTERNALSYM ERROR_INSTALL_FAILURE}
 
5997
 
 
5998
//
 
5999
// MessageId: ERROR_INSTALL_SUSPEND
 
6000
//
 
6001
// MessageText:
 
6002
//
 
6003
//  Installation suspended, incomplete.
 
6004
//
 
6005
  ERROR_INSTALL_SUSPEND = DWORD(1604);
 
6006
  {$EXTERNALSYM ERROR_INSTALL_SUSPEND}
 
6007
 
 
6008
//
 
6009
// MessageId: ERROR_UNKNOWN_PRODUCT
 
6010
//
 
6011
// MessageText:
 
6012
//
 
6013
//  This action is only valid for products that are currently installed.
 
6014
//
 
6015
  ERROR_UNKNOWN_PRODUCT = DWORD(1605);
 
6016
  {$EXTERNALSYM ERROR_UNKNOWN_PRODUCT}
 
6017
 
 
6018
//
 
6019
// MessageId: ERROR_UNKNOWN_FEATURE
 
6020
//
 
6021
// MessageText:
 
6022
//
 
6023
//  Feature ID not registered.
 
6024
//
 
6025
  ERROR_UNKNOWN_FEATURE = DWORD(1606);
 
6026
  {$EXTERNALSYM ERROR_UNKNOWN_FEATURE}
 
6027
 
 
6028
//
 
6029
// MessageId: ERROR_UNKNOWN_COMPONENT
 
6030
//
 
6031
// MessageText:
 
6032
//
 
6033
//  Component ID not registered.
 
6034
//
 
6035
  ERROR_UNKNOWN_COMPONENT = DWORD(1607);
 
6036
  {$EXTERNALSYM ERROR_UNKNOWN_COMPONENT}
 
6037
 
 
6038
//
 
6039
// MessageId: ERROR_UNKNOWN_PROPERTY
 
6040
//
 
6041
// MessageText:
 
6042
//
 
6043
//  Unknown property.
 
6044
//
 
6045
  ERROR_UNKNOWN_PROPERTY = DWORD(1608);
 
6046
  {$EXTERNALSYM ERROR_UNKNOWN_PROPERTY}
 
6047
 
 
6048
//
 
6049
// MessageId: ERROR_INVALID_HANDLE_STATE
 
6050
//
 
6051
// MessageText:
 
6052
//
 
6053
//  Handle is in an invalid state.
 
6054
//
 
6055
  ERROR_INVALID_HANDLE_STATE = DWORD(1609);
 
6056
  {$EXTERNALSYM ERROR_INVALID_HANDLE_STATE}
 
6057
 
 
6058
//
 
6059
// MessageId: ERROR_BAD_CONFIGURATION
 
6060
//
 
6061
// MessageText:
 
6062
//
 
6063
//  The configuration data for this product is corrupt.  Contact your support personnel.
 
6064
//
 
6065
  ERROR_BAD_CONFIGURATION = DWORD(1610);
 
6066
  {$EXTERNALSYM ERROR_BAD_CONFIGURATION}
 
6067
 
 
6068
//
 
6069
// MessageId: ERROR_INDEX_ABSENT
 
6070
//
 
6071
// MessageText:
 
6072
//
 
6073
//  Component qualifier not present.
 
6074
//
 
6075
  ERROR_INDEX_ABSENT = DWORD(1611);
 
6076
  {$EXTERNALSYM ERROR_INDEX_ABSENT}
 
6077
 
 
6078
//
 
6079
// MessageId: ERROR_INSTALL_SOURCE_ABSENT
 
6080
//
 
6081
// MessageText:
 
6082
//
 
6083
//  The installation source for this product is not available.  Verify that the source exists and that you can access it.
 
6084
//
 
6085
  ERROR_INSTALL_SOURCE_ABSENT = DWORD(1612);
 
6086
  {$EXTERNALSYM ERROR_INSTALL_SOURCE_ABSENT}
 
6087
 
 
6088
//
 
6089
// MessageId: ERROR_INSTALL_PACKAGE_VERSION
 
6090
//
 
6091
// MessageText:
 
6092
//
 
6093
//  This installation package cannot be installed by the Windows Installer service.  You must install a Windows service pack that contains a newer version of the Windows Installer service.
 
6094
//
 
6095
  ERROR_INSTALL_PACKAGE_VERSION = DWORD(1613);
 
6096
  {$EXTERNALSYM ERROR_INSTALL_PACKAGE_VERSION}
 
6097
 
 
6098
//
 
6099
// MessageId: ERROR_PRODUCT_UNINSTALLED
 
6100
//
 
6101
// MessageText:
 
6102
//
 
6103
//  Product is uninstalled.
 
6104
//
 
6105
  ERROR_PRODUCT_UNINSTALLED = DWORD(1614);
 
6106
  {$EXTERNALSYM ERROR_PRODUCT_UNINSTALLED}
 
6107
 
 
6108
//
 
6109
// MessageId: ERROR_BAD_QUERY_SYNTAX
 
6110
//
 
6111
// MessageText:
 
6112
//
 
6113
//  SQL query syntax invalid or unsupported.
 
6114
//
 
6115
  ERROR_BAD_QUERY_SYNTAX = DWORD(1615);
 
6116
  {$EXTERNALSYM ERROR_BAD_QUERY_SYNTAX}
 
6117
 
 
6118
//
 
6119
// MessageId: ERROR_INVALID_FIELD
 
6120
//
 
6121
// MessageText:
 
6122
//
 
6123
//  Record field does not exist.
 
6124
//
 
6125
  ERROR_INVALID_FIELD = DWORD(1616);
 
6126
  {$EXTERNALSYM ERROR_INVALID_FIELD}
 
6127
 
 
6128
//
 
6129
// MessageId: ERROR_DEVICE_REMOVED
 
6130
//
 
6131
// MessageText:
 
6132
//
 
6133
//  The device has been removed.
 
6134
//
 
6135
  ERROR_DEVICE_REMOVED = DWORD(1617);
 
6136
  {$EXTERNALSYM ERROR_DEVICE_REMOVED}
 
6137
 
 
6138
//
 
6139
// MessageId: ERROR_INSTALL_ALREADY_RUNNING
 
6140
//
 
6141
// MessageText:
 
6142
//
 
6143
//  Another installation is already in progress.  Complete that installation before proceeding with this install.
 
6144
//
 
6145
  ERROR_INSTALL_ALREADY_RUNNING = DWORD(1618);
 
6146
  {$EXTERNALSYM ERROR_INSTALL_ALREADY_RUNNING}
 
6147
 
 
6148
//
 
6149
// MessageId: ERROR_INSTALL_PACKAGE_OPEN_FAILED
 
6150
//
 
6151
// MessageText:
 
6152
//
 
6153
//  This installation package could not be opened.  Verify that the package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer package.
 
6154
//
 
6155
  ERROR_INSTALL_PACKAGE_OPEN_FAILED = DWORD(1619);
 
6156
  {$EXTERNALSYM ERROR_INSTALL_PACKAGE_OPEN_FAILED}
 
6157
 
 
6158
//
 
6159
// MessageId: ERROR_INSTALL_PACKAGE_INVALID
 
6160
//
 
6161
// MessageText:
 
6162
//
 
6163
//  This installation package could not be opened.  Contact the application vendor to verify that this is a valid Windows Installer package.
 
6164
//
 
6165
  ERROR_INSTALL_PACKAGE_INVALID = DWORD(1620);
 
6166
  {$EXTERNALSYM ERROR_INSTALL_PACKAGE_INVALID}
 
6167
 
 
6168
//
 
6169
// MessageId: ERROR_INSTALL_UI_FAILURE
 
6170
//
 
6171
// MessageText:
 
6172
//
 
6173
//  There was an error starting the Windows Installer service user interface.  Contact your support personnel.
 
6174
//
 
6175
  ERROR_INSTALL_UI_FAILURE = DWORD(1621);
 
6176
  {$EXTERNALSYM ERROR_INSTALL_UI_FAILURE}
 
6177
 
 
6178
//
 
6179
// MessageId: ERROR_INSTALL_LOG_FAILURE
 
6180
//
 
6181
// MessageText:
 
6182
//
 
6183
//  Error opening installation log file. Verify that the specified log file location exists and that you can write to it.
 
6184
//
 
6185
  ERROR_INSTALL_LOG_FAILURE = DWORD(1622);
 
6186
  {$EXTERNALSYM ERROR_INSTALL_LOG_FAILURE}
 
6187
 
 
6188
//
 
6189
// MessageId: ERROR_INSTALL_LANGUAGE_UNSUPPORTED
 
6190
//
 
6191
// MessageText:
 
6192
//
 
6193
//  The language of this installation package is not supported by your system.
 
6194
//
 
6195
  ERROR_INSTALL_LANGUAGE_UNSUPPORTED = DWORD(1623);
 
6196
  {$EXTERNALSYM ERROR_INSTALL_LANGUAGE_UNSUPPORTED}
 
6197
 
 
6198
//
 
6199
// MessageId: ERROR_INSTALL_TRANSFORM_FAILURE
 
6200
//
 
6201
// MessageText:
 
6202
//
 
6203
//  Error applying transforms.  Verify that the specified transform paths are valid.
 
6204
//
 
6205
  ERROR_INSTALL_TRANSFORM_FAILURE = DWORD(1624);
 
6206
  {$EXTERNALSYM ERROR_INSTALL_TRANSFORM_FAILURE}
 
6207
 
 
6208
//
 
6209
// MessageId: ERROR_INSTALL_PACKAGE_REJECTED
 
6210
//
 
6211
// MessageText:
 
6212
//
 
6213
//  This installation is forbidden by system policy.  Contact your system administrator.
 
6214
//
 
6215
  ERROR_INSTALL_PACKAGE_REJECTED = DWORD(1625);
 
6216
  {$EXTERNALSYM ERROR_INSTALL_PACKAGE_REJECTED}
 
6217
 
 
6218
//
 
6219
// MessageId: ERROR_FUNCTION_NOT_CALLED
 
6220
//
 
6221
// MessageText:
 
6222
//
 
6223
//  Function could not be executed.
 
6224
//
 
6225
  ERROR_FUNCTION_NOT_CALLED = DWORD(1626);
 
6226
  {$EXTERNALSYM ERROR_FUNCTION_NOT_CALLED}
 
6227
 
 
6228
//
 
6229
// MessageId: ERROR_FUNCTION_FAILED
 
6230
//
 
6231
// MessageText:
 
6232
//
 
6233
//  Function failed during execution.
 
6234
//
 
6235
  ERROR_FUNCTION_FAILED = DWORD(1627);
 
6236
  {$EXTERNALSYM ERROR_FUNCTION_FAILED}
 
6237
 
 
6238
//
 
6239
// MessageId: ERROR_INVALID_TABLE
 
6240
//
 
6241
// MessageText:
 
6242
//
 
6243
//  Invalid or unknown table specified.
 
6244
//
 
6245
  ERROR_INVALID_TABLE = DWORD(1628);
 
6246
  {$EXTERNALSYM ERROR_INVALID_TABLE}
 
6247
 
 
6248
//
 
6249
// MessageId: ERROR_DATATYPE_MISMATCH
 
6250
//
 
6251
// MessageText:
 
6252
//
 
6253
//  Data supplied is of wrong type.
 
6254
//
 
6255
  ERROR_DATATYPE_MISMATCH = DWORD(1629);
 
6256
  {$EXTERNALSYM ERROR_DATATYPE_MISMATCH}
 
6257
 
 
6258
//
 
6259
// MessageId: ERROR_UNSUPPORTED_TYPE
 
6260
//
 
6261
// MessageText:
 
6262
//
 
6263
//  Data of this type is not supported.
 
6264
//
 
6265
  ERROR_UNSUPPORTED_TYPE = DWORD(1630);
 
6266
  {$EXTERNALSYM ERROR_UNSUPPORTED_TYPE}
 
6267
 
 
6268
//
 
6269
// MessageId: ERROR_CREATE_FAILED
 
6270
//
 
6271
// MessageText:
 
6272
//
 
6273
//  The Windows Installer service failed to start.  Contact your support personnel.
 
6274
//
 
6275
  ERROR_CREATE_FAILED = DWORD(1631);
 
6276
  {$EXTERNALSYM ERROR_CREATE_FAILED}
 
6277
 
 
6278
//
 
6279
// MessageId: ERROR_INSTALL_TEMP_UNWRITABLE
 
6280
//
 
6281
// MessageText:
 
6282
//
 
6283
//  The Temp folder is on a drive that is full or is inaccessible. Free up space on the drive or verify that you have write permission on the Temp folder.
 
6284
//
 
6285
  ERROR_INSTALL_TEMP_UNWRITABLE = DWORD(1632);
 
6286
  {$EXTERNALSYM ERROR_INSTALL_TEMP_UNWRITABLE}
 
6287
 
 
6288
//
 
6289
// MessageId: ERROR_INSTALL_PLATFORM_UNSUPPORTED
 
6290
//
 
6291
// MessageText:
 
6292
//
 
6293
//  This installation package is not supported by this processor type. Contact your product vendor.
 
6294
//
 
6295
  ERROR_INSTALL_PLATFORM_UNSUPPORTED = DWORD(1633);
 
6296
  {$EXTERNALSYM ERROR_INSTALL_PLATFORM_UNSUPPORTED}
 
6297
 
 
6298
//
 
6299
// MessageId: ERROR_INSTALL_NOTUSED
 
6300
//
 
6301
// MessageText:
 
6302
//
 
6303
//  Component not used on this computer.
 
6304
//
 
6305
  ERROR_INSTALL_NOTUSED = DWORD(1634);
 
6306
  {$EXTERNALSYM ERROR_INSTALL_NOTUSED}
 
6307
 
 
6308
//
 
6309
// MessageId: ERROR_PATCH_PACKAGE_OPEN_FAILED
 
6310
//
 
6311
// MessageText:
 
6312
//
 
6313
//  This patch package could not be opened.  Verify that the patch package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer patch package.
 
6314
//
 
6315
  ERROR_PATCH_PACKAGE_OPEN_FAILED = DWORD(1635);
 
6316
  {$EXTERNALSYM ERROR_PATCH_PACKAGE_OPEN_FAILED}
 
6317
 
 
6318
//
 
6319
// MessageId: ERROR_PATCH_PACKAGE_INVALID
 
6320
//
 
6321
// MessageText:
 
6322
//
 
6323
//  This patch package could not be opened.  Contact the application vendor to verify that this is a valid Windows Installer patch package.
 
6324
//
 
6325
  ERROR_PATCH_PACKAGE_INVALID = DWORD(1636);
 
6326
  {$EXTERNALSYM ERROR_PATCH_PACKAGE_INVALID}
 
6327
 
 
6328
//
 
6329
// MessageId: ERROR_PATCH_PACKAGE_UNSUPPORTED
 
6330
//
 
6331
// MessageText:
 
6332
//
 
6333
//  This patch package cannot be processed by the Windows Installer service.  You must install a Windows service pack that contains a newer version of the Windows Installer service.
 
6334
//
 
6335
  ERROR_PATCH_PACKAGE_UNSUPPORTED = DWORD(1637);
 
6336
  {$EXTERNALSYM ERROR_PATCH_PACKAGE_UNSUPPORTED}
 
6337
 
 
6338
//
 
6339
// MessageId: ERROR_PRODUCT_VERSION
 
6340
//
 
6341
// MessageText:
 
6342
//
 
6343
//  Another version of this product is already installed.  Installation of this version cannot continue.  To configure or remove the existing version of this product, use Add/Remove Programs on the Control Panel.
 
6344
//
 
6345
  ERROR_PRODUCT_VERSION = DWORD(1638);
 
6346
  {$EXTERNALSYM ERROR_PRODUCT_VERSION}
 
6347
 
 
6348
//
 
6349
// MessageId: ERROR_INVALID_COMMAND_LINE
 
6350
//
 
6351
// MessageText:
 
6352
//
 
6353
//  Invalid command line argument.  Consult the Windows Installer SDK for detailed command line help.
 
6354
//
 
6355
  ERROR_INVALID_COMMAND_LINE = DWORD(1639);
 
6356
  {$EXTERNALSYM ERROR_INVALID_COMMAND_LINE}
 
6357
 
 
6358
//
 
6359
// MessageId: ERROR_INSTALL_REMOTE_DISALLOWED
 
6360
//
 
6361
// MessageText:
 
6362
//
 
6363
//  Only administrators have permission to add, remove, or configure server software during a Terminal services remote session. If you want to install or configure software on the server, contact your network administrator.
 
6364
//
 
6365
  ERROR_INSTALL_REMOTE_DISALLOWED = DWORD(1640);
 
6366
  {$EXTERNALSYM ERROR_INSTALL_REMOTE_DISALLOWED}
 
6367
 
 
6368
//
 
6369
// MessageId: ERROR_SUCCESS_REBOOT_INITIATED
 
6370
//
 
6371
// MessageText:
 
6372
//
 
6373
//  The requested operation completed successfully.  The system will be restarted so the changes can take effect.
 
6374
//
 
6375
  ERROR_SUCCESS_REBOOT_INITIATED = DWORD(1641);
 
6376
  {$EXTERNALSYM ERROR_SUCCESS_REBOOT_INITIATED}
 
6377
 
 
6378
//
 
6379
// MessageId: ERROR_PATCH_TARGET_NOT_FOUND
 
6380
//
 
6381
// MessageText:
 
6382
//
 
6383
//  The upgrade patch cannot be installed by the Windows Installer service because the program to be upgraded may be missing, or the upgrade patch may update a different version of the program. Verify that the program to be upgraded exists on your computer an
 
6384
//  d that you have the correct upgrade patch.
 
6385
//
 
6386
  ERROR_PATCH_TARGET_NOT_FOUND = DWORD(1642);
 
6387
  {$EXTERNALSYM ERROR_PATCH_TARGET_NOT_FOUND}
 
6388
 
 
6389
//
 
6390
// MessageId: ERROR_PATCH_PACKAGE_REJECTED
 
6391
//
 
6392
// MessageText:
 
6393
//
 
6394
//  The patch package is not permitted by software restriction policy.
 
6395
//
 
6396
  ERROR_PATCH_PACKAGE_REJECTED = DWORD(1643);
 
6397
  {$EXTERNALSYM ERROR_PATCH_PACKAGE_REJECTED}
 
6398
 
 
6399
//
 
6400
// MessageId: ERROR_INSTALL_TRANSFORM_REJECTED
 
6401
//
 
6402
// MessageText:
 
6403
//
 
6404
//  One or more customizations are not permitted by software restriction policy.
 
6405
//
 
6406
  ERROR_INSTALL_TRANSFORM_REJECTED = DWORD(1644);
 
6407
  {$EXTERNALSYM ERROR_INSTALL_TRANSFORM_REJECTED}
 
6408
 
 
6409
//
 
6410
// MessageId: ERROR_INSTALL_REMOTE_PROHIBITED
 
6411
//
 
6412
// MessageText:
 
6413
//
 
6414
//  The Windows Installer does not permit installation from a Remote Desktop Connection.
 
6415
//
 
6416
  ERROR_INSTALL_REMOTE_PROHIBITED = DWORD(1645);
 
6417
  {$EXTERNALSYM ERROR_INSTALL_REMOTE_PROHIBITED}
 
6418
 
 
6419
// End of MSI error codes
 
6420
 
 
6421
 
 
6422
///////////////////////////
 
6423
//                       //
 
6424
//   RPC Status Codes    //
 
6425
//                       //
 
6426
///////////////////////////
 
6427
 
 
6428
//
 
6429
// MessageId: RPC_S_INVALID_STRING_BINDING
 
6430
//
 
6431
// MessageText:
 
6432
//
 
6433
//  The string binding is invalid.
 
6434
//
 
6435
  RPC_S_INVALID_STRING_BINDING = DWORD(1700);
 
6436
  {$EXTERNALSYM RPC_S_INVALID_STRING_BINDING}
 
6437
 
 
6438
//
 
6439
// MessageId: RPC_S_WRONG_KIND_OF_BINDING
 
6440
//
 
6441
// MessageText:
 
6442
//
 
6443
//  The binding handle is not the correct type.
 
6444
//
 
6445
  RPC_S_WRONG_KIND_OF_BINDING = DWORD(1701);
 
6446
  {$EXTERNALSYM RPC_S_WRONG_KIND_OF_BINDING}
 
6447
 
 
6448
//
 
6449
// MessageId: RPC_S_INVALID_BINDING
 
6450
//
 
6451
// MessageText:
 
6452
//
 
6453
//  The binding handle is invalid.
 
6454
//
 
6455
  RPC_S_INVALID_BINDING = DWORD(1702);
 
6456
  {$EXTERNALSYM RPC_S_INVALID_BINDING}
 
6457
 
 
6458
//
 
6459
// MessageId: RPC_S_PROTSEQ_NOT_SUPPORTED
 
6460
//
 
6461
// MessageText:
 
6462
//
 
6463
//  The RPC protocol sequence is not supported.
 
6464
//
 
6465
  RPC_S_PROTSEQ_NOT_SUPPORTED = DWORD(1703);
 
6466
  {$EXTERNALSYM RPC_S_PROTSEQ_NOT_SUPPORTED}
 
6467
 
 
6468
//
 
6469
// MessageId: RPC_S_INVALID_RPC_PROTSEQ
 
6470
//
 
6471
// MessageText:
 
6472
//
 
6473
//  The RPC protocol sequence is invalid.
 
6474
//
 
6475
  RPC_S_INVALID_RPC_PROTSEQ = DWORD(1704);
 
6476
  {$EXTERNALSYM RPC_S_INVALID_RPC_PROTSEQ}
 
6477
 
 
6478
//
 
6479
// MessageId: RPC_S_INVALID_STRING_UUID
 
6480
//
 
6481
// MessageText:
 
6482
//
 
6483
//  The string universal unique identifier (UUID) is invalid.
 
6484
//
 
6485
  RPC_S_INVALID_STRING_UUID = DWORD(1705);
 
6486
  {$EXTERNALSYM RPC_S_INVALID_STRING_UUID}
 
6487
 
 
6488
//
 
6489
// MessageId: RPC_S_INVALID_ENDPOINT_FORMAT
 
6490
//
 
6491
// MessageText:
 
6492
//
 
6493
//  The endpoint format is invalid.
 
6494
//
 
6495
  RPC_S_INVALID_ENDPOINT_FORMAT = DWORD(1706);
 
6496
  {$EXTERNALSYM RPC_S_INVALID_ENDPOINT_FORMAT}
 
6497
 
 
6498
//
 
6499
// MessageId: RPC_S_INVALID_NET_ADDR
 
6500
//
 
6501
// MessageText:
 
6502
//
 
6503
//  The network address is invalid.
 
6504
//
 
6505
  RPC_S_INVALID_NET_ADDR = DWORD(1707);
 
6506
  {$EXTERNALSYM RPC_S_INVALID_NET_ADDR}
 
6507
 
 
6508
//
 
6509
// MessageId: RPC_S_NO_ENDPOINT_FOUND
 
6510
//
 
6511
// MessageText:
 
6512
//
 
6513
//  No endpoint was found.
 
6514
//
 
6515
  RPC_S_NO_ENDPOINT_FOUND = DWORD(1708);
 
6516
  {$EXTERNALSYM RPC_S_NO_ENDPOINT_FOUND}
 
6517
 
 
6518
//
 
6519
// MessageId: RPC_S_INVALID_TIMEOUT
 
6520
//
 
6521
// MessageText:
 
6522
//
 
6523
//  The timeout value is invalid.
 
6524
//
 
6525
  RPC_S_INVALID_TIMEOUT = DWORD(1709);
 
6526
  {$EXTERNALSYM RPC_S_INVALID_TIMEOUT}
 
6527
 
 
6528
//
 
6529
// MessageId: RPC_S_OBJECT_NOT_FOUND
 
6530
//
 
6531
// MessageText:
 
6532
//
 
6533
//  The object universal unique identifier (UUID) was not found.
 
6534
//
 
6535
  RPC_S_OBJECT_NOT_FOUND = DWORD(1710);
 
6536
  {$EXTERNALSYM RPC_S_OBJECT_NOT_FOUND}
 
6537
 
 
6538
//
 
6539
// MessageId: RPC_S_ALREADY_REGISTERED
 
6540
//
 
6541
// MessageText:
 
6542
//
 
6543
//  The object universal unique identifier (UUID) has already been registered.
 
6544
//
 
6545
  RPC_S_ALREADY_REGISTERED = DWORD(1711);
 
6546
  {$EXTERNALSYM RPC_S_ALREADY_REGISTERED}
 
6547
 
 
6548
//
 
6549
// MessageId: RPC_S_TYPE_ALREADY_REGISTERED
 
6550
//
 
6551
// MessageText:
 
6552
//
 
6553
//  The type universal unique identifier (UUID) has already been registered.
 
6554
//
 
6555
  RPC_S_TYPE_ALREADY_REGISTERED = DWORD(1712);
 
6556
  {$EXTERNALSYM RPC_S_TYPE_ALREADY_REGISTERED}
 
6557
 
 
6558
//
 
6559
// MessageId: RPC_S_ALREADY_LISTENING
 
6560
//
 
6561
// MessageText:
 
6562
//
 
6563
//  The RPC server is already listening.
 
6564
//
 
6565
  RPC_S_ALREADY_LISTENING = DWORD(1713);
 
6566
  {$EXTERNALSYM RPC_S_ALREADY_LISTENING}
 
6567
 
 
6568
//
 
6569
// MessageId: RPC_S_NO_PROTSEQS_REGISTERED
 
6570
//
 
6571
// MessageText:
 
6572
//
 
6573
//  No protocol sequences have been registered.
 
6574
//
 
6575
  RPC_S_NO_PROTSEQS_REGISTERED = DWORD(1714);
 
6576
  {$EXTERNALSYM RPC_S_NO_PROTSEQS_REGISTERED}
 
6577
 
 
6578
//
 
6579
// MessageId: RPC_S_NOT_LISTENING
 
6580
//
 
6581
// MessageText:
 
6582
//
 
6583
//  The RPC server is not listening.
 
6584
//
 
6585
  RPC_S_NOT_LISTENING = DWORD(1715);
 
6586
  {$EXTERNALSYM RPC_S_NOT_LISTENING}
 
6587
 
 
6588
//
 
6589
// MessageId: RPC_S_UNKNOWN_MGR_TYPE
 
6590
//
 
6591
// MessageText:
 
6592
//
 
6593
//  The manager type is unknown.
 
6594
//
 
6595
  RPC_S_UNKNOWN_MGR_TYPE = DWORD(1716);
 
6596
  {$EXTERNALSYM RPC_S_UNKNOWN_MGR_TYPE}
 
6597
 
 
6598
//
 
6599
// MessageId: RPC_S_UNKNOWN_IF
 
6600
//
 
6601
// MessageText:
 
6602
//
 
6603
//  The interface is unknown.
 
6604
//
 
6605
  RPC_S_UNKNOWN_IF = DWORD(1717);
 
6606
  {$EXTERNALSYM RPC_S_UNKNOWN_IF}
 
6607
 
 
6608
//
 
6609
// MessageId: RPC_S_NO_BINDINGS
 
6610
//
 
6611
// MessageText:
 
6612
//
 
6613
//  There are no bindings.
 
6614
//
 
6615
  RPC_S_NO_BINDINGS = DWORD(1718);
 
6616
  {$EXTERNALSYM RPC_S_NO_BINDINGS}
 
6617
 
 
6618
//
 
6619
// MessageId: RPC_S_NO_PROTSEQS
 
6620
//
 
6621
// MessageText:
 
6622
//
 
6623
//  There are no protocol sequences.
 
6624
//
 
6625
  RPC_S_NO_PROTSEQS = DWORD(1719);
 
6626
  {$EXTERNALSYM RPC_S_NO_PROTSEQS}
 
6627
 
 
6628
//
 
6629
// MessageId: RPC_S_CANT_CREATE_ENDPOINT
 
6630
//
 
6631
// MessageText:
 
6632
//
 
6633
//  The endpoint cannot be created.
 
6634
//
 
6635
  RPC_S_CANT_CREATE_ENDPOINT = DWORD(1720);
 
6636
  {$EXTERNALSYM RPC_S_CANT_CREATE_ENDPOINT}
 
6637
 
 
6638
//
 
6639
// MessageId: RPC_S_OUT_OF_RESOURCES
 
6640
//
 
6641
// MessageText:
 
6642
//
 
6643
//  Not enough resources are available to complete this operation.
 
6644
//
 
6645
  RPC_S_OUT_OF_RESOURCES = DWORD(1721);
 
6646
  {$EXTERNALSYM RPC_S_OUT_OF_RESOURCES}
 
6647
 
 
6648
//
 
6649
// MessageId: RPC_S_SERVER_UNAVAILABLE
 
6650
//
 
6651
// MessageText:
 
6652
//
 
6653
//  The RPC server is unavailable.
 
6654
//
 
6655
  RPC_S_SERVER_UNAVAILABLE = DWORD(1722);
 
6656
  {$EXTERNALSYM RPC_S_SERVER_UNAVAILABLE}
 
6657
 
 
6658
//
 
6659
// MessageId: RPC_S_SERVER_TOO_BUSY
 
6660
//
 
6661
// MessageText:
 
6662
//
 
6663
//  The RPC server is too busy to complete this operation.
 
6664
//
 
6665
  RPC_S_SERVER_TOO_BUSY = DWORD(1723);
 
6666
  {$EXTERNALSYM RPC_S_SERVER_TOO_BUSY}
 
6667
 
 
6668
//
 
6669
// MessageId: RPC_S_INVALID_NETWORK_OPTIONS
 
6670
//
 
6671
// MessageText:
 
6672
//
 
6673
//  The network options are invalid.
 
6674
//
 
6675
  RPC_S_INVALID_NETWORK_OPTIONS = DWORD(1724);
 
6676
  {$EXTERNALSYM RPC_S_INVALID_NETWORK_OPTIONS}
 
6677
 
 
6678
//
 
6679
// MessageId: RPC_S_NO_CALL_ACTIVE
 
6680
//
 
6681
// MessageText:
 
6682
//
 
6683
//  There are no remote procedure calls active on this thread.
 
6684
//
 
6685
  RPC_S_NO_CALL_ACTIVE = DWORD(1725);
 
6686
  {$EXTERNALSYM RPC_S_NO_CALL_ACTIVE}
 
6687
 
 
6688
//
 
6689
// MessageId: RPC_S_CALL_FAILED
 
6690
//
 
6691
// MessageText:
 
6692
//
 
6693
//  The remote procedure call failed.
 
6694
//
 
6695
  RPC_S_CALL_FAILED = DWORD(1726);
 
6696
  {$EXTERNALSYM RPC_S_CALL_FAILED}
 
6697
 
 
6698
//
 
6699
// MessageId: RPC_S_CALL_FAILED_DNE
 
6700
//
 
6701
// MessageText:
 
6702
//
 
6703
//  The remote procedure call failed and did not execute.
 
6704
//
 
6705
  RPC_S_CALL_FAILED_DNE = DWORD(1727);
 
6706
  {$EXTERNALSYM RPC_S_CALL_FAILED_DNE}
 
6707
 
 
6708
//
 
6709
// MessageId: RPC_S_PROTOCOL_ERROR
 
6710
//
 
6711
// MessageText:
 
6712
//
 
6713
//  A remote procedure call (RPC) protocol error occurred.
 
6714
//
 
6715
  RPC_S_PROTOCOL_ERROR = DWORD(1728);
 
6716
  {$EXTERNALSYM RPC_S_PROTOCOL_ERROR}
 
6717
 
 
6718
//
 
6719
// MessageId: RPC_S_UNSUPPORTED_TRANS_SYN
 
6720
//
 
6721
// MessageText:
 
6722
//
 
6723
//  The transfer syntax is not supported by the RPC server.
 
6724
//
 
6725
  RPC_S_UNSUPPORTED_TRANS_SYN = DWORD(1730);
 
6726
  {$EXTERNALSYM RPC_S_UNSUPPORTED_TRANS_SYN}
 
6727
 
 
6728
//
 
6729
// MessageId: RPC_S_UNSUPPORTED_TYPE
 
6730
//
 
6731
// MessageText:
 
6732
//
 
6733
//  The universal unique identifier (UUID) type is not supported.
 
6734
//
 
6735
  RPC_S_UNSUPPORTED_TYPE = DWORD(1732);
 
6736
  {$EXTERNALSYM RPC_S_UNSUPPORTED_TYPE}
 
6737
 
 
6738
//
 
6739
// MessageId: RPC_S_INVALID_TAG
 
6740
//
 
6741
// MessageText:
 
6742
//
 
6743
//  The tag is invalid.
 
6744
//
 
6745
  RPC_S_INVALID_TAG = DWORD(1733);
 
6746
  {$EXTERNALSYM RPC_S_INVALID_TAG}
 
6747
 
 
6748
//
 
6749
// MessageId: RPC_S_INVALID_BOUND
 
6750
//
 
6751
// MessageText:
 
6752
//
 
6753
//  The array bounds are invalid.
 
6754
//
 
6755
  RPC_S_INVALID_BOUND = DWORD(1734);
 
6756
  {$EXTERNALSYM RPC_S_INVALID_BOUND}
 
6757
 
 
6758
//
 
6759
// MessageId: RPC_S_NO_ENTRY_NAME
 
6760
//
 
6761
// MessageText:
 
6762
//
 
6763
//  The binding does not contain an entry name.
 
6764
//
 
6765
  RPC_S_NO_ENTRY_NAME = DWORD(1735);
 
6766
  {$EXTERNALSYM RPC_S_NO_ENTRY_NAME}
 
6767
 
 
6768
//
 
6769
// MessageId: RPC_S_INVALID_NAME_SYNTAX
 
6770
//
 
6771
// MessageText:
 
6772
//
 
6773
//  The name syntax is invalid.
 
6774
//
 
6775
  RPC_S_INVALID_NAME_SYNTAX = DWORD(1736);
 
6776
  {$EXTERNALSYM RPC_S_INVALID_NAME_SYNTAX}
 
6777
 
 
6778
//
 
6779
// MessageId: RPC_S_UNSUPPORTED_NAME_SYNTAX
 
6780
//
 
6781
// MessageText:
 
6782
//
 
6783
//  The name syntax is not supported.
 
6784
//
 
6785
  RPC_S_UNSUPPORTED_NAME_SYNTAX = DWORD(1737);
 
6786
  {$EXTERNALSYM RPC_S_UNSUPPORTED_NAME_SYNTAX}
 
6787
 
 
6788
//
 
6789
// MessageId: RPC_S_UUID_NO_ADDRESS
 
6790
//
 
6791
// MessageText:
 
6792
//
 
6793
//  No network address is available to use to construct a universal unique identifier (UUID).
 
6794
//
 
6795
  RPC_S_UUID_NO_ADDRESS = DWORD(1739);
 
6796
  {$EXTERNALSYM RPC_S_UUID_NO_ADDRESS}
 
6797
 
 
6798
//
 
6799
// MessageId: RPC_S_DUPLICATE_ENDPOINT
 
6800
//
 
6801
// MessageText:
 
6802
//
 
6803
//  The endpoint is a duplicate.
 
6804
//
 
6805
  RPC_S_DUPLICATE_ENDPOINT = DWORD(1740);
 
6806
  {$EXTERNALSYM RPC_S_DUPLICATE_ENDPOINT}
 
6807
 
 
6808
//
 
6809
// MessageId: RPC_S_UNKNOWN_AUTHN_TYPE
 
6810
//
 
6811
// MessageText:
 
6812
//
 
6813
//  The authentication type is unknown.
 
6814
//
 
6815
  RPC_S_UNKNOWN_AUTHN_TYPE = DWORD(1741);
 
6816
  {$EXTERNALSYM RPC_S_UNKNOWN_AUTHN_TYPE}
 
6817
 
 
6818
//
 
6819
// MessageId: RPC_S_MAX_CALLS_TOO_SMALL
 
6820
//
 
6821
// MessageText:
 
6822
//
 
6823
//  The maximum number of calls is too small.
 
6824
//
 
6825
  RPC_S_MAX_CALLS_TOO_SMALL = DWORD(1742);
 
6826
  {$EXTERNALSYM RPC_S_MAX_CALLS_TOO_SMALL}
 
6827
 
 
6828
//
 
6829
// MessageId: RPC_S_STRING_TOO_LONG
 
6830
//
 
6831
// MessageText:
 
6832
//
 
6833
//  The string is too long.
 
6834
//
 
6835
  RPC_S_STRING_TOO_LONG = DWORD(1743);
 
6836
  {$EXTERNALSYM RPC_S_STRING_TOO_LONG}
 
6837
 
 
6838
//
 
6839
// MessageId: RPC_S_PROTSEQ_NOT_FOUND
 
6840
//
 
6841
// MessageText:
 
6842
//
 
6843
//  The RPC protocol sequence was not found.
 
6844
//
 
6845
  RPC_S_PROTSEQ_NOT_FOUND = DWORD(1744);
 
6846
  {$EXTERNALSYM RPC_S_PROTSEQ_NOT_FOUND}
 
6847
 
 
6848
//
 
6849
// MessageId: RPC_S_PROCNUM_OUT_OF_RANGE
 
6850
//
 
6851
// MessageText:
 
6852
//
 
6853
//  The procedure number is out of range.
 
6854
//
 
6855
  RPC_S_PROCNUM_OUT_OF_RANGE = DWORD(1745);
 
6856
  {$EXTERNALSYM RPC_S_PROCNUM_OUT_OF_RANGE}
 
6857
 
 
6858
//
 
6859
// MessageId: RPC_S_BINDING_HAS_NO_AUTH
 
6860
//
 
6861
// MessageText:
 
6862
//
 
6863
//  The binding does not contain any authentication information.
 
6864
//
 
6865
  RPC_S_BINDING_HAS_NO_AUTH = DWORD(1746);
 
6866
  {$EXTERNALSYM RPC_S_BINDING_HAS_NO_AUTH}
 
6867
 
 
6868
//
 
6869
// MessageId: RPC_S_UNKNOWN_AUTHN_SERVICE
 
6870
//
 
6871
// MessageText:
 
6872
//
 
6873
//  The authentication service is unknown.
 
6874
//
 
6875
  RPC_S_UNKNOWN_AUTHN_SERVICE = DWORD(1747);
 
6876
  {$EXTERNALSYM RPC_S_UNKNOWN_AUTHN_SERVICE}
 
6877
 
 
6878
//
 
6879
// MessageId: RPC_S_UNKNOWN_AUTHN_LEVEL
 
6880
//
 
6881
// MessageText:
 
6882
//
 
6883
//  The authentication level is unknown.
 
6884
//
 
6885
  RPC_S_UNKNOWN_AUTHN_LEVEL = DWORD(1748);
 
6886
  {$EXTERNALSYM RPC_S_UNKNOWN_AUTHN_LEVEL}
 
6887
 
 
6888
//
 
6889
// MessageId: RPC_S_INVALID_AUTH_IDENTITY
 
6890
//
 
6891
// MessageText:
 
6892
//
 
6893
//  The security context is invalid.
 
6894
//
 
6895
  RPC_S_INVALID_AUTH_IDENTITY = DWORD(1749);
 
6896
  {$EXTERNALSYM RPC_S_INVALID_AUTH_IDENTITY}
 
6897
 
 
6898
//
 
6899
// MessageId: RPC_S_UNKNOWN_AUTHZ_SERVICE
 
6900
//
 
6901
// MessageText:
 
6902
//
 
6903
//  The authorization service is unknown.
 
6904
//
 
6905
  RPC_S_UNKNOWN_AUTHZ_SERVICE = DWORD(1750);
 
6906
  {$EXTERNALSYM RPC_S_UNKNOWN_AUTHZ_SERVICE}
 
6907
 
 
6908
//
 
6909
// MessageId: EPT_S_INVALID_ENTRY
 
6910
//
 
6911
// MessageText:
 
6912
//
 
6913
//  The entry is invalid.
 
6914
//
 
6915
  EPT_S_INVALID_ENTRY = DWORD(1751);
 
6916
  {$EXTERNALSYM EPT_S_INVALID_ENTRY}
 
6917
 
 
6918
//
 
6919
// MessageId: EPT_S_CANT_PERFORM_OP
 
6920
//
 
6921
// MessageText:
 
6922
//
 
6923
//  The server endpoint cannot perform the operation.
 
6924
//
 
6925
  EPT_S_CANT_PERFORM_OP = DWORD(1752);
 
6926
  {$EXTERNALSYM EPT_S_CANT_PERFORM_OP}
 
6927
 
 
6928
//
 
6929
// MessageId: EPT_S_NOT_REGISTERED
 
6930
//
 
6931
// MessageText:
 
6932
//
 
6933
//  There are no more endpoints available from the endpoint mapper.
 
6934
//
 
6935
  EPT_S_NOT_REGISTERED = DWORD(1753);
 
6936
  {$EXTERNALSYM EPT_S_NOT_REGISTERED}
 
6937
 
 
6938
//
 
6939
// MessageId: RPC_S_NOTHING_TO_EXPORT
 
6940
//
 
6941
// MessageText:
 
6942
//
 
6943
//  No interfaces have been exported.
 
6944
//
 
6945
  RPC_S_NOTHING_TO_EXPORT = DWORD(1754);
 
6946
  {$EXTERNALSYM RPC_S_NOTHING_TO_EXPORT}
 
6947
 
 
6948
//
 
6949
// MessageId: RPC_S_INCOMPLETE_NAME
 
6950
//
 
6951
// MessageText:
 
6952
//
 
6953
//  The entry name is incomplete.
 
6954
//
 
6955
  RPC_S_INCOMPLETE_NAME = DWORD(1755);
 
6956
  {$EXTERNALSYM RPC_S_INCOMPLETE_NAME}
 
6957
 
 
6958
//
 
6959
// MessageId: RPC_S_INVALID_VERS_OPTION
 
6960
//
 
6961
// MessageText:
 
6962
//
 
6963
//  The version option is invalid.
 
6964
//
 
6965
  RPC_S_INVALID_VERS_OPTION = DWORD(1756);
 
6966
  {$EXTERNALSYM RPC_S_INVALID_VERS_OPTION}
 
6967
 
 
6968
//
 
6969
// MessageId: RPC_S_NO_MORE_MEMBERS
 
6970
//
 
6971
// MessageText:
 
6972
//
 
6973
//  There are no more members.
 
6974
//
 
6975
  RPC_S_NO_MORE_MEMBERS = DWORD(1757);
 
6976
  {$EXTERNALSYM RPC_S_NO_MORE_MEMBERS}
 
6977
 
 
6978
//
 
6979
// MessageId: RPC_S_NOT_ALL_OBJS_UNEXPORTED
 
6980
//
 
6981
// MessageText:
 
6982
//
 
6983
//  There is nothing to unexport.
 
6984
//
 
6985
  RPC_S_NOT_ALL_OBJS_UNEXPORTED = DWORD(1758);
 
6986
  {$EXTERNALSYM RPC_S_NOT_ALL_OBJS_UNEXPORTED}
 
6987
 
 
6988
//
 
6989
// MessageId: RPC_S_INTERFACE_NOT_FOUND
 
6990
//
 
6991
// MessageText:
 
6992
//
 
6993
//  The interface was not found.
 
6994
//
 
6995
  RPC_S_INTERFACE_NOT_FOUND = DWORD(1759);
 
6996
  {$EXTERNALSYM RPC_S_INTERFACE_NOT_FOUND}
 
6997
 
 
6998
//
 
6999
// MessageId: RPC_S_ENTRY_ALREADY_EXISTS
 
7000
//
 
7001
// MessageText:
 
7002
//
 
7003
//  The entry already exists.
 
7004
//
 
7005
  RPC_S_ENTRY_ALREADY_EXISTS = DWORD(1760);
 
7006
  {$EXTERNALSYM RPC_S_ENTRY_ALREADY_EXISTS}
 
7007
 
 
7008
//
 
7009
// MessageId: RPC_S_ENTRY_NOT_FOUND
 
7010
//
 
7011
// MessageText:
 
7012
//
 
7013
//  The entry is not found.
 
7014
//
 
7015
  RPC_S_ENTRY_NOT_FOUND = DWORD(1761);
 
7016
  {$EXTERNALSYM RPC_S_ENTRY_NOT_FOUND}
 
7017
 
 
7018
//
 
7019
// MessageId: RPC_S_NAME_SERVICE_UNAVAILABLE
 
7020
//
 
7021
// MessageText:
 
7022
//
 
7023
//  The name service is unavailable.
 
7024
//
 
7025
  RPC_S_NAME_SERVICE_UNAVAILABLE = DWORD(1762);
 
7026
  {$EXTERNALSYM RPC_S_NAME_SERVICE_UNAVAILABLE}
 
7027
 
 
7028
//
 
7029
// MessageId: RPC_S_INVALID_NAF_ID
 
7030
//
 
7031
// MessageText:
 
7032
//
 
7033
//  The network address family is invalid.
 
7034
//
 
7035
  RPC_S_INVALID_NAF_ID = DWORD(1763);
 
7036
  {$EXTERNALSYM RPC_S_INVALID_NAF_ID}
 
7037
 
 
7038
//
 
7039
// MessageId: RPC_S_CANNOT_SUPPORT
 
7040
//
 
7041
// MessageText:
 
7042
//
 
7043
//  The requested operation is not supported.
 
7044
//
 
7045
  RPC_S_CANNOT_SUPPORT = DWORD(1764);
 
7046
  {$EXTERNALSYM RPC_S_CANNOT_SUPPORT}
 
7047
 
 
7048
//
 
7049
// MessageId: RPC_S_NO_CONTEXT_AVAILABLE
 
7050
//
 
7051
// MessageText:
 
7052
//
 
7053
//  No security context is available to allow impersonation.
 
7054
//
 
7055
  RPC_S_NO_CONTEXT_AVAILABLE = DWORD(1765);
 
7056
  {$EXTERNALSYM RPC_S_NO_CONTEXT_AVAILABLE}
 
7057
 
 
7058
//
 
7059
// MessageId: RPC_S_INTERNAL_ERROR
 
7060
//
 
7061
// MessageText:
 
7062
//
 
7063
//  An internal error occurred in a remote procedure call (RPC).
 
7064
//
 
7065
  RPC_S_INTERNAL_ERROR = DWORD(1766);
 
7066
  {$EXTERNALSYM RPC_S_INTERNAL_ERROR}
 
7067
 
 
7068
//
 
7069
// MessageId: RPC_S_ZERO_DIVIDE
 
7070
//
 
7071
// MessageText:
 
7072
//
 
7073
//  The RPC server attempted an integer division by zero.
 
7074
//
 
7075
  RPC_S_ZERO_DIVIDE = DWORD(1767);
 
7076
  {$EXTERNALSYM RPC_S_ZERO_DIVIDE}
 
7077
 
 
7078
//
 
7079
// MessageId: RPC_S_ADDRESS_ERROR
 
7080
//
 
7081
// MessageText:
 
7082
//
 
7083
//  An addressing error occurred in the RPC server.
 
7084
//
 
7085
  RPC_S_ADDRESS_ERROR = DWORD(1768);
 
7086
  {$EXTERNALSYM RPC_S_ADDRESS_ERROR}
 
7087
 
 
7088
//
 
7089
// MessageId: RPC_S_FP_DIV_ZERO
 
7090
//
 
7091
// MessageText:
 
7092
//
 
7093
//  A floating-point operation at the RPC server caused a division by zero.
 
7094
//
 
7095
  RPC_S_FP_DIV_ZERO = DWORD(1769);
 
7096
  {$EXTERNALSYM RPC_S_FP_DIV_ZERO}
 
7097
 
 
7098
//
 
7099
// MessageId: RPC_S_FP_UNDERFLOW
 
7100
//
 
7101
// MessageText:
 
7102
//
 
7103
//  A floating-point underflow occurred at the RPC server.
 
7104
//
 
7105
  RPC_S_FP_UNDERFLOW = DWORD(1770);
 
7106
  {$EXTERNALSYM RPC_S_FP_UNDERFLOW}
 
7107
 
 
7108
//
 
7109
// MessageId: RPC_S_FP_OVERFLOW
 
7110
//
 
7111
// MessageText:
 
7112
//
 
7113
//  A floating-point overflow occurred at the RPC server.
 
7114
//
 
7115
  RPC_S_FP_OVERFLOW = DWORD(1771);
 
7116
  {$EXTERNALSYM RPC_S_FP_OVERFLOW}
 
7117
 
 
7118
//
 
7119
// MessageId: RPC_X_NO_MORE_ENTRIES
 
7120
//
 
7121
// MessageText:
 
7122
//
 
7123
//  The list of RPC servers available for the binding of auto handles has been exhausted.
 
7124
//
 
7125
  RPC_X_NO_MORE_ENTRIES = DWORD(1772);
 
7126
  {$EXTERNALSYM RPC_X_NO_MORE_ENTRIES}
 
7127
 
 
7128
//
 
7129
// MessageId: RPC_X_SS_CHAR_TRANS_OPEN_FAIL
 
7130
//
 
7131
// MessageText:
 
7132
//
 
7133
//  Unable to open the character translation table file.
 
7134
//
 
7135
  RPC_X_SS_CHAR_TRANS_OPEN_FAIL = DWORD(1773);
 
7136
  {$EXTERNALSYM RPC_X_SS_CHAR_TRANS_OPEN_FAIL}
 
7137
 
 
7138
//
 
7139
// MessageId: RPC_X_SS_CHAR_TRANS_SHORT_FILE
 
7140
//
 
7141
// MessageText:
 
7142
//
 
7143
//  The file containing the character translation table has fewer than 512 bytes.
 
7144
//
 
7145
  RPC_X_SS_CHAR_TRANS_SHORT_FILE = DWORD(1774);
 
7146
  {$EXTERNALSYM RPC_X_SS_CHAR_TRANS_SHORT_FILE}
 
7147
 
 
7148
//
 
7149
// MessageId: RPC_X_SS_IN_NULL_CONTEXT
 
7150
//
 
7151
// MessageText:
 
7152
//
 
7153
//  A null context handle was passed from the client to the host during a remote procedure call.
 
7154
//
 
7155
  RPC_X_SS_IN_NULL_CONTEXT = DWORD(1775);
 
7156
  {$EXTERNALSYM RPC_X_SS_IN_NULL_CONTEXT}
 
7157
 
 
7158
//
 
7159
// MessageId: RPC_X_SS_CONTEXT_DAMAGED
 
7160
//
 
7161
// MessageText:
 
7162
//
 
7163
//  The context handle changed during a remote procedure call.
 
7164
//
 
7165
  RPC_X_SS_CONTEXT_DAMAGED = DWORD(1777);
 
7166
  {$EXTERNALSYM RPC_X_SS_CONTEXT_DAMAGED}
 
7167
 
 
7168
//
 
7169
// MessageId: RPC_X_SS_HANDLES_MISMATCH
 
7170
//
 
7171
// MessageText:
 
7172
//
 
7173
//  The binding handles passed to a remote procedure call do not match.
 
7174
//
 
7175
  RPC_X_SS_HANDLES_MISMATCH = DWORD(1778);
 
7176
  {$EXTERNALSYM RPC_X_SS_HANDLES_MISMATCH}
 
7177
 
 
7178
//
 
7179
// MessageId: RPC_X_SS_CANNOT_GET_CALL_HANDLE
 
7180
//
 
7181
// MessageText:
 
7182
//
 
7183
//  The stub is unable to get the remote procedure call handle.
 
7184
//
 
7185
  RPC_X_SS_CANNOT_GET_CALL_HANDLE = DWORD(1779);
 
7186
  {$EXTERNALSYM RPC_X_SS_CANNOT_GET_CALL_HANDLE}
 
7187
 
 
7188
//
 
7189
// MessageId: RPC_X_NULL_REF_POINTER
 
7190
//
 
7191
// MessageText:
 
7192
//
 
7193
//  A null reference pointer was passed to the stub.
 
7194
//
 
7195
  RPC_X_NULL_REF_POINTER = DWORD(1780);
 
7196
  {$EXTERNALSYM RPC_X_NULL_REF_POINTER}
 
7197
 
 
7198
//
 
7199
// MessageId: RPC_X_ENUM_VALUE_OUT_OF_RANGE
 
7200
//
 
7201
// MessageText:
 
7202
//
 
7203
//  The enumeration value is out of range.
 
7204
//
 
7205
  RPC_X_ENUM_VALUE_OUT_OF_RANGE = DWORD(1781);
 
7206
  {$EXTERNALSYM RPC_X_ENUM_VALUE_OUT_OF_RANGE}
 
7207
 
 
7208
//
 
7209
// MessageId: RPC_X_BYTE_COUNT_TOO_SMALL
 
7210
//
 
7211
// MessageText:
 
7212
//
 
7213
//  The byte count is too small.
 
7214
//
 
7215
  RPC_X_BYTE_COUNT_TOO_SMALL = DWORD(1782);
 
7216
  {$EXTERNALSYM RPC_X_BYTE_COUNT_TOO_SMALL}
 
7217
 
 
7218
//
 
7219
// MessageId: RPC_X_BAD_STUB_DATA
 
7220
//
 
7221
// MessageText:
 
7222
//
 
7223
//  The stub received bad data.
 
7224
//
 
7225
  RPC_X_BAD_STUB_DATA = DWORD(1783);
 
7226
  {$EXTERNALSYM RPC_X_BAD_STUB_DATA}
 
7227
 
 
7228
//
 
7229
// MessageId: ERROR_INVALID_USER_BUFFER
 
7230
//
 
7231
// MessageText:
 
7232
//
 
7233
//  The supplied user buffer is not valid for the requested operation.
 
7234
//
 
7235
  ERROR_INVALID_USER_BUFFER = DWORD(1784);
 
7236
  {$EXTERNALSYM ERROR_INVALID_USER_BUFFER}
 
7237
 
 
7238
//
 
7239
// MessageId: ERROR_UNRECOGNIZED_MEDIA
 
7240
//
 
7241
// MessageText:
 
7242
//
 
7243
//  The disk media is not recognized. It may not be formatted.
 
7244
//
 
7245
  ERROR_UNRECOGNIZED_MEDIA = DWORD(1785);
 
7246
  {$EXTERNALSYM ERROR_UNRECOGNIZED_MEDIA}
 
7247
 
 
7248
//
 
7249
// MessageId: ERROR_NO_TRUST_LSA_SECRET
 
7250
//
 
7251
// MessageText:
 
7252
//
 
7253
//  The workstation does not have a trust secret.
 
7254
//
 
7255
  ERROR_NO_TRUST_LSA_SECRET = DWORD(1786);
 
7256
  {$EXTERNALSYM ERROR_NO_TRUST_LSA_SECRET}
 
7257
 
 
7258
//
 
7259
// MessageId: ERROR_NO_TRUST_SAM_ACCOUNT
 
7260
//
 
7261
// MessageText:
 
7262
//
 
7263
//  The security database on the server does not have a computer account for this workstation trust relationship.
 
7264
//
 
7265
  ERROR_NO_TRUST_SAM_ACCOUNT = DWORD(1787);
 
7266
  {$EXTERNALSYM ERROR_NO_TRUST_SAM_ACCOUNT}
 
7267
 
 
7268
//
 
7269
// MessageId: ERROR_TRUSTED_DOMAIN_FAILURE
 
7270
//
 
7271
// MessageText:
 
7272
//
 
7273
//  The trust relationship between the primary domain and the trusted domain failed.
 
7274
//
 
7275
  ERROR_TRUSTED_DOMAIN_FAILURE = DWORD(1788);
 
7276
  {$EXTERNALSYM ERROR_TRUSTED_DOMAIN_FAILURE}
 
7277
 
 
7278
//
 
7279
// MessageId: ERROR_TRUSTED_RELATIONSHIP_FAILURE
 
7280
//
 
7281
// MessageText:
 
7282
//
 
7283
//  The trust relationship between this workstation and the primary domain failed.
 
7284
//
 
7285
  ERROR_TRUSTED_RELATIONSHIP_FAILURE = DWORD(1789);
 
7286
  {$EXTERNALSYM ERROR_TRUSTED_RELATIONSHIP_FAILURE}
 
7287
 
 
7288
//
 
7289
// MessageId: ERROR_TRUST_FAILURE
 
7290
//
 
7291
// MessageText:
 
7292
//
 
7293
//  The network logon failed.
 
7294
//
 
7295
  ERROR_TRUST_FAILURE = DWORD(1790);
 
7296
  {$EXTERNALSYM ERROR_TRUST_FAILURE}
 
7297
 
 
7298
//
 
7299
// MessageId: RPC_S_CALL_IN_PROGRESS
 
7300
//
 
7301
// MessageText:
 
7302
//
 
7303
//  A remote procedure call is already in progress for this thread.
 
7304
//
 
7305
  RPC_S_CALL_IN_PROGRESS = DWORD(1791);
 
7306
  {$EXTERNALSYM RPC_S_CALL_IN_PROGRESS}
 
7307
 
 
7308
//
 
7309
// MessageId: ERROR_NETLOGON_NOT_STARTED
 
7310
//
 
7311
// MessageText:
 
7312
//
 
7313
//  An attempt was made to logon, but the network logon service was not started.
 
7314
//
 
7315
  ERROR_NETLOGON_NOT_STARTED = DWORD(1792);
 
7316
  {$EXTERNALSYM ERROR_NETLOGON_NOT_STARTED}
 
7317
 
 
7318
//
 
7319
// MessageId: ERROR_ACCOUNT_EXPIRED
 
7320
//
 
7321
// MessageText:
 
7322
//
 
7323
//  The user's account has expired.
 
7324
//
 
7325
  ERROR_ACCOUNT_EXPIRED = DWORD(1793);
 
7326
  {$EXTERNALSYM ERROR_ACCOUNT_EXPIRED}
 
7327
 
 
7328
//
 
7329
// MessageId: ERROR_REDIRECTOR_HAS_OPEN_HANDLES
 
7330
//
 
7331
// MessageText:
 
7332
//
 
7333
//  The redirector is in use and cannot be unloaded.
 
7334
//
 
7335
  ERROR_REDIRECTOR_HAS_OPEN_HANDLES = DWORD(1794);
 
7336
  {$EXTERNALSYM ERROR_REDIRECTOR_HAS_OPEN_HANDLES}
 
7337
 
 
7338
//
 
7339
// MessageId: ERROR_PRINTER_DRIVER_ALREADY_INSTALLED
 
7340
//
 
7341
// MessageText:
 
7342
//
 
7343
//  The specified printer driver is already installed.
 
7344
//
 
7345
  ERROR_PRINTER_DRIVER_ALREADY_INSTALLED = DWORD(1795);
 
7346
  {$EXTERNALSYM ERROR_PRINTER_DRIVER_ALREADY_INSTALLED}
 
7347
 
 
7348
//
 
7349
// MessageId: ERROR_UNKNOWN_PORT
 
7350
//
 
7351
// MessageText:
 
7352
//
 
7353
//  The specified port is unknown.
 
7354
//
 
7355
  ERROR_UNKNOWN_PORT = DWORD(1796);
 
7356
  {$EXTERNALSYM ERROR_UNKNOWN_PORT}
 
7357
 
 
7358
//
 
7359
// MessageId: ERROR_UNKNOWN_PRINTER_DRIVER
 
7360
//
 
7361
// MessageText:
 
7362
//
 
7363
//  The printer driver is unknown.
 
7364
//
 
7365
  ERROR_UNKNOWN_PRINTER_DRIVER = DWORD(1797);
 
7366
  {$EXTERNALSYM ERROR_UNKNOWN_PRINTER_DRIVER}
 
7367
 
 
7368
//
 
7369
// MessageId: ERROR_UNKNOWN_PRINTPROCESSOR
 
7370
//
 
7371
// MessageText:
 
7372
//
 
7373
//  The print processor is unknown.
 
7374
//
 
7375
  ERROR_UNKNOWN_PRINTPROCESSOR = DWORD(1798);
 
7376
  {$EXTERNALSYM ERROR_UNKNOWN_PRINTPROCESSOR}
 
7377
 
 
7378
//
 
7379
// MessageId: ERROR_INVALID_SEPARATOR_FILE
 
7380
//
 
7381
// MessageText:
 
7382
//
 
7383
//  The specified separator file is invalid.
 
7384
//
 
7385
  ERROR_INVALID_SEPARATOR_FILE = DWORD(1799);
 
7386
  {$EXTERNALSYM ERROR_INVALID_SEPARATOR_FILE}
 
7387
 
 
7388
//
 
7389
// MessageId: ERROR_INVALID_PRIORITY
 
7390
//
 
7391
// MessageText:
 
7392
//
 
7393
//  The specified priority is invalid.
 
7394
//
 
7395
  ERROR_INVALID_PRIORITY = DWORD(1800);
 
7396
  {$EXTERNALSYM ERROR_INVALID_PRIORITY}
 
7397
 
 
7398
//
 
7399
// MessageId: ERROR_INVALID_PRINTER_NAME
 
7400
//
 
7401
// MessageText:
 
7402
//
 
7403
//  The printer name is invalid.
 
7404
//
 
7405
  ERROR_INVALID_PRINTER_NAME = DWORD(1801);
 
7406
  {$EXTERNALSYM ERROR_INVALID_PRINTER_NAME}
 
7407
 
 
7408
//
 
7409
// MessageId: ERROR_PRINTER_ALREADY_EXISTS
 
7410
//
 
7411
// MessageText:
 
7412
//
 
7413
//  The printer already exists.
 
7414
//
 
7415
  ERROR_PRINTER_ALREADY_EXISTS = DWORD(1802);
 
7416
  {$EXTERNALSYM ERROR_PRINTER_ALREADY_EXISTS}
 
7417
 
 
7418
//
 
7419
// MessageId: ERROR_INVALID_PRINTER_COMMAND
 
7420
//
 
7421
// MessageText:
 
7422
//
 
7423
//  The printer command is invalid.
 
7424
//
 
7425
  ERROR_INVALID_PRINTER_COMMAND = DWORD(1803);
 
7426
  {$EXTERNALSYM ERROR_INVALID_PRINTER_COMMAND}
 
7427
 
 
7428
//
 
7429
// MessageId: ERROR_INVALID_DATATYPE
 
7430
//
 
7431
// MessageText:
 
7432
//
 
7433
//  The specified datatype is invalid.
 
7434
//
 
7435
  ERROR_INVALID_DATATYPE = DWORD(1804);
 
7436
  {$EXTERNALSYM ERROR_INVALID_DATATYPE}
 
7437
 
 
7438
//
 
7439
// MessageId: ERROR_INVALID_ENVIRONMENT
 
7440
//
 
7441
// MessageText:
 
7442
//
 
7443
//  The environment specified is invalid.
 
7444
//
 
7445
  ERROR_INVALID_ENVIRONMENT = DWORD(1805);
 
7446
  {$EXTERNALSYM ERROR_INVALID_ENVIRONMENT}
 
7447
 
 
7448
//
 
7449
// MessageId: RPC_S_NO_MORE_BINDINGS
 
7450
//
 
7451
// MessageText:
 
7452
//
 
7453
//  There are no more bindings.
 
7454
//
 
7455
  RPC_S_NO_MORE_BINDINGS = DWORD(1806);
 
7456
  {$EXTERNALSYM RPC_S_NO_MORE_BINDINGS}
 
7457
 
 
7458
//
 
7459
// MessageId: ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT
 
7460
//
 
7461
// MessageText:
 
7462
//
 
7463
//  The account used is an interdomain trust account. Use your global user account or local user account to access this server.
 
7464
//
 
7465
  ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT = DWORD(1807);
 
7466
  {$EXTERNALSYM ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT}
 
7467
 
 
7468
//
 
7469
// MessageId: ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT
 
7470
//
 
7471
// MessageText:
 
7472
//
 
7473
//  The account used is a computer account. Use your global user account or local user account to access this server.
 
7474
//
 
7475
  ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT = DWORD(1808);
 
7476
  {$EXTERNALSYM ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT}
 
7477
 
 
7478
//
 
7479
// MessageId: ERROR_NOLOGON_SERVER_TRUST_ACCOUNT
 
7480
//
 
7481
// MessageText:
 
7482
//
 
7483
//  The account used is a server trust account. Use your global user account or local user account to access this server.
 
7484
//
 
7485
  ERROR_NOLOGON_SERVER_TRUST_ACCOUNT = DWORD(1809);
 
7486
  {$EXTERNALSYM ERROR_NOLOGON_SERVER_TRUST_ACCOUNT}
 
7487
 
 
7488
//
 
7489
// MessageId: ERROR_DOMAIN_TRUST_INCONSISTENT
 
7490
//
 
7491
// MessageText:
 
7492
//
 
7493
//  The name or security ID (SID) of the domain specified is inconsistent with the trust information for that domain.
 
7494
//
 
7495
  ERROR_DOMAIN_TRUST_INCONSISTENT = DWORD(1810);
 
7496
  {$EXTERNALSYM ERROR_DOMAIN_TRUST_INCONSISTENT}
 
7497
 
 
7498
//
 
7499
// MessageId: ERROR_SERVER_HAS_OPEN_HANDLES
 
7500
//
 
7501
// MessageText:
 
7502
//
 
7503
//  The server is in use and cannot be unloaded.
 
7504
//
 
7505
  ERROR_SERVER_HAS_OPEN_HANDLES = DWORD(1811);
 
7506
  {$EXTERNALSYM ERROR_SERVER_HAS_OPEN_HANDLES}
 
7507
 
 
7508
//
 
7509
// MessageId: ERROR_RESOURCE_DATA_NOT_FOUND
 
7510
//
 
7511
// MessageText:
 
7512
//
 
7513
//  The specified image file did not contain a resource section.
 
7514
//
 
7515
  ERROR_RESOURCE_DATA_NOT_FOUND = DWORD(1812);
 
7516
  {$EXTERNALSYM ERROR_RESOURCE_DATA_NOT_FOUND}
 
7517
 
 
7518
//
 
7519
// MessageId: ERROR_RESOURCE_TYPE_NOT_FOUND
 
7520
//
 
7521
// MessageText:
 
7522
//
 
7523
//  The specified resource type cannot be found in the image file.
 
7524
//
 
7525
  ERROR_RESOURCE_TYPE_NOT_FOUND = DWORD(1813);
 
7526
  {$EXTERNALSYM ERROR_RESOURCE_TYPE_NOT_FOUND}
 
7527
 
 
7528
//
 
7529
// MessageId: ERROR_RESOURCE_NAME_NOT_FOUND
 
7530
//
 
7531
// MessageText:
 
7532
//
 
7533
//  The specified resource name cannot be found in the image file.
 
7534
//
 
7535
  ERROR_RESOURCE_NAME_NOT_FOUND = DWORD(1814);
 
7536
  {$EXTERNALSYM ERROR_RESOURCE_NAME_NOT_FOUND}
 
7537
 
 
7538
//
 
7539
// MessageId: ERROR_RESOURCE_LANG_NOT_FOUND
 
7540
//
 
7541
// MessageText:
 
7542
//
 
7543
//  The specified resource language ID cannot be found in the image file.
 
7544
//
 
7545
  ERROR_RESOURCE_LANG_NOT_FOUND = DWORD(1815);
 
7546
  {$EXTERNALSYM ERROR_RESOURCE_LANG_NOT_FOUND}
 
7547
 
 
7548
//
 
7549
// MessageId: ERROR_NOT_ENOUGH_QUOTA
 
7550
//
 
7551
// MessageText:
 
7552
//
 
7553
//  Not enough quota is available to process this command.
 
7554
//
 
7555
  ERROR_NOT_ENOUGH_QUOTA = DWORD(1816);
 
7556
  {$EXTERNALSYM ERROR_NOT_ENOUGH_QUOTA}
 
7557
 
 
7558
//
 
7559
// MessageId: RPC_S_NO_INTERFACES
 
7560
//
 
7561
// MessageText:
 
7562
//
 
7563
//  No interfaces have been registered.
 
7564
//
 
7565
  RPC_S_NO_INTERFACES = DWORD(1817);
 
7566
  {$EXTERNALSYM RPC_S_NO_INTERFACES}
 
7567
 
 
7568
//
 
7569
// MessageId: RPC_S_CALL_CANCELLED
 
7570
//
 
7571
// MessageText:
 
7572
//
 
7573
//  The remote procedure call was cancelled.
 
7574
//
 
7575
  RPC_S_CALL_CANCELLED = DWORD(1818);
 
7576
  {$EXTERNALSYM RPC_S_CALL_CANCELLED}
 
7577
 
 
7578
//
 
7579
// MessageId: RPC_S_BINDING_INCOMPLETE
 
7580
//
 
7581
// MessageText:
 
7582
//
 
7583
//  The binding handle does not contain all required information.
 
7584
//
 
7585
  RPC_S_BINDING_INCOMPLETE = DWORD(1819);
 
7586
  {$EXTERNALSYM RPC_S_BINDING_INCOMPLETE}
 
7587
 
 
7588
//
 
7589
// MessageId: RPC_S_COMM_FAILURE
 
7590
//
 
7591
// MessageText:
 
7592
//
 
7593
//  A communications failure occurred during a remote procedure call.
 
7594
//
 
7595
  RPC_S_COMM_FAILURE = DWORD(1820);
 
7596
  {$EXTERNALSYM RPC_S_COMM_FAILURE}
 
7597
 
 
7598
//
 
7599
// MessageId: RPC_S_UNSUPPORTED_AUTHN_LEVEL
 
7600
//
 
7601
// MessageText:
 
7602
//
 
7603
//  The requested authentication level is not supported.
 
7604
//
 
7605
  RPC_S_UNSUPPORTED_AUTHN_LEVEL = DWORD(1821);
 
7606
  {$EXTERNALSYM RPC_S_UNSUPPORTED_AUTHN_LEVEL}
 
7607
 
 
7608
//
 
7609
// MessageId: RPC_S_NO_PRINC_NAME
 
7610
//
 
7611
// MessageText:
 
7612
//
 
7613
//  No principal name registered.
 
7614
//
 
7615
  RPC_S_NO_PRINC_NAME = DWORD(1822);
 
7616
  {$EXTERNALSYM RPC_S_NO_PRINC_NAME}
 
7617
 
 
7618
//
 
7619
// MessageId: RPC_S_NOT_RPC_ERROR
 
7620
//
 
7621
// MessageText:
 
7622
//
 
7623
//  The error specified is not a valid Windows RPC error code.
 
7624
//
 
7625
  RPC_S_NOT_RPC_ERROR = DWORD(1823);
 
7626
  {$EXTERNALSYM RPC_S_NOT_RPC_ERROR}
 
7627
 
 
7628
//
 
7629
// MessageId: RPC_S_UUID_LOCAL_ONLY
 
7630
//
 
7631
// MessageText:
 
7632
//
 
7633
//  A UUID that is valid only on this computer has been allocated.
 
7634
//
 
7635
  RPC_S_UUID_LOCAL_ONLY = DWORD(1824);
 
7636
  {$EXTERNALSYM RPC_S_UUID_LOCAL_ONLY}
 
7637
 
 
7638
//
 
7639
// MessageId: RPC_S_SEC_PKG_ERROR
 
7640
//
 
7641
// MessageText:
 
7642
//
 
7643
//  A security package specific error occurred.
 
7644
//
 
7645
  RPC_S_SEC_PKG_ERROR = DWORD(1825);
 
7646
  {$EXTERNALSYM RPC_S_SEC_PKG_ERROR}
 
7647
 
 
7648
//
 
7649
// MessageId: RPC_S_NOT_CANCELLED
 
7650
//
 
7651
// MessageText:
 
7652
//
 
7653
//  Thread is not canceled.
 
7654
//
 
7655
  RPC_S_NOT_CANCELLED = DWORD(1826);
 
7656
  {$EXTERNALSYM RPC_S_NOT_CANCELLED}
 
7657
 
 
7658
//
 
7659
// MessageId: RPC_X_INVALID_ES_ACTION
 
7660
//
 
7661
// MessageText:
 
7662
//
 
7663
//  Invalid operation on the encoding/decoding handle.
 
7664
//
 
7665
  RPC_X_INVALID_ES_ACTION = DWORD(1827);
 
7666
  {$EXTERNALSYM RPC_X_INVALID_ES_ACTION}
 
7667
 
 
7668
//
 
7669
// MessageId: RPC_X_WRONG_ES_VERSION
 
7670
//
 
7671
// MessageText:
 
7672
//
 
7673
//  Incompatible version of the serializing package.
 
7674
//
 
7675
  RPC_X_WRONG_ES_VERSION = DWORD(1828);
 
7676
  {$EXTERNALSYM RPC_X_WRONG_ES_VERSION}
 
7677
 
 
7678
//
 
7679
// MessageId: RPC_X_WRONG_STUB_VERSION
 
7680
//
 
7681
// MessageText:
 
7682
//
 
7683
//  Incompatible version of the RPC stub.
 
7684
//
 
7685
  RPC_X_WRONG_STUB_VERSION = DWORD(1829);
 
7686
  {$EXTERNALSYM RPC_X_WRONG_STUB_VERSION}
 
7687
 
 
7688
//
 
7689
// MessageId: RPC_X_INVALID_PIPE_OBJECT
 
7690
//
 
7691
// MessageText:
 
7692
//
 
7693
//  The RPC pipe object is invalid or corrupted.
 
7694
//
 
7695
  RPC_X_INVALID_PIPE_OBJECT = DWORD(1830);
 
7696
  {$EXTERNALSYM RPC_X_INVALID_PIPE_OBJECT}
 
7697
 
 
7698
//
 
7699
// MessageId: RPC_X_WRONG_PIPE_ORDER
 
7700
//
 
7701
// MessageText:
 
7702
//
 
7703
//  An invalid operation was attempted on an RPC pipe object.
 
7704
//
 
7705
  RPC_X_WRONG_PIPE_ORDER = DWORD(1831);
 
7706
  {$EXTERNALSYM RPC_X_WRONG_PIPE_ORDER}
 
7707
 
 
7708
//
 
7709
// MessageId: RPC_X_WRONG_PIPE_VERSION
 
7710
//
 
7711
// MessageText:
 
7712
//
 
7713
//  Unsupported RPC pipe version.
 
7714
//
 
7715
  RPC_X_WRONG_PIPE_VERSION = DWORD(1832);
 
7716
  {$EXTERNALSYM RPC_X_WRONG_PIPE_VERSION}
 
7717
 
 
7718
//
 
7719
// MessageId: RPC_S_GROUP_MEMBER_NOT_FOUND
 
7720
//
 
7721
// MessageText:
 
7722
//
 
7723
//  The group member was not found.
 
7724
//
 
7725
  RPC_S_GROUP_MEMBER_NOT_FOUND = DWORD(1898);
 
7726
  {$EXTERNALSYM RPC_S_GROUP_MEMBER_NOT_FOUND}
 
7727
 
 
7728
//
 
7729
// MessageId: EPT_S_CANT_CREATE
 
7730
//
 
7731
// MessageText:
 
7732
//
 
7733
//  The endpoint mapper database entry could not be created.
 
7734
//
 
7735
  EPT_S_CANT_CREATE = DWORD(1899);
 
7736
  {$EXTERNALSYM EPT_S_CANT_CREATE}
 
7737
 
 
7738
//
 
7739
// MessageId: RPC_S_INVALID_OBJECT
 
7740
//
 
7741
// MessageText:
 
7742
//
 
7743
//  The object universal unique identifier (UUID) is the nil UUID.
 
7744
//
 
7745
  RPC_S_INVALID_OBJECT = DWORD(1900);
 
7746
  {$EXTERNALSYM RPC_S_INVALID_OBJECT}
 
7747
 
 
7748
//
 
7749
// MessageId: ERROR_INVALID_TIME
 
7750
//
 
7751
// MessageText:
 
7752
//
 
7753
//  The specified time is invalid.
 
7754
//
 
7755
  ERROR_INVALID_TIME = DWORD(1901);
 
7756
  {$EXTERNALSYM ERROR_INVALID_TIME}
 
7757
 
 
7758
//
 
7759
// MessageId: ERROR_INVALID_FORM_NAME
 
7760
//
 
7761
// MessageText:
 
7762
//
 
7763
//  The specified form name is invalid.
 
7764
//
 
7765
  ERROR_INVALID_FORM_NAME = DWORD(1902);
 
7766
  {$EXTERNALSYM ERROR_INVALID_FORM_NAME}
 
7767
 
 
7768
//
 
7769
// MessageId: ERROR_INVALID_FORM_SIZE
 
7770
//
 
7771
// MessageText:
 
7772
//
 
7773
//  The specified form size is invalid.
 
7774
//
 
7775
  ERROR_INVALID_FORM_SIZE = DWORD(1903);
 
7776
  {$EXTERNALSYM ERROR_INVALID_FORM_SIZE}
 
7777
 
 
7778
//
 
7779
// MessageId: ERROR_ALREADY_WAITING
 
7780
//
 
7781
// MessageText:
 
7782
//
 
7783
//  The specified printer handle is already being waited on
 
7784
//
 
7785
  ERROR_ALREADY_WAITING = DWORD(1904);
 
7786
  {$EXTERNALSYM ERROR_ALREADY_WAITING}
 
7787
 
 
7788
//
 
7789
// MessageId: ERROR_PRINTER_DELETED
 
7790
//
 
7791
// MessageText:
 
7792
//
 
7793
//  The specified printer has been deleted.
 
7794
//
 
7795
  ERROR_PRINTER_DELETED = DWORD(1905);
 
7796
  {$EXTERNALSYM ERROR_PRINTER_DELETED}
 
7797
 
 
7798
//
 
7799
// MessageId: ERROR_INVALID_PRINTER_STATE
 
7800
//
 
7801
// MessageText:
 
7802
//
 
7803
//  The state of the printer is invalid.
 
7804
//
 
7805
  ERROR_INVALID_PRINTER_STATE = DWORD(1906);
 
7806
  {$EXTERNALSYM ERROR_INVALID_PRINTER_STATE}
 
7807
 
 
7808
//
 
7809
// MessageId: ERROR_PASSWORD_MUST_CHANGE
 
7810
//
 
7811
// MessageText:
 
7812
//
 
7813
//  The user's password must be changed before logging on the first time.
 
7814
//
 
7815
  ERROR_PASSWORD_MUST_CHANGE = DWORD(1907);
 
7816
  {$EXTERNALSYM ERROR_PASSWORD_MUST_CHANGE}
 
7817
 
 
7818
//
 
7819
// MessageId: ERROR_DOMAIN_CONTROLLER_NOT_FOUND
 
7820
//
 
7821
// MessageText:
 
7822
//
 
7823
//  Could not find the domain controller for this domain.
 
7824
//
 
7825
  ERROR_DOMAIN_CONTROLLER_NOT_FOUND = DWORD(1908);
 
7826
  {$EXTERNALSYM ERROR_DOMAIN_CONTROLLER_NOT_FOUND}
 
7827
 
 
7828
//
 
7829
// MessageId: ERROR_ACCOUNT_LOCKED_OUT
 
7830
//
 
7831
// MessageText:
 
7832
//
 
7833
//  The referenced account is currently locked out and may not be logged on to.
 
7834
//
 
7835
  ERROR_ACCOUNT_LOCKED_OUT = DWORD(1909);
 
7836
  {$EXTERNALSYM ERROR_ACCOUNT_LOCKED_OUT}
 
7837
 
 
7838
//
 
7839
// MessageId: OR_INVALID_OXID
 
7840
//
 
7841
// MessageText:
 
7842
//
 
7843
//  The object exporter specified was not found.
 
7844
//
 
7845
  OR_INVALID_OXID = DWORD(1910);
 
7846
  {$EXTERNALSYM OR_INVALID_OXID}
 
7847
 
 
7848
//
 
7849
// MessageId: OR_INVALID_OID
 
7850
//
 
7851
// MessageText:
 
7852
//
 
7853
//  The object specified was not found.
 
7854
//
 
7855
  OR_INVALID_OID = DWORD(1911);
 
7856
  {$EXTERNALSYM OR_INVALID_OID}
 
7857
 
 
7858
//
 
7859
// MessageId: OR_INVALID_SET
 
7860
//
 
7861
// MessageText:
 
7862
//
 
7863
//  The object resolver set specified was not found.
 
7864
//
 
7865
  OR_INVALID_SET = DWORD(1912);
 
7866
  {$EXTERNALSYM OR_INVALID_SET}
 
7867
 
 
7868
//
 
7869
// MessageId: RPC_S_SEND_INCOMPLETE
 
7870
//
 
7871
// MessageText:
 
7872
//
 
7873
//  Some data remains to be sent in the request buffer.
 
7874
//
 
7875
  RPC_S_SEND_INCOMPLETE = DWORD(1913);
 
7876
  {$EXTERNALSYM RPC_S_SEND_INCOMPLETE}
 
7877
 
 
7878
//
 
7879
// MessageId: RPC_S_INVALID_ASYNC_HANDLE
 
7880
//
 
7881
// MessageText:
 
7882
//
 
7883
//  Invalid asynchronous remote procedure call handle.
 
7884
//
 
7885
  RPC_S_INVALID_ASYNC_HANDLE = DWORD(1914);
 
7886
  {$EXTERNALSYM RPC_S_INVALID_ASYNC_HANDLE}
 
7887
 
 
7888
//
 
7889
// MessageId: RPC_S_INVALID_ASYNC_CALL
 
7890
//
 
7891
// MessageText:
 
7892
//
 
7893
//  Invalid asynchronous RPC call handle for this operation.
 
7894
//
 
7895
  RPC_S_INVALID_ASYNC_CALL = DWORD(1915);
 
7896
  {$EXTERNALSYM RPC_S_INVALID_ASYNC_CALL}
 
7897
 
 
7898
//
 
7899
// MessageId: RPC_X_PIPE_CLOSED
 
7900
//
 
7901
// MessageText:
 
7902
//
 
7903
//  The RPC pipe object has already been closed.
 
7904
//
 
7905
  RPC_X_PIPE_CLOSED = DWORD(1916);
 
7906
  {$EXTERNALSYM RPC_X_PIPE_CLOSED}
 
7907
 
 
7908
//
 
7909
// MessageId: RPC_X_PIPE_DISCIPLINE_ERROR
 
7910
//
 
7911
// MessageText:
 
7912
//
 
7913
//  The RPC call completed before all pipes were processed.
 
7914
//
 
7915
  RPC_X_PIPE_DISCIPLINE_ERROR = DWORD(1917);
 
7916
  {$EXTERNALSYM RPC_X_PIPE_DISCIPLINE_ERROR}
 
7917
 
 
7918
//
 
7919
// MessageId: RPC_X_PIPE_EMPTY
 
7920
//
 
7921
// MessageText:
 
7922
//
 
7923
//  No more data is available from the RPC pipe.
 
7924
//
 
7925
  RPC_X_PIPE_EMPTY = DWORD(1918);
 
7926
  {$EXTERNALSYM RPC_X_PIPE_EMPTY}
 
7927
 
 
7928
//
 
7929
// MessageId: ERROR_NO_SITENAME
 
7930
//
 
7931
// MessageText:
 
7932
//
 
7933
//  No site name is available for this machine.
 
7934
//
 
7935
  ERROR_NO_SITENAME = DWORD(1919);
 
7936
  {$EXTERNALSYM ERROR_NO_SITENAME}
 
7937
 
 
7938
//
 
7939
// MessageId: ERROR_CANT_ACCESS_FILE
 
7940
//
 
7941
// MessageText:
 
7942
//
 
7943
//  The file can not be accessed by the system.
 
7944
//
 
7945
  ERROR_CANT_ACCESS_FILE = DWORD(1920);
 
7946
  {$EXTERNALSYM ERROR_CANT_ACCESS_FILE}
 
7947
 
 
7948
//
 
7949
// MessageId: ERROR_CANT_RESOLVE_FILENAME
 
7950
//
 
7951
// MessageText:
 
7952
//
 
7953
//  The name of the file cannot be resolved by the system.
 
7954
//
 
7955
  ERROR_CANT_RESOLVE_FILENAME = DWORD(1921);
 
7956
  {$EXTERNALSYM ERROR_CANT_RESOLVE_FILENAME}
 
7957
 
 
7958
//
 
7959
// MessageId: RPC_S_ENTRY_TYPE_MISMATCH
 
7960
//
 
7961
// MessageText:
 
7962
//
 
7963
//  The entry is not of the expected type.
 
7964
//
 
7965
  RPC_S_ENTRY_TYPE_MISMATCH = DWORD(1922);
 
7966
  {$EXTERNALSYM RPC_S_ENTRY_TYPE_MISMATCH}
 
7967
 
 
7968
//
 
7969
// MessageId: RPC_S_NOT_ALL_OBJS_EXPORTED
 
7970
//
 
7971
// MessageText:
 
7972
//
 
7973
//  Not all object UUIDs could be exported to the specified entry.
 
7974
//
 
7975
  RPC_S_NOT_ALL_OBJS_EXPORTED = DWORD(1923);
 
7976
  {$EXTERNALSYM RPC_S_NOT_ALL_OBJS_EXPORTED}
 
7977
 
 
7978
//
 
7979
// MessageId: RPC_S_INTERFACE_NOT_EXPORTED
 
7980
//
 
7981
// MessageText:
 
7982
//
 
7983
//  Interface could not be exported to the specified entry.
 
7984
//
 
7985
  RPC_S_INTERFACE_NOT_EXPORTED = DWORD(1924);
 
7986
  {$EXTERNALSYM RPC_S_INTERFACE_NOT_EXPORTED}
 
7987
 
 
7988
//
 
7989
// MessageId: RPC_S_PROFILE_NOT_ADDED
 
7990
//
 
7991
// MessageText:
 
7992
//
 
7993
//  The specified profile entry could not be added.
 
7994
//
 
7995
  RPC_S_PROFILE_NOT_ADDED = DWORD(1925);
 
7996
  {$EXTERNALSYM RPC_S_PROFILE_NOT_ADDED}
 
7997
 
 
7998
//
 
7999
// MessageId: RPC_S_PRF_ELT_NOT_ADDED
 
8000
//
 
8001
// MessageText:
 
8002
//
 
8003
//  The specified profile element could not be added.
 
8004
//
 
8005
  RPC_S_PRF_ELT_NOT_ADDED = DWORD(1926);
 
8006
  {$EXTERNALSYM RPC_S_PRF_ELT_NOT_ADDED}
 
8007
 
 
8008
//
 
8009
// MessageId: RPC_S_PRF_ELT_NOT_REMOVED
 
8010
//
 
8011
// MessageText:
 
8012
//
 
8013
//  The specified profile element could not be removed.
 
8014
//
 
8015
  RPC_S_PRF_ELT_NOT_REMOVED = DWORD(1927);
 
8016
  {$EXTERNALSYM RPC_S_PRF_ELT_NOT_REMOVED}
 
8017
 
 
8018
//
 
8019
// MessageId: RPC_S_GRP_ELT_NOT_ADDED
 
8020
//
 
8021
// MessageText:
 
8022
//
 
8023
//  The group element could not be added.
 
8024
//
 
8025
  RPC_S_GRP_ELT_NOT_ADDED = DWORD(1928);
 
8026
  {$EXTERNALSYM RPC_S_GRP_ELT_NOT_ADDED}
 
8027
 
 
8028
//
 
8029
// MessageId: RPC_S_GRP_ELT_NOT_REMOVED
 
8030
//
 
8031
// MessageText:
 
8032
//
 
8033
//  The group element could not be removed.
 
8034
//
 
8035
  RPC_S_GRP_ELT_NOT_REMOVED = DWORD(1929);
 
8036
  {$EXTERNALSYM RPC_S_GRP_ELT_NOT_REMOVED}
 
8037
 
 
8038
//
 
8039
// MessageId: ERROR_KM_DRIVER_BLOCKED
 
8040
//
 
8041
// MessageText:
 
8042
//
 
8043
//  The printer driver is not compatible with a policy enabled on your computer that blocks NT 4.0 drivers.
 
8044
//
 
8045
  ERROR_KM_DRIVER_BLOCKED = DWORD(1930);
 
8046
  {$EXTERNALSYM ERROR_KM_DRIVER_BLOCKED}
 
8047
 
 
8048
//
 
8049
// MessageId: ERROR_CONTEXT_EXPIRED
 
8050
//
 
8051
// MessageText:
 
8052
//
 
8053
//  The context has expired and can no longer be used.
 
8054
//
 
8055
  ERROR_CONTEXT_EXPIRED = DWORD(1931);
 
8056
  {$EXTERNALSYM ERROR_CONTEXT_EXPIRED}
 
8057
 
 
8058
//
 
8059
// MessageId: ERROR_PER_USER_TRUST_QUOTA_EXCEEDED
 
8060
//
 
8061
// MessageText:
 
8062
//
 
8063
//  The current user's delegated trust creation quota has been exceeded.
 
8064
//
 
8065
  ERROR_PER_USER_TRUST_QUOTA_EXCEEDED = DWORD(1932);
 
8066
  {$EXTERNALSYM ERROR_PER_USER_TRUST_QUOTA_EXCEEDED}
 
8067
 
 
8068
//
 
8069
// MessageId: ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED
 
8070
//
 
8071
// MessageText:
 
8072
//
 
8073
//  The total delegated trust creation quota has been exceeded.
 
8074
//
 
8075
  ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED = DWORD(1933);
 
8076
  {$EXTERNALSYM ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED}
 
8077
 
 
8078
//
 
8079
// MessageId: ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED
 
8080
//
 
8081
// MessageText:
 
8082
//
 
8083
//  The current user's delegated trust deletion quota has been exceeded.
 
8084
//
 
8085
  ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED = DWORD(1934);
 
8086
  {$EXTERNALSYM ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED}
 
8087
 
 
8088
//
 
8089
// MessageId: ERROR_AUTHENTICATION_FIREWALL_FAILED
 
8090
//
 
8091
// MessageText:
 
8092
//
 
8093
//  Logon Failure: The machine you are logging onto is protected by an authentication firewall.  The specified account is not allowed to authenticate to the machine.
 
8094
//
 
8095
  ERROR_AUTHENTICATION_FIREWALL_FAILED = DWORD(1935);
 
8096
  {$EXTERNALSYM ERROR_AUTHENTICATION_FIREWALL_FAILED}
 
8097
 
 
8098
//
 
8099
// MessageId: ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED
 
8100
//
 
8101
// MessageText:
 
8102
//
 
8103
//  Remote connections to the Print Spooler are blocked by a policy set on your machine.
 
8104
//
 
8105
  ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED = DWORD(1936);
 
8106
  {$EXTERNALSYM ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED}
 
8107
 
 
8108
 
 
8109
 
 
8110
///////////////////////////
 
8111
//                       //
 
8112
//   OpenGL Error Code   //
 
8113
//                       //
 
8114
///////////////////////////
 
8115
 
 
8116
//
 
8117
// MessageId: ERROR_INVALID_PIXEL_FORMAT
 
8118
//
 
8119
// MessageText:
 
8120
//
 
8121
//  The pixel format is invalid.
 
8122
//
 
8123
  ERROR_INVALID_PIXEL_FORMAT = DWORD(2000);
 
8124
  {$EXTERNALSYM ERROR_INVALID_PIXEL_FORMAT}
 
8125
 
 
8126
//
 
8127
// MessageId: ERROR_BAD_DRIVER
 
8128
//
 
8129
// MessageText:
 
8130
//
 
8131
//  The specified driver is invalid.
 
8132
//
 
8133
  ERROR_BAD_DRIVER = DWORD(2001);
 
8134
  {$EXTERNALSYM ERROR_BAD_DRIVER}
 
8135
 
 
8136
//
 
8137
// MessageId: ERROR_INVALID_WINDOW_STYLE
 
8138
//
 
8139
// MessageText:
 
8140
//
 
8141
//  The window style or class attribute is invalid for this operation.
 
8142
//
 
8143
  ERROR_INVALID_WINDOW_STYLE = DWORD(2002);
 
8144
  {$EXTERNALSYM ERROR_INVALID_WINDOW_STYLE}
 
8145
 
 
8146
//
 
8147
// MessageId: ERROR_METAFILE_NOT_SUPPORTED
 
8148
//
 
8149
// MessageText:
 
8150
//
 
8151
//  The requested metafile operation is not supported.
 
8152
//
 
8153
  ERROR_METAFILE_NOT_SUPPORTED = DWORD(2003);
 
8154
  {$EXTERNALSYM ERROR_METAFILE_NOT_SUPPORTED}
 
8155
 
 
8156
//
 
8157
// MessageId: ERROR_TRANSFORM_NOT_SUPPORTED
 
8158
//
 
8159
// MessageText:
 
8160
//
 
8161
//  The requested transformation operation is not supported.
 
8162
//
 
8163
  ERROR_TRANSFORM_NOT_SUPPORTED = DWORD(2004);
 
8164
  {$EXTERNALSYM ERROR_TRANSFORM_NOT_SUPPORTED}
 
8165
 
 
8166
//
 
8167
// MessageId: ERROR_CLIPPING_NOT_SUPPORTED
 
8168
//
 
8169
// MessageText:
 
8170
//
 
8171
//  The requested clipping operation is not supported.
 
8172
//
 
8173
  ERROR_CLIPPING_NOT_SUPPORTED = DWORD(2005);
 
8174
  {$EXTERNALSYM ERROR_CLIPPING_NOT_SUPPORTED}
 
8175
 
 
8176
// End of OpenGL error codes
 
8177
 
 
8178
 
 
8179
///////////////////////////////////////////
 
8180
//                                       //
 
8181
//   Image Color Management Error Code   //
 
8182
//                                       //
 
8183
///////////////////////////////////////////
 
8184
 
 
8185
//
 
8186
// MessageId: ERROR_INVALID_CMM
 
8187
//
 
8188
// MessageText:
 
8189
//
 
8190
//  The specified color management module is invalid.
 
8191
//
 
8192
  ERROR_INVALID_CMM = DWORD(2010);
 
8193
  {$EXTERNALSYM ERROR_INVALID_CMM}
 
8194
 
 
8195
//
 
8196
// MessageId: ERROR_INVALID_PROFILE
 
8197
//
 
8198
// MessageText:
 
8199
//
 
8200
//  The specified color profile is invalid.
 
8201
//
 
8202
  ERROR_INVALID_PROFILE = DWORD(2011);
 
8203
  {$EXTERNALSYM ERROR_INVALID_PROFILE}
 
8204
 
 
8205
//
 
8206
// MessageId: ERROR_TAG_NOT_FOUND
 
8207
//
 
8208
// MessageText:
 
8209
//
 
8210
//  The specified tag was not found.
 
8211
//
 
8212
  ERROR_TAG_NOT_FOUND = DWORD(2012);
 
8213
  {$EXTERNALSYM ERROR_TAG_NOT_FOUND}
 
8214
 
 
8215
//
 
8216
// MessageId: ERROR_TAG_NOT_PRESENT
 
8217
//
 
8218
// MessageText:
 
8219
//
 
8220
//  A required tag is not present.
 
8221
//
 
8222
  ERROR_TAG_NOT_PRESENT = DWORD(2013);
 
8223
  {$EXTERNALSYM ERROR_TAG_NOT_PRESENT}
 
8224
 
 
8225
//
 
8226
// MessageId: ERROR_DUPLICATE_TAG
 
8227
//
 
8228
// MessageText:
 
8229
//
 
8230
//  The specified tag is already present.
 
8231
//
 
8232
  ERROR_DUPLICATE_TAG = DWORD(2014);
 
8233
  {$EXTERNALSYM ERROR_DUPLICATE_TAG}
 
8234
 
 
8235
//
 
8236
// MessageId: ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE
 
8237
//
 
8238
// MessageText:
 
8239
//
 
8240
//  The specified color profile is not associated with any device.
 
8241
//
 
8242
  ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE = DWORD(2015);
 
8243
  {$EXTERNALSYM ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE}
 
8244
 
 
8245
//
 
8246
// MessageId: ERROR_PROFILE_NOT_FOUND
 
8247
//
 
8248
// MessageText:
 
8249
//
 
8250
//  The specified color profile was not found.
 
8251
//
 
8252
  ERROR_PROFILE_NOT_FOUND = DWORD(2016);
 
8253
  {$EXTERNALSYM ERROR_PROFILE_NOT_FOUND}
 
8254
 
 
8255
//
 
8256
// MessageId: ERROR_INVALID_COLORSPACE
 
8257
//
 
8258
// MessageText:
 
8259
//
 
8260
//  The specified color space is invalid.
 
8261
//
 
8262
  ERROR_INVALID_COLORSPACE = DWORD(2017);
 
8263
  {$EXTERNALSYM ERROR_INVALID_COLORSPACE}
 
8264
 
 
8265
//
 
8266
// MessageId: ERROR_ICM_NOT_ENABLED
 
8267
//
 
8268
// MessageText:
 
8269
//
 
8270
//  Image Color Management is not enabled.
 
8271
//
 
8272
  ERROR_ICM_NOT_ENABLED = DWORD(2018);
 
8273
  {$EXTERNALSYM ERROR_ICM_NOT_ENABLED}
 
8274
 
 
8275
//
 
8276
// MessageId: ERROR_DELETING_ICM_XFORM
 
8277
//
 
8278
// MessageText:
 
8279
//
 
8280
//  There was an error while deleting the color transform.
 
8281
//
 
8282
  ERROR_DELETING_ICM_XFORM = DWORD(2019);
 
8283
  {$EXTERNALSYM ERROR_DELETING_ICM_XFORM}
 
8284
 
 
8285
//
 
8286
// MessageId: ERROR_INVALID_TRANSFORM
 
8287
//
 
8288
// MessageText:
 
8289
//
 
8290
//  The specified color transform is invalid.
 
8291
//
 
8292
  ERROR_INVALID_TRANSFORM = DWORD(2020);
 
8293
  {$EXTERNALSYM ERROR_INVALID_TRANSFORM}
 
8294
 
 
8295
//
 
8296
// MessageId: ERROR_COLORSPACE_MISMATCH
 
8297
//
 
8298
// MessageText:
 
8299
//
 
8300
//  The specified transform does not match the bitmap's color space.
 
8301
//
 
8302
  ERROR_COLORSPACE_MISMATCH = DWORD(2021);
 
8303
  {$EXTERNALSYM ERROR_COLORSPACE_MISMATCH}
 
8304
 
 
8305
//
 
8306
// MessageId: ERROR_INVALID_COLORINDEX
 
8307
//
 
8308
// MessageText:
 
8309
//
 
8310
//  The specified named color index is not present in the profile.
 
8311
//
 
8312
  ERROR_INVALID_COLORINDEX = DWORD(2022);
 
8313
  {$EXTERNALSYM ERROR_INVALID_COLORINDEX}
 
8314
 
 
8315
 
 
8316
 
 
8317
///////////////////////////
 
8318
//                       //
 
8319
// Winnet32 Status Codes //
 
8320
//                       //
 
8321
// The range 2100 through 2999 is reserved for network status codes.
 
8322
// See lmerr.h for a complete listing
 
8323
///////////////////////////
 
8324
 
 
8325
//
 
8326
// MessageId: ERROR_CONNECTED_OTHER_PASSWORD
 
8327
//
 
8328
// MessageText:
 
8329
//
 
8330
//  The network connection was made successfully, but the user had to be prompted for a password other than the one originally specified.
 
8331
//
 
8332
  ERROR_CONNECTED_OTHER_PASSWORD = DWORD(2108);
 
8333
  {$EXTERNALSYM ERROR_CONNECTED_OTHER_PASSWORD}
 
8334
 
 
8335
//
 
8336
// MessageId: ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT
 
8337
//
 
8338
// MessageText:
 
8339
//
 
8340
//  The network connection was made successfully using default credentials.
 
8341
//
 
8342
  ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT = DWORD(2109);
 
8343
  {$EXTERNALSYM ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT}
 
8344
 
 
8345
//
 
8346
// MessageId: ERROR_BAD_USERNAME
 
8347
//
 
8348
// MessageText:
 
8349
//
 
8350
//  The specified username is invalid.
 
8351
//
 
8352
  ERROR_BAD_USERNAME = DWORD(2202);
 
8353
  {$EXTERNALSYM ERROR_BAD_USERNAME}
 
8354
 
 
8355
//
 
8356
// MessageId: ERROR_NOT_CONNECTED
 
8357
//
 
8358
// MessageText:
 
8359
//
 
8360
//  This network connection does not exist.
 
8361
//
 
8362
  ERROR_NOT_CONNECTED = DWORD(2250);
 
8363
  {$EXTERNALSYM ERROR_NOT_CONNECTED}
 
8364
 
 
8365
//
 
8366
// MessageId: ERROR_OPEN_FILES
 
8367
//
 
8368
// MessageText:
 
8369
//
 
8370
//  This network connection has files open or requests pending.
 
8371
//
 
8372
  ERROR_OPEN_FILES = DWORD(2401);
 
8373
  {$EXTERNALSYM ERROR_OPEN_FILES}
 
8374
 
 
8375
//
 
8376
// MessageId: ERROR_ACTIVE_CONNECTIONS
 
8377
//
 
8378
// MessageText:
 
8379
//
 
8380
//  Active connections still exist.
 
8381
//
 
8382
  ERROR_ACTIVE_CONNECTIONS = DWORD(2402);
 
8383
  {$EXTERNALSYM ERROR_ACTIVE_CONNECTIONS}
 
8384
 
 
8385
//
 
8386
// MessageId: ERROR_DEVICE_IN_USE
 
8387
//
 
8388
// MessageText:
 
8389
//
 
8390
//  The device is in use by an active process and cannot be disconnected.
 
8391
//
 
8392
  ERROR_DEVICE_IN_USE = DWORD(2404);
 
8393
  {$EXTERNALSYM ERROR_DEVICE_IN_USE}
 
8394
 
 
8395
////////////////////////////////////
 
8396
//                                //
 
8397
//     Win32 Spooler Error Codes  //
 
8398
//                                //
 
8399
////////////////////////////////////
 
8400
//
 
8401
// MessageId: ERROR_UNKNOWN_PRINT_MONITOR
 
8402
//
 
8403
// MessageText:
 
8404
//
 
8405
//  The specified print monitor is unknown.
 
8406
//
 
8407
  ERROR_UNKNOWN_PRINT_MONITOR = DWORD(3000);
 
8408
  {$EXTERNALSYM ERROR_UNKNOWN_PRINT_MONITOR}
 
8409
 
 
8410
//
 
8411
// MessageId: ERROR_PRINTER_DRIVER_IN_USE
 
8412
//
 
8413
// MessageText:
 
8414
//
 
8415
//  The specified printer driver is currently in use.
 
8416
//
 
8417
  ERROR_PRINTER_DRIVER_IN_USE = DWORD(3001);
 
8418
  {$EXTERNALSYM ERROR_PRINTER_DRIVER_IN_USE}
 
8419
 
 
8420
//
 
8421
// MessageId: ERROR_SPOOL_FILE_NOT_FOUND
 
8422
//
 
8423
// MessageText:
 
8424
//
 
8425
//  The spool file was not found.
 
8426
//
 
8427
  ERROR_SPOOL_FILE_NOT_FOUND = DWORD(3002);
 
8428
  {$EXTERNALSYM ERROR_SPOOL_FILE_NOT_FOUND}
 
8429
 
 
8430
//
 
8431
// MessageId: ERROR_SPL_NO_STARTDOC
 
8432
//
 
8433
// MessageText:
 
8434
//
 
8435
//  A StartDocPrinter call was not issued.
 
8436
//
 
8437
  ERROR_SPL_NO_STARTDOC = DWORD(3003);
 
8438
  {$EXTERNALSYM ERROR_SPL_NO_STARTDOC}
 
8439
 
 
8440
//
 
8441
// MessageId: ERROR_SPL_NO_ADDJOB
 
8442
//
 
8443
// MessageText:
 
8444
//
 
8445
//  An AddJob call was not issued.
 
8446
//
 
8447
  ERROR_SPL_NO_ADDJOB = DWORD(3004);
 
8448
  {$EXTERNALSYM ERROR_SPL_NO_ADDJOB}
 
8449
 
 
8450
//
 
8451
// MessageId: ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED
 
8452
//
 
8453
// MessageText:
 
8454
//
 
8455
//  The specified print processor has already been installed.
 
8456
//
 
8457
  ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED = DWORD(3005);
 
8458
  {$EXTERNALSYM ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED}
 
8459
 
 
8460
//
 
8461
// MessageId: ERROR_PRINT_MONITOR_ALREADY_INSTALLED
 
8462
//
 
8463
// MessageText:
 
8464
//
 
8465
//  The specified print monitor has already been installed.
 
8466
//
 
8467
  ERROR_PRINT_MONITOR_ALREADY_INSTALLED = DWORD(3006);
 
8468
  {$EXTERNALSYM ERROR_PRINT_MONITOR_ALREADY_INSTALLED}
 
8469
 
 
8470
//
 
8471
// MessageId: ERROR_INVALID_PRINT_MONITOR
 
8472
//
 
8473
// MessageText:
 
8474
//
 
8475
//  The specified print monitor does not have the required functions.
 
8476
//
 
8477
  ERROR_INVALID_PRINT_MONITOR = DWORD(3007);
 
8478
  {$EXTERNALSYM ERROR_INVALID_PRINT_MONITOR}
 
8479
 
 
8480
//
 
8481
// MessageId: ERROR_PRINT_MONITOR_IN_USE
 
8482
//
 
8483
// MessageText:
 
8484
//
 
8485
//  The specified print monitor is currently in use.
 
8486
//
 
8487
  ERROR_PRINT_MONITOR_IN_USE = DWORD(3008);
 
8488
  {$EXTERNALSYM ERROR_PRINT_MONITOR_IN_USE}
 
8489
 
 
8490
//
 
8491
// MessageId: ERROR_PRINTER_HAS_JOBS_QUEUED
 
8492
//
 
8493
// MessageText:
 
8494
//
 
8495
//  The requested operation is not allowed when there are jobs queued to the printer.
 
8496
//
 
8497
  ERROR_PRINTER_HAS_JOBS_QUEUED = DWORD(3009);
 
8498
  {$EXTERNALSYM ERROR_PRINTER_HAS_JOBS_QUEUED}
 
8499
 
 
8500
//
 
8501
// MessageId: ERROR_SUCCESS_REBOOT_REQUIRED
 
8502
//
 
8503
// MessageText:
 
8504
//
 
8505
//  The requested operation is successful. Changes will not be effective until the system is rebooted.
 
8506
//
 
8507
  ERROR_SUCCESS_REBOOT_REQUIRED = DWORD(3010);
 
8508
  {$EXTERNALSYM ERROR_SUCCESS_REBOOT_REQUIRED}
 
8509
 
 
8510
//
 
8511
// MessageId: ERROR_SUCCESS_RESTART_REQUIRED
 
8512
//
 
8513
// MessageText:
 
8514
//
 
8515
//  The requested operation is successful. Changes will not be effective until the service is restarted.
 
8516
//
 
8517
  ERROR_SUCCESS_RESTART_REQUIRED = DWORD(3011);
 
8518
  {$EXTERNALSYM ERROR_SUCCESS_RESTART_REQUIRED}
 
8519
 
 
8520
//
 
8521
// MessageId: ERROR_PRINTER_NOT_FOUND
 
8522
//
 
8523
// MessageText:
 
8524
//
 
8525
//  No printers were found.
 
8526
//
 
8527
  ERROR_PRINTER_NOT_FOUND = DWORD(3012);
 
8528
  {$EXTERNALSYM ERROR_PRINTER_NOT_FOUND}
 
8529
 
 
8530
//
 
8531
// MessageId: ERROR_PRINTER_DRIVER_WARNED
 
8532
//
 
8533
// MessageText:
 
8534
//
 
8535
//  The printer driver is known to be unreliable.
 
8536
//
 
8537
  ERROR_PRINTER_DRIVER_WARNED = DWORD(3013);
 
8538
  {$EXTERNALSYM ERROR_PRINTER_DRIVER_WARNED}
 
8539
 
 
8540
//
 
8541
// MessageId: ERROR_PRINTER_DRIVER_BLOCKED
 
8542
//
 
8543
// MessageText:
 
8544
//
 
8545
//  The printer driver is known to harm the system.
 
8546
//
 
8547
  ERROR_PRINTER_DRIVER_BLOCKED = DWORD(3014);
 
8548
  {$EXTERNALSYM ERROR_PRINTER_DRIVER_BLOCKED}
 
8549
 
 
8550
////////////////////////////////////
 
8551
//                                //
 
8552
//     Wins Error Codes           //
 
8553
//                                //
 
8554
////////////////////////////////////
 
8555
//
 
8556
// MessageId: ERROR_WINS_INTERNAL
 
8557
//
 
8558
// MessageText:
 
8559
//
 
8560
//  WINS encountered an error while processing the command.
 
8561
//
 
8562
  ERROR_WINS_INTERNAL = DWORD(4000);
 
8563
  {$EXTERNALSYM ERROR_WINS_INTERNAL}
 
8564
 
 
8565
//
 
8566
// MessageId: ERROR_CAN_NOT_DEL_LOCAL_WINS
 
8567
//
 
8568
// MessageText:
 
8569
//
 
8570
//  The local WINS can not be deleted.
 
8571
//
 
8572
  ERROR_CAN_NOT_DEL_LOCAL_WINS = DWORD(4001);
 
8573
  {$EXTERNALSYM ERROR_CAN_NOT_DEL_LOCAL_WINS}
 
8574
 
 
8575
//
 
8576
// MessageId: ERROR_STATIC_INIT
 
8577
//
 
8578
// MessageText:
 
8579
//
 
8580
//  The importation from the file failed.
 
8581
//
 
8582
  ERROR_STATIC_INIT = DWORD(4002);
 
8583
  {$EXTERNALSYM ERROR_STATIC_INIT}
 
8584
 
 
8585
//
 
8586
// MessageId: ERROR_INC_BACKUP
 
8587
//
 
8588
// MessageText:
 
8589
//
 
8590
//  The backup failed. Was a full backup done before?
 
8591
//
 
8592
  ERROR_INC_BACKUP = DWORD(4003);
 
8593
  {$EXTERNALSYM ERROR_INC_BACKUP}
 
8594
 
 
8595
//
 
8596
// MessageId: ERROR_FULL_BACKUP
 
8597
//
 
8598
// MessageText:
 
8599
//
 
8600
//  The backup failed. Check the directory to which you are backing the database.
 
8601
//
 
8602
  ERROR_FULL_BACKUP = DWORD(4004);
 
8603
  {$EXTERNALSYM ERROR_FULL_BACKUP}
 
8604
 
 
8605
//
 
8606
// MessageId: ERROR_REC_NON_EXISTENT
 
8607
//
 
8608
// MessageText:
 
8609
//
 
8610
//  The name does not exist in the WINS database.
 
8611
//
 
8612
  ERROR_REC_NON_EXISTENT = DWORD(4005);
 
8613
  {$EXTERNALSYM ERROR_REC_NON_EXISTENT}
 
8614
 
 
8615
//
 
8616
// MessageId: ERROR_RPL_NOT_ALLOWED
 
8617
//
 
8618
// MessageText:
 
8619
//
 
8620
//  Replication with a nonconfigured partner is not allowed.
 
8621
//
 
8622
  ERROR_RPL_NOT_ALLOWED = DWORD(4006);
 
8623
  {$EXTERNALSYM ERROR_RPL_NOT_ALLOWED}
 
8624
 
 
8625
////////////////////////////////////
 
8626
//                                //
 
8627
//     DHCP Error Codes           //
 
8628
//                                //
 
8629
////////////////////////////////////
 
8630
//
 
8631
// MessageId: ERROR_DHCP_ADDRESS_CONFLICT
 
8632
//
 
8633
// MessageText:
 
8634
//
 
8635
//  The DHCP client has obtained an IP address that is already in use on the network. The local interface will be disabled until the DHCP client can obtain a new address.
 
8636
//
 
8637
  ERROR_DHCP_ADDRESS_CONFLICT = DWORD(4100);
 
8638
  {$EXTERNALSYM ERROR_DHCP_ADDRESS_CONFLICT}
 
8639
 
 
8640
////////////////////////////////////
 
8641
//                                //
 
8642
//     WMI Error Codes            //
 
8643
//                                //
 
8644
////////////////////////////////////
 
8645
//
 
8646
// MessageId: ERROR_WMI_GUID_NOT_FOUND
 
8647
//
 
8648
// MessageText:
 
8649
//
 
8650
//  The GUID passed was not recognized as valid by a WMI data provider.
 
8651
//
 
8652
  ERROR_WMI_GUID_NOT_FOUND = DWORD(4200);
 
8653
  {$EXTERNALSYM ERROR_WMI_GUID_NOT_FOUND}
 
8654
 
 
8655
//
 
8656
// MessageId: ERROR_WMI_INSTANCE_NOT_FOUND
 
8657
//
 
8658
// MessageText:
 
8659
//
 
8660
//  The instance name passed was not recognized as valid by a WMI data provider.
 
8661
//
 
8662
  ERROR_WMI_INSTANCE_NOT_FOUND = DWORD(4201);
 
8663
  {$EXTERNALSYM ERROR_WMI_INSTANCE_NOT_FOUND}
 
8664
 
 
8665
//
 
8666
// MessageId: ERROR_WMI_ITEMID_NOT_FOUND
 
8667
//
 
8668
// MessageText:
 
8669
//
 
8670
//  The data item ID passed was not recognized as valid by a WMI data provider.
 
8671
//
 
8672
  ERROR_WMI_ITEMID_NOT_FOUND = DWORD(4202);
 
8673
  {$EXTERNALSYM ERROR_WMI_ITEMID_NOT_FOUND}
 
8674
 
 
8675
//
 
8676
// MessageId: ERROR_WMI_TRY_AGAIN
 
8677
//
 
8678
// MessageText:
 
8679
//
 
8680
//  The WMI request could not be completed and should be retried.
 
8681
//
 
8682
  ERROR_WMI_TRY_AGAIN = DWORD(4203);
 
8683
  {$EXTERNALSYM ERROR_WMI_TRY_AGAIN}
 
8684
 
 
8685
//
 
8686
// MessageId: ERROR_WMI_DP_NOT_FOUND
 
8687
//
 
8688
// MessageText:
 
8689
//
 
8690
//  The WMI data provider could not be located.
 
8691
//
 
8692
  ERROR_WMI_DP_NOT_FOUND = DWORD(4204);
 
8693
  {$EXTERNALSYM ERROR_WMI_DP_NOT_FOUND}
 
8694
 
 
8695
//
 
8696
// MessageId: ERROR_WMI_UNRESOLVED_INSTANCE_REF
 
8697
//
 
8698
// MessageText:
 
8699
//
 
8700
//  The WMI data provider references an instance set that has not been registered.
 
8701
//
 
8702
  ERROR_WMI_UNRESOLVED_INSTANCE_REF = DWORD(4205);
 
8703
  {$EXTERNALSYM ERROR_WMI_UNRESOLVED_INSTANCE_REF}
 
8704
 
 
8705
//
 
8706
// MessageId: ERROR_WMI_ALREADY_ENABLED
 
8707
//
 
8708
// MessageText:
 
8709
//
 
8710
//  The WMI data block or event notification has already been enabled.
 
8711
//
 
8712
  ERROR_WMI_ALREADY_ENABLED = DWORD(4206);
 
8713
  {$EXTERNALSYM ERROR_WMI_ALREADY_ENABLED}
 
8714
 
 
8715
//
 
8716
// MessageId: ERROR_WMI_GUID_DISCONNECTED
 
8717
//
 
8718
// MessageText:
 
8719
//
 
8720
//  The WMI data block is no longer available.
 
8721
//
 
8722
  ERROR_WMI_GUID_DISCONNECTED = DWORD(4207);
 
8723
  {$EXTERNALSYM ERROR_WMI_GUID_DISCONNECTED}
 
8724
 
 
8725
//
 
8726
// MessageId: ERROR_WMI_SERVER_UNAVAILABLE
 
8727
//
 
8728
// MessageText:
 
8729
//
 
8730
//  The WMI data service is not available.
 
8731
//
 
8732
  ERROR_WMI_SERVER_UNAVAILABLE = DWORD(4208);
 
8733
  {$EXTERNALSYM ERROR_WMI_SERVER_UNAVAILABLE}
 
8734
 
 
8735
//
 
8736
// MessageId: ERROR_WMI_DP_FAILED
 
8737
//
 
8738
// MessageText:
 
8739
//
 
8740
//  The WMI data provider failed to carry out the request.
 
8741
//
 
8742
  ERROR_WMI_DP_FAILED = DWORD(4209);
 
8743
  {$EXTERNALSYM ERROR_WMI_DP_FAILED}
 
8744
 
 
8745
//
 
8746
// MessageId: ERROR_WMI_INVALID_MOF
 
8747
//
 
8748
// MessageText:
 
8749
//
 
8750
//  The WMI MOF information is not valid.
 
8751
//
 
8752
  ERROR_WMI_INVALID_MOF = DWORD(4210);
 
8753
  {$EXTERNALSYM ERROR_WMI_INVALID_MOF}
 
8754
 
 
8755
//
 
8756
// MessageId: ERROR_WMI_INVALID_REGINFO
 
8757
//
 
8758
// MessageText:
 
8759
//
 
8760
//  The WMI registration information is not valid.
 
8761
//
 
8762
  ERROR_WMI_INVALID_REGINFO = DWORD(4211);
 
8763
  {$EXTERNALSYM ERROR_WMI_INVALID_REGINFO}
 
8764
 
 
8765
//
 
8766
// MessageId: ERROR_WMI_ALREADY_DISABLED
 
8767
//
 
8768
// MessageText:
 
8769
//
 
8770
//  The WMI data block or event notification has already been disabled.
 
8771
//
 
8772
  ERROR_WMI_ALREADY_DISABLED = DWORD(4212);
 
8773
  {$EXTERNALSYM ERROR_WMI_ALREADY_DISABLED}
 
8774
 
 
8775
//
 
8776
// MessageId: ERROR_WMI_READ_ONLY
 
8777
//
 
8778
// MessageText:
 
8779
//
 
8780
//  The WMI data item or data block is read only.
 
8781
//
 
8782
  ERROR_WMI_READ_ONLY = DWORD(4213);
 
8783
  {$EXTERNALSYM ERROR_WMI_READ_ONLY}
 
8784
 
 
8785
//
 
8786
// MessageId: ERROR_WMI_SET_FAILURE
 
8787
//
 
8788
// MessageText:
 
8789
//
 
8790
//  The WMI data item or data block could not be changed.
 
8791
//
 
8792
  ERROR_WMI_SET_FAILURE = DWORD(4214);
 
8793
  {$EXTERNALSYM ERROR_WMI_SET_FAILURE}
 
8794
 
 
8795
//////////////////////////////////////////
 
8796
//                                      //
 
8797
// NT Media Services (RSM) Error Codes  //
 
8798
//                                      //
 
8799
//////////////////////////////////////////
 
8800
//
 
8801
// MessageId: ERROR_INVALID_MEDIA
 
8802
//
 
8803
// MessageText:
 
8804
//
 
8805
//  The media identifier does not represent a valid medium.
 
8806
//
 
8807
  ERROR_INVALID_MEDIA = DWORD(4300);
 
8808
  {$EXTERNALSYM ERROR_INVALID_MEDIA}
 
8809
 
 
8810
//
 
8811
// MessageId: ERROR_INVALID_LIBRARY
 
8812
//
 
8813
// MessageText:
 
8814
//
 
8815
//  The library identifier does not represent a valid library.
 
8816
//
 
8817
  ERROR_INVALID_LIBRARY = DWORD(4301);
 
8818
  {$EXTERNALSYM ERROR_INVALID_LIBRARY}
 
8819
 
 
8820
//
 
8821
// MessageId: ERROR_INVALID_MEDIA_POOL
 
8822
//
 
8823
// MessageText:
 
8824
//
 
8825
//  The media pool identifier does not represent a valid media pool.
 
8826
//
 
8827
  ERROR_INVALID_MEDIA_POOL = DWORD(4302);
 
8828
  {$EXTERNALSYM ERROR_INVALID_MEDIA_POOL}
 
8829
 
 
8830
//
 
8831
// MessageId: ERROR_DRIVE_MEDIA_MISMATCH
 
8832
//
 
8833
// MessageText:
 
8834
//
 
8835
//  The drive and medium are not compatible or exist in different libraries.
 
8836
//
 
8837
  ERROR_DRIVE_MEDIA_MISMATCH = DWORD(4303);
 
8838
  {$EXTERNALSYM ERROR_DRIVE_MEDIA_MISMATCH}
 
8839
 
 
8840
//
 
8841
// MessageId: ERROR_MEDIA_OFFLINE
 
8842
//
 
8843
// MessageText:
 
8844
//
 
8845
//  The medium currently exists in an offline library and must be online to perform this operation.
 
8846
//
 
8847
  ERROR_MEDIA_OFFLINE = DWORD(4304);
 
8848
  {$EXTERNALSYM ERROR_MEDIA_OFFLINE}
 
8849
 
 
8850
//
 
8851
// MessageId: ERROR_LIBRARY_OFFLINE
 
8852
//
 
8853
// MessageText:
 
8854
//
 
8855
//  The operation cannot be performed on an offline library.
 
8856
//
 
8857
  ERROR_LIBRARY_OFFLINE = DWORD(4305);
 
8858
  {$EXTERNALSYM ERROR_LIBRARY_OFFLINE}
 
8859
 
 
8860
//
 
8861
// MessageId: ERROR_EMPTY
 
8862
//
 
8863
// MessageText:
 
8864
//
 
8865
//  The library, drive, or media pool is empty.
 
8866
//
 
8867
  ERROR_EMPTY = DWORD(4306);
 
8868
  {$EXTERNALSYM ERROR_EMPTY}
 
8869
 
 
8870
//
 
8871
// MessageId: ERROR_NOT_EMPTY
 
8872
//
 
8873
// MessageText:
 
8874
//
 
8875
//  The library, drive, or media pool must be empty to perform this operation.
 
8876
//
 
8877
  ERROR_NOT_EMPTY = DWORD(4307);
 
8878
  {$EXTERNALSYM ERROR_NOT_EMPTY}
 
8879
 
 
8880
//
 
8881
// MessageId: ERROR_MEDIA_UNAVAILABLE
 
8882
//
 
8883
// MessageText:
 
8884
//
 
8885
//  No media is currently available in this media pool or library.
 
8886
//
 
8887
  ERROR_MEDIA_UNAVAILABLE = DWORD(4308);
 
8888
  {$EXTERNALSYM ERROR_MEDIA_UNAVAILABLE}
 
8889
 
 
8890
//
 
8891
// MessageId: ERROR_RESOURCE_DISABLED
 
8892
//
 
8893
// MessageText:
 
8894
//
 
8895
//  A resource required for this operation is disabled.
 
8896
//
 
8897
  ERROR_RESOURCE_DISABLED = DWORD(4309);
 
8898
  {$EXTERNALSYM ERROR_RESOURCE_DISABLED}
 
8899
 
 
8900
//
 
8901
// MessageId: ERROR_INVALID_CLEANER
 
8902
//
 
8903
// MessageText:
 
8904
//
 
8905
//  The media identifier does not represent a valid cleaner.
 
8906
//
 
8907
  ERROR_INVALID_CLEANER = DWORD(4310);
 
8908
  {$EXTERNALSYM ERROR_INVALID_CLEANER}
 
8909
 
 
8910
//
 
8911
// MessageId: ERROR_UNABLE_TO_CLEAN
 
8912
//
 
8913
// MessageText:
 
8914
//
 
8915
//  The drive cannot be cleaned or does not support cleaning.
 
8916
//
 
8917
  ERROR_UNABLE_TO_CLEAN = DWORD(4311);
 
8918
  {$EXTERNALSYM ERROR_UNABLE_TO_CLEAN}
 
8919
 
 
8920
//
 
8921
// MessageId: ERROR_OBJECT_NOT_FOUND
 
8922
//
 
8923
// MessageText:
 
8924
//
 
8925
//  The object identifier does not represent a valid object.
 
8926
//
 
8927
  ERROR_OBJECT_NOT_FOUND = DWORD(4312);
 
8928
  {$EXTERNALSYM ERROR_OBJECT_NOT_FOUND}
 
8929
 
 
8930
//
 
8931
// MessageId: ERROR_DATABASE_FAILURE
 
8932
//
 
8933
// MessageText:
 
8934
//
 
8935
//  Unable to read from or write to the database.
 
8936
//
 
8937
  ERROR_DATABASE_FAILURE = DWORD(4313);
 
8938
  {$EXTERNALSYM ERROR_DATABASE_FAILURE}
 
8939
 
 
8940
//
 
8941
// MessageId: ERROR_DATABASE_FULL
 
8942
//
 
8943
// MessageText:
 
8944
//
 
8945
//  The database is full.
 
8946
//
 
8947
  ERROR_DATABASE_FULL = DWORD(4314);
 
8948
  {$EXTERNALSYM ERROR_DATABASE_FULL}
 
8949
 
 
8950
//
 
8951
// MessageId: ERROR_MEDIA_INCOMPATIBLE
 
8952
//
 
8953
// MessageText:
 
8954
//
 
8955
//  The medium is not compatible with the device or media pool.
 
8956
//
 
8957
  ERROR_MEDIA_INCOMPATIBLE = DWORD(4315);
 
8958
  {$EXTERNALSYM ERROR_MEDIA_INCOMPATIBLE}
 
8959
 
 
8960
//
 
8961
// MessageId: ERROR_RESOURCE_NOT_PRESENT
 
8962
//
 
8963
// MessageText:
 
8964
//
 
8965
//  The resource required for this operation does not exist.
 
8966
//
 
8967
  ERROR_RESOURCE_NOT_PRESENT = DWORD(4316);
 
8968
  {$EXTERNALSYM ERROR_RESOURCE_NOT_PRESENT}
 
8969
 
 
8970
//
 
8971
// MessageId: ERROR_INVALID_OPERATION
 
8972
//
 
8973
// MessageText:
 
8974
//
 
8975
//  The operation identifier is not valid.
 
8976
//
 
8977
  ERROR_INVALID_OPERATION = DWORD(4317);
 
8978
  {$EXTERNALSYM ERROR_INVALID_OPERATION}
 
8979
 
 
8980
//
 
8981
// MessageId: ERROR_MEDIA_NOT_AVAILABLE
 
8982
//
 
8983
// MessageText:
 
8984
//
 
8985
//  The media is not mounted or ready for use.
 
8986
//
 
8987
  ERROR_MEDIA_NOT_AVAILABLE = DWORD(4318);
 
8988
  {$EXTERNALSYM ERROR_MEDIA_NOT_AVAILABLE}
 
8989
 
 
8990
//
 
8991
// MessageId: ERROR_DEVICE_NOT_AVAILABLE
 
8992
//
 
8993
// MessageText:
 
8994
//
 
8995
//  The device is not ready for use.
 
8996
//
 
8997
  ERROR_DEVICE_NOT_AVAILABLE = DWORD(4319);
 
8998
  {$EXTERNALSYM ERROR_DEVICE_NOT_AVAILABLE}
 
8999
 
 
9000
//
 
9001
// MessageId: ERROR_REQUEST_REFUSED
 
9002
//
 
9003
// MessageText:
 
9004
//
 
9005
//  The operator or administrator has refused the request.
 
9006
//
 
9007
  ERROR_REQUEST_REFUSED = DWORD(4320);
 
9008
  {$EXTERNALSYM ERROR_REQUEST_REFUSED}
 
9009
 
 
9010
//
 
9011
// MessageId: ERROR_INVALID_DRIVE_OBJECT
 
9012
//
 
9013
// MessageText:
 
9014
//
 
9015
//  The drive identifier does not represent a valid drive.
 
9016
//
 
9017
  ERROR_INVALID_DRIVE_OBJECT = DWORD(4321);
 
9018
  {$EXTERNALSYM ERROR_INVALID_DRIVE_OBJECT}
 
9019
 
 
9020
//
 
9021
// MessageId: ERROR_LIBRARY_FULL
 
9022
//
 
9023
// MessageText:
 
9024
//
 
9025
//  Library is full.  No slot is available for use.
 
9026
//
 
9027
  ERROR_LIBRARY_FULL = DWORD(4322);
 
9028
  {$EXTERNALSYM ERROR_LIBRARY_FULL}
 
9029
 
 
9030
//
 
9031
// MessageId: ERROR_MEDIUM_NOT_ACCESSIBLE
 
9032
//
 
9033
// MessageText:
 
9034
//
 
9035
//  The transport cannot access the medium.
 
9036
//
 
9037
  ERROR_MEDIUM_NOT_ACCESSIBLE = DWORD(4323);
 
9038
  {$EXTERNALSYM ERROR_MEDIUM_NOT_ACCESSIBLE}
 
9039
 
 
9040
//
 
9041
// MessageId: ERROR_UNABLE_TO_LOAD_MEDIUM
 
9042
//
 
9043
// MessageText:
 
9044
//
 
9045
//  Unable to load the medium into the drive.
 
9046
//
 
9047
  ERROR_UNABLE_TO_LOAD_MEDIUM = DWORD(4324);
 
9048
  {$EXTERNALSYM ERROR_UNABLE_TO_LOAD_MEDIUM}
 
9049
 
 
9050
//
 
9051
// MessageId: ERROR_UNABLE_TO_INVENTORY_DRIVE
 
9052
//
 
9053
// MessageText:
 
9054
//
 
9055
//  Unable to retrieve the drive status.
 
9056
//
 
9057
  ERROR_UNABLE_TO_INVENTORY_DRIVE = DWORD(4325);
 
9058
  {$EXTERNALSYM ERROR_UNABLE_TO_INVENTORY_DRIVE}
 
9059
 
 
9060
//
 
9061
// MessageId: ERROR_UNABLE_TO_INVENTORY_SLOT
 
9062
//
 
9063
// MessageText:
 
9064
//
 
9065
//  Unable to retrieve the slot status.
 
9066
//
 
9067
  ERROR_UNABLE_TO_INVENTORY_SLOT = DWORD(4326);
 
9068
  {$EXTERNALSYM ERROR_UNABLE_TO_INVENTORY_SLOT}
 
9069
 
 
9070
//
 
9071
// MessageId: ERROR_UNABLE_TO_INVENTORY_TRANSPORT
 
9072
//
 
9073
// MessageText:
 
9074
//
 
9075
//  Unable to retrieve status about the transport.
 
9076
//
 
9077
  ERROR_UNABLE_TO_INVENTORY_TRANSPORT = DWORD(4327);
 
9078
  {$EXTERNALSYM ERROR_UNABLE_TO_INVENTORY_TRANSPORT}
 
9079
 
 
9080
//
 
9081
// MessageId: ERROR_TRANSPORT_FULL
 
9082
//
 
9083
// MessageText:
 
9084
//
 
9085
//  Cannot use the transport because it is already in use.
 
9086
//
 
9087
  ERROR_TRANSPORT_FULL = DWORD(4328);
 
9088
  {$EXTERNALSYM ERROR_TRANSPORT_FULL}
 
9089
 
 
9090
//
 
9091
// MessageId: ERROR_CONTROLLING_IEPORT
 
9092
//
 
9093
// MessageText:
 
9094
//
 
9095
//  Unable to open or close the inject/eject port.
 
9096
//
 
9097
  ERROR_CONTROLLING_IEPORT = DWORD(4329);
 
9098
  {$EXTERNALSYM ERROR_CONTROLLING_IEPORT}
 
9099
 
 
9100
//
 
9101
// MessageId: ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA
 
9102
//
 
9103
// MessageText:
 
9104
//
 
9105
//  Unable to eject the medium because it is in a drive.
 
9106
//
 
9107
  ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA = DWORD(4330);
 
9108
  {$EXTERNALSYM ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA}
 
9109
 
 
9110
//
 
9111
// MessageId: ERROR_CLEANER_SLOT_SET
 
9112
//
 
9113
// MessageText:
 
9114
//
 
9115
//  A cleaner slot is already reserved.
 
9116
//
 
9117
  ERROR_CLEANER_SLOT_SET = DWORD(4331);
 
9118
  {$EXTERNALSYM ERROR_CLEANER_SLOT_SET}
 
9119
 
 
9120
//
 
9121
// MessageId: ERROR_CLEANER_SLOT_NOT_SET
 
9122
//
 
9123
// MessageText:
 
9124
//
 
9125
//  A cleaner slot is not reserved.
 
9126
//
 
9127
  ERROR_CLEANER_SLOT_NOT_SET = DWORD(4332);
 
9128
  {$EXTERNALSYM ERROR_CLEANER_SLOT_NOT_SET}
 
9129
 
 
9130
//
 
9131
// MessageId: ERROR_CLEANER_CARTRIDGE_SPENT
 
9132
//
 
9133
// MessageText:
 
9134
//
 
9135
//  The cleaner cartridge has performed the maximum number of drive cleanings.
 
9136
//
 
9137
  ERROR_CLEANER_CARTRIDGE_SPENT = DWORD(4333);
 
9138
  {$EXTERNALSYM ERROR_CLEANER_CARTRIDGE_SPENT}
 
9139
 
 
9140
//
 
9141
// MessageId: ERROR_UNEXPECTED_OMID
 
9142
//
 
9143
// MessageText:
 
9144
//
 
9145
//  Unexpected on-medium identifier.
 
9146
//
 
9147
  ERROR_UNEXPECTED_OMID = DWORD(4334);
 
9148
  {$EXTERNALSYM ERROR_UNEXPECTED_OMID}
 
9149
 
 
9150
//
 
9151
// MessageId: ERROR_CANT_DELETE_LAST_ITEM
 
9152
//
 
9153
// MessageText:
 
9154
//
 
9155
//  The last remaining item in this group or resource cannot be deleted.
 
9156
//
 
9157
  ERROR_CANT_DELETE_LAST_ITEM = DWORD(4335);
 
9158
  {$EXTERNALSYM ERROR_CANT_DELETE_LAST_ITEM}
 
9159
 
 
9160
//
 
9161
// MessageId: ERROR_MESSAGE_EXCEEDS_MAX_SIZE
 
9162
//
 
9163
// MessageText:
 
9164
//
 
9165
//  The message provided exceeds the maximum size allowed for this parameter.
 
9166
//
 
9167
  ERROR_MESSAGE_EXCEEDS_MAX_SIZE = DWORD(4336);
 
9168
  {$EXTERNALSYM ERROR_MESSAGE_EXCEEDS_MAX_SIZE}
 
9169
 
 
9170
//
 
9171
// MessageId: ERROR_VOLUME_CONTAINS_SYS_FILES
 
9172
//
 
9173
// MessageText:
 
9174
//
 
9175
//  The volume contains system or paging files.
 
9176
//
 
9177
  ERROR_VOLUME_CONTAINS_SYS_FILES = DWORD(4337);
 
9178
  {$EXTERNALSYM ERROR_VOLUME_CONTAINS_SYS_FILES}
 
9179
 
 
9180
//
 
9181
// MessageId: ERROR_INDIGENOUS_TYPE
 
9182
//
 
9183
// MessageText:
 
9184
//
 
9185
//  The media type cannot be removed from this library since at least one drive in the library reports it can support this media type.
 
9186
//
 
9187
  ERROR_INDIGENOUS_TYPE = DWORD(4338);
 
9188
  {$EXTERNALSYM ERROR_INDIGENOUS_TYPE}
 
9189
 
 
9190
//
 
9191
// MessageId: ERROR_NO_SUPPORTING_DRIVES
 
9192
//
 
9193
// MessageText:
 
9194
//
 
9195
//  This offline media cannot be mounted on this system since no enabled drives are present which can be used.
 
9196
//
 
9197
  ERROR_NO_SUPPORTING_DRIVES = DWORD(4339);
 
9198
  {$EXTERNALSYM ERROR_NO_SUPPORTING_DRIVES}
 
9199
 
 
9200
//
 
9201
// MessageId: ERROR_CLEANER_CARTRIDGE_INSTALLED
 
9202
//
 
9203
// MessageText:
 
9204
//
 
9205
//  A cleaner cartridge is present in the tape library.
 
9206
//
 
9207
  ERROR_CLEANER_CARTRIDGE_INSTALLED = DWORD(4340);
 
9208
  {$EXTERNALSYM ERROR_CLEANER_CARTRIDGE_INSTALLED}
 
9209
 
 
9210
//
 
9211
// MessageId: ERROR_IEPORT_FULL
 
9212
//
 
9213
// MessageText:
 
9214
//
 
9215
//  Cannot use the ieport because it is not empty.
 
9216
//
 
9217
  ERROR_IEPORT_FULL = DWORD(4341);
 
9218
  {$EXTERNALSYM ERROR_IEPORT_FULL}
 
9219
 
 
9220
////////////////////////////////////////////
 
9221
//                                        //
 
9222
// NT Remote Storage Service Error Codes  //
 
9223
//                                        //
 
9224
////////////////////////////////////////////
 
9225
//
 
9226
// MessageId: ERROR_FILE_OFFLINE
 
9227
//
 
9228
// MessageText:
 
9229
//
 
9230
//  The remote storage service was not able to recall the file.
 
9231
//
 
9232
  ERROR_FILE_OFFLINE = DWORD(4350);
 
9233
  {$EXTERNALSYM ERROR_FILE_OFFLINE}
 
9234
 
 
9235
//
 
9236
// MessageId: ERROR_REMOTE_STORAGE_NOT_ACTIVE
 
9237
//
 
9238
// MessageText:
 
9239
//
 
9240
//  The remote storage service is not operational at this time.
 
9241
//
 
9242
  ERROR_REMOTE_STORAGE_NOT_ACTIVE = DWORD(4351);
 
9243
  {$EXTERNALSYM ERROR_REMOTE_STORAGE_NOT_ACTIVE}
 
9244
 
 
9245
//
 
9246
// MessageId: ERROR_REMOTE_STORAGE_MEDIA_ERROR
 
9247
//
 
9248
// MessageText:
 
9249
//
 
9250
//  The remote storage service encountered a media error.
 
9251
//
 
9252
  ERROR_REMOTE_STORAGE_MEDIA_ERROR = DWORD(4352);
 
9253
  {$EXTERNALSYM ERROR_REMOTE_STORAGE_MEDIA_ERROR}
 
9254
 
 
9255
////////////////////////////////////////////
 
9256
//                                        //
 
9257
// NT Reparse Points Error Codes          //
 
9258
//                                        //
 
9259
////////////////////////////////////////////
 
9260
//
 
9261
// MessageId: ERROR_NOT_A_REPARSE_POINT
 
9262
//
 
9263
// MessageText:
 
9264
//
 
9265
//  The file or directory is not a reparse point.
 
9266
//
 
9267
  ERROR_NOT_A_REPARSE_POINT = DWORD(4390);
 
9268
  {$EXTERNALSYM ERROR_NOT_A_REPARSE_POINT}
 
9269
 
 
9270
//
 
9271
// MessageId: ERROR_REPARSE_ATTRIBUTE_CONFLICT
 
9272
//
 
9273
// MessageText:
 
9274
//
 
9275
//  The reparse point attribute cannot be set because it conflicts with an existing attribute.
 
9276
//
 
9277
  ERROR_REPARSE_ATTRIBUTE_CONFLICT = DWORD(4391);
 
9278
  {$EXTERNALSYM ERROR_REPARSE_ATTRIBUTE_CONFLICT}
 
9279
 
 
9280
//
 
9281
// MessageId: ERROR_INVALID_REPARSE_DATA
 
9282
//
 
9283
// MessageText:
 
9284
//
 
9285
//  The data present in the reparse point buffer is invalid.
 
9286
//
 
9287
  ERROR_INVALID_REPARSE_DATA = DWORD(4392);
 
9288
  {$EXTERNALSYM ERROR_INVALID_REPARSE_DATA}
 
9289
 
 
9290
//
 
9291
// MessageId: ERROR_REPARSE_TAG_INVALID
 
9292
//
 
9293
// MessageText:
 
9294
//
 
9295
//  The tag present in the reparse point buffer is invalid.
 
9296
//
 
9297
  ERROR_REPARSE_TAG_INVALID = DWORD(4393);
 
9298
  {$EXTERNALSYM ERROR_REPARSE_TAG_INVALID}
 
9299
 
 
9300
//
 
9301
// MessageId: ERROR_REPARSE_TAG_MISMATCH
 
9302
//
 
9303
// MessageText:
 
9304
//
 
9305
//  There is a mismatch between the tag specified in the request and the tag present in the reparse point.
 
9306
//  
 
9307
//
 
9308
  ERROR_REPARSE_TAG_MISMATCH = DWORD(4394);
 
9309
  {$EXTERNALSYM ERROR_REPARSE_TAG_MISMATCH}
 
9310
 
 
9311
////////////////////////////////////////////
 
9312
//                                        //
 
9313
// NT Single Instance Store Error Codes   //
 
9314
//                                        //
 
9315
////////////////////////////////////////////
 
9316
//
 
9317
// MessageId: ERROR_VOLUME_NOT_SIS_ENABLED
 
9318
//
 
9319
// MessageText:
 
9320
//
 
9321
//  Single Instance Storage is not available on this volume.
 
9322
//
 
9323
  ERROR_VOLUME_NOT_SIS_ENABLED = DWORD(4500);
 
9324
  {$EXTERNALSYM ERROR_VOLUME_NOT_SIS_ENABLED}
 
9325
 
 
9326
////////////////////////////////////
 
9327
//                                //
 
9328
//     Cluster Error Codes        //
 
9329
//                                //
 
9330
////////////////////////////////////
 
9331
//
 
9332
// MessageId: ERROR_DEPENDENT_RESOURCE_EXISTS
 
9333
//
 
9334
// MessageText:
 
9335
//
 
9336
//  The cluster resource cannot be moved to another group because other resources are dependent on it.
 
9337
//
 
9338
  ERROR_DEPENDENT_RESOURCE_EXISTS = DWORD(5001);
 
9339
  {$EXTERNALSYM ERROR_DEPENDENT_RESOURCE_EXISTS}
 
9340
 
 
9341
//
 
9342
// MessageId: ERROR_DEPENDENCY_NOT_FOUND
 
9343
//
 
9344
// MessageText:
 
9345
//
 
9346
//  The cluster resource dependency cannot be found.
 
9347
//
 
9348
  ERROR_DEPENDENCY_NOT_FOUND = DWORD(5002);
 
9349
  {$EXTERNALSYM ERROR_DEPENDENCY_NOT_FOUND}
 
9350
 
 
9351
//
 
9352
// MessageId: ERROR_DEPENDENCY_ALREADY_EXISTS
 
9353
//
 
9354
// MessageText:
 
9355
//
 
9356
//  The cluster resource cannot be made dependent on the specified resource because it is already dependent.
 
9357
//
 
9358
  ERROR_DEPENDENCY_ALREADY_EXISTS = DWORD(5003);
 
9359
  {$EXTERNALSYM ERROR_DEPENDENCY_ALREADY_EXISTS}
 
9360
 
 
9361
//
 
9362
// MessageId: ERROR_RESOURCE_NOT_ONLINE
 
9363
//
 
9364
// MessageText:
 
9365
//
 
9366
//  The cluster resource is not online.
 
9367
//
 
9368
  ERROR_RESOURCE_NOT_ONLINE = DWORD(5004);
 
9369
  {$EXTERNALSYM ERROR_RESOURCE_NOT_ONLINE}
 
9370
 
 
9371
//
 
9372
// MessageId: ERROR_HOST_NODE_NOT_AVAILABLE
 
9373
//
 
9374
// MessageText:
 
9375
//
 
9376
//  A cluster node is not available for this operation.
 
9377
//
 
9378
  ERROR_HOST_NODE_NOT_AVAILABLE = DWORD(5005);
 
9379
  {$EXTERNALSYM ERROR_HOST_NODE_NOT_AVAILABLE}
 
9380
 
 
9381
//
 
9382
// MessageId: ERROR_RESOURCE_NOT_AVAILABLE
 
9383
//
 
9384
// MessageText:
 
9385
//
 
9386
//  The cluster resource is not available.
 
9387
//
 
9388
  ERROR_RESOURCE_NOT_AVAILABLE = DWORD(5006);
 
9389
  {$EXTERNALSYM ERROR_RESOURCE_NOT_AVAILABLE}
 
9390
 
 
9391
//
 
9392
// MessageId: ERROR_RESOURCE_NOT_FOUND
 
9393
//
 
9394
// MessageText:
 
9395
//
 
9396
//  The cluster resource could not be found.
 
9397
//
 
9398
  ERROR_RESOURCE_NOT_FOUND = DWORD(5007);
 
9399
  {$EXTERNALSYM ERROR_RESOURCE_NOT_FOUND}
 
9400
 
 
9401
//
 
9402
// MessageId: ERROR_SHUTDOWN_CLUSTER
 
9403
//
 
9404
// MessageText:
 
9405
//
 
9406
//  The cluster is being shut down.
 
9407
//
 
9408
  ERROR_SHUTDOWN_CLUSTER = DWORD(5008);
 
9409
  {$EXTERNALSYM ERROR_SHUTDOWN_CLUSTER}
 
9410
 
 
9411
//
 
9412
// MessageId: ERROR_CANT_EVICT_ACTIVE_NODE
 
9413
//
 
9414
// MessageText:
 
9415
//
 
9416
//  A cluster node cannot be evicted from the cluster unless the node is down or it is the last node.
 
9417
//
 
9418
  ERROR_CANT_EVICT_ACTIVE_NODE = DWORD(5009);
 
9419
  {$EXTERNALSYM ERROR_CANT_EVICT_ACTIVE_NODE}
 
9420
 
 
9421
//
 
9422
// MessageId: ERROR_OBJECT_ALREADY_EXISTS
 
9423
//
 
9424
// MessageText:
 
9425
//
 
9426
//  The object already exists.
 
9427
//
 
9428
  ERROR_OBJECT_ALREADY_EXISTS = DWORD(5010);
 
9429
  {$EXTERNALSYM ERROR_OBJECT_ALREADY_EXISTS}
 
9430
 
 
9431
//
 
9432
// MessageId: ERROR_OBJECT_IN_LIST
 
9433
//
 
9434
// MessageText:
 
9435
//
 
9436
//  The object is already in the list.
 
9437
//
 
9438
  ERROR_OBJECT_IN_LIST = DWORD(5011);
 
9439
  {$EXTERNALSYM ERROR_OBJECT_IN_LIST}
 
9440
 
 
9441
//
 
9442
// MessageId: ERROR_GROUP_NOT_AVAILABLE
 
9443
//
 
9444
// MessageText:
 
9445
//
 
9446
//  The cluster group is not available for any new requests.
 
9447
//
 
9448
  ERROR_GROUP_NOT_AVAILABLE = DWORD(5012);
 
9449
  {$EXTERNALSYM ERROR_GROUP_NOT_AVAILABLE}
 
9450
 
 
9451
//
 
9452
// MessageId: ERROR_GROUP_NOT_FOUND
 
9453
//
 
9454
// MessageText:
 
9455
//
 
9456
//  The cluster group could not be found.
 
9457
//
 
9458
  ERROR_GROUP_NOT_FOUND = DWORD(5013);
 
9459
  {$EXTERNALSYM ERROR_GROUP_NOT_FOUND}
 
9460
 
 
9461
//
 
9462
// MessageId: ERROR_GROUP_NOT_ONLINE
 
9463
//
 
9464
// MessageText:
 
9465
//
 
9466
//  The operation could not be completed because the cluster group is not online.
 
9467
//
 
9468
  ERROR_GROUP_NOT_ONLINE = DWORD(5014);
 
9469
  {$EXTERNALSYM ERROR_GROUP_NOT_ONLINE}
 
9470
 
 
9471
//
 
9472
// MessageId: ERROR_HOST_NODE_NOT_RESOURCE_OWNER
 
9473
//
 
9474
// MessageText:
 
9475
//
 
9476
//  The cluster node is not the owner of the resource.
 
9477
//
 
9478
  ERROR_HOST_NODE_NOT_RESOURCE_OWNER = DWORD(5015);
 
9479
  {$EXTERNALSYM ERROR_HOST_NODE_NOT_RESOURCE_OWNER}
 
9480
 
 
9481
//
 
9482
// MessageId: ERROR_HOST_NODE_NOT_GROUP_OWNER
 
9483
//
 
9484
// MessageText:
 
9485
//
 
9486
//  The cluster node is not the owner of the group.
 
9487
//
 
9488
  ERROR_HOST_NODE_NOT_GROUP_OWNER = DWORD(5016);
 
9489
  {$EXTERNALSYM ERROR_HOST_NODE_NOT_GROUP_OWNER}
 
9490
 
 
9491
//
 
9492
// MessageId: ERROR_RESMON_CREATE_FAILED
 
9493
//
 
9494
// MessageText:
 
9495
//
 
9496
//  The cluster resource could not be created in the specified resource monitor.
 
9497
//
 
9498
  ERROR_RESMON_CREATE_FAILED = DWORD(5017);
 
9499
  {$EXTERNALSYM ERROR_RESMON_CREATE_FAILED}
 
9500
 
 
9501
//
 
9502
// MessageId: ERROR_RESMON_ONLINE_FAILED
 
9503
//
 
9504
// MessageText:
 
9505
//
 
9506
//  The cluster resource could not be brought online by the resource monitor.
 
9507
//
 
9508
  ERROR_RESMON_ONLINE_FAILED = DWORD(5018);
 
9509
  {$EXTERNALSYM ERROR_RESMON_ONLINE_FAILED}
 
9510
 
 
9511
//
 
9512
// MessageId: ERROR_RESOURCE_ONLINE
 
9513
//
 
9514
// MessageText:
 
9515
//
 
9516
//  The operation could not be completed because the cluster resource is online.
 
9517
//
 
9518
  ERROR_RESOURCE_ONLINE = DWORD(5019);
 
9519
  {$EXTERNALSYM ERROR_RESOURCE_ONLINE}
 
9520
 
 
9521
//
 
9522
// MessageId: ERROR_QUORUM_RESOURCE
 
9523
//
 
9524
// MessageText:
 
9525
//
 
9526
//  The cluster resource could not be deleted or brought offline because it is the quorum resource.
 
9527
//
 
9528
  ERROR_QUORUM_RESOURCE = DWORD(5020);
 
9529
  {$EXTERNALSYM ERROR_QUORUM_RESOURCE}
 
9530
 
 
9531
//
 
9532
// MessageId: ERROR_NOT_QUORUM_CAPABLE
 
9533
//
 
9534
// MessageText:
 
9535
//
 
9536
//  The cluster could not make the specified resource a quorum resource because it is not capable of being a quorum resource.
 
9537
//
 
9538
  ERROR_NOT_QUORUM_CAPABLE = DWORD(5021);
 
9539
  {$EXTERNALSYM ERROR_NOT_QUORUM_CAPABLE}
 
9540
 
 
9541
//
 
9542
// MessageId: ERROR_CLUSTER_SHUTTING_DOWN
 
9543
//
 
9544
// MessageText:
 
9545
//
 
9546
//  The cluster software is shutting down.
 
9547
//
 
9548
  ERROR_CLUSTER_SHUTTING_DOWN = DWORD(5022);
 
9549
  {$EXTERNALSYM ERROR_CLUSTER_SHUTTING_DOWN}
 
9550
 
 
9551
//
 
9552
// MessageId: ERROR_INVALID_STATE
 
9553
//
 
9554
// MessageText:
 
9555
//
 
9556
//  The group or resource is not in the correct state to perform the requested operation.
 
9557
//
 
9558
  ERROR_INVALID_STATE = DWORD(5023);
 
9559
  {$EXTERNALSYM ERROR_INVALID_STATE}
 
9560
 
 
9561
//
 
9562
// MessageId: ERROR_RESOURCE_PROPERTIES_STORED
 
9563
//
 
9564
// MessageText:
 
9565
//
 
9566
//  The properties were stored but not all changes will take effect until the next time the resource is brought online.
 
9567
//
 
9568
  ERROR_RESOURCE_PROPERTIES_STORED = DWORD(5024);
 
9569
  {$EXTERNALSYM ERROR_RESOURCE_PROPERTIES_STORED}
 
9570
 
 
9571
//
 
9572
// MessageId: ERROR_NOT_QUORUM_CLASS
 
9573
//
 
9574
// MessageText:
 
9575
//
 
9576
//  The cluster could not make the specified resource a quorum resource because it does not belong to a shared storage class.
 
9577
//
 
9578
  ERROR_NOT_QUORUM_CLASS = DWORD(5025);
 
9579
  {$EXTERNALSYM ERROR_NOT_QUORUM_CLASS}
 
9580
 
 
9581
//
 
9582
// MessageId: ERROR_CORE_RESOURCE
 
9583
//
 
9584
// MessageText:
 
9585
//
 
9586
//  The cluster resource could not be deleted since it is a core resource.
 
9587
//
 
9588
  ERROR_CORE_RESOURCE = DWORD(5026);
 
9589
  {$EXTERNALSYM ERROR_CORE_RESOURCE}
 
9590
 
 
9591
//
 
9592
// MessageId: ERROR_QUORUM_RESOURCE_ONLINE_FAILED
 
9593
//
 
9594
// MessageText:
 
9595
//
 
9596
//  The quorum resource failed to come online.
 
9597
//
 
9598
  ERROR_QUORUM_RESOURCE_ONLINE_FAILED = DWORD(5027);
 
9599
  {$EXTERNALSYM ERROR_QUORUM_RESOURCE_ONLINE_FAILED}
 
9600
 
 
9601
//
 
9602
// MessageId: ERROR_QUORUMLOG_OPEN_FAILED
 
9603
//
 
9604
// MessageText:
 
9605
//
 
9606
//  The quorum log could not be created or mounted successfully.
 
9607
//
 
9608
  ERROR_QUORUMLOG_OPEN_FAILED = DWORD(5028);
 
9609
  {$EXTERNALSYM ERROR_QUORUMLOG_OPEN_FAILED}
 
9610
 
 
9611
//
 
9612
// MessageId: ERROR_CLUSTERLOG_CORRUPT
 
9613
//
 
9614
// MessageText:
 
9615
//
 
9616
//  The cluster log is corrupt.
 
9617
//
 
9618
  ERROR_CLUSTERLOG_CORRUPT = DWORD(5029);
 
9619
  {$EXTERNALSYM ERROR_CLUSTERLOG_CORRUPT}
 
9620
 
 
9621
//
 
9622
// MessageId: ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE
 
9623
//
 
9624
// MessageText:
 
9625
//
 
9626
//  The record could not be written to the cluster log since it exceeds the maximum size.
 
9627
//
 
9628
  ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE = DWORD(5030);
 
9629
  {$EXTERNALSYM ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE}
 
9630
 
 
9631
//
 
9632
// MessageId: ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE
 
9633
//
 
9634
// MessageText:
 
9635
//
 
9636
//  The cluster log exceeds its maximum size.
 
9637
//
 
9638
  ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE = DWORD(5031);
 
9639
  {$EXTERNALSYM ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE}
 
9640
 
 
9641
//
 
9642
// MessageId: ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND
 
9643
//
 
9644
// MessageText:
 
9645
//
 
9646
//  No checkpoint record was found in the cluster log.
 
9647
//
 
9648
  ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND = DWORD(5032);
 
9649
  {$EXTERNALSYM ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND}
 
9650
 
 
9651
//
 
9652
// MessageId: ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE
 
9653
//
 
9654
// MessageText:
 
9655
//
 
9656
//  The minimum required disk space needed for logging is not available.
 
9657
//
 
9658
  ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE = DWORD(5033);
 
9659
  {$EXTERNALSYM ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE}
 
9660
 
 
9661
//
 
9662
// MessageId: ERROR_QUORUM_OWNER_ALIVE
 
9663
//
 
9664
// MessageText:
 
9665
//
 
9666
//  The cluster node failed to take control of the quorum resource because the resource is owned by another active node.
 
9667
//
 
9668
  ERROR_QUORUM_OWNER_ALIVE = DWORD(5034);
 
9669
  {$EXTERNALSYM ERROR_QUORUM_OWNER_ALIVE}
 
9670
 
 
9671
//
 
9672
// MessageId: ERROR_NETWORK_NOT_AVAILABLE
 
9673
//
 
9674
// MessageText:
 
9675
//
 
9676
//  A cluster network is not available for this operation.
 
9677
//
 
9678
  ERROR_NETWORK_NOT_AVAILABLE = DWORD(5035);
 
9679
  {$EXTERNALSYM ERROR_NETWORK_NOT_AVAILABLE}
 
9680
 
 
9681
//
 
9682
// MessageId: ERROR_NODE_NOT_AVAILABLE
 
9683
//
 
9684
// MessageText:
 
9685
//
 
9686
//  A cluster node is not available for this operation.
 
9687
//
 
9688
  ERROR_NODE_NOT_AVAILABLE = DWORD(5036);
 
9689
  {$EXTERNALSYM ERROR_NODE_NOT_AVAILABLE}
 
9690
 
 
9691
//
 
9692
// MessageId: ERROR_ALL_NODES_NOT_AVAILABLE
 
9693
//
 
9694
// MessageText:
 
9695
//
 
9696
//  All cluster nodes must be running to perform this operation.
 
9697
//
 
9698
  ERROR_ALL_NODES_NOT_AVAILABLE = DWORD(5037);
 
9699
  {$EXTERNALSYM ERROR_ALL_NODES_NOT_AVAILABLE}
 
9700
 
 
9701
//
 
9702
// MessageId: ERROR_RESOURCE_FAILED
 
9703
//
 
9704
// MessageText:
 
9705
//
 
9706
//  A cluster resource failed.
 
9707
//
 
9708
  ERROR_RESOURCE_FAILED = DWORD(5038);
 
9709
  {$EXTERNALSYM ERROR_RESOURCE_FAILED}
 
9710
 
 
9711
//
 
9712
// MessageId: ERROR_CLUSTER_INVALID_NODE
 
9713
//
 
9714
// MessageText:
 
9715
//
 
9716
//  The cluster node is not valid.
 
9717
//
 
9718
  ERROR_CLUSTER_INVALID_NODE = DWORD(5039);
 
9719
  {$EXTERNALSYM ERROR_CLUSTER_INVALID_NODE}
 
9720
 
 
9721
//
 
9722
// MessageId: ERROR_CLUSTER_NODE_EXISTS
 
9723
//
 
9724
// MessageText:
 
9725
//
 
9726
//  The cluster node already exists.
 
9727
//
 
9728
  ERROR_CLUSTER_NODE_EXISTS = DWORD(5040);
 
9729
  {$EXTERNALSYM ERROR_CLUSTER_NODE_EXISTS}
 
9730
 
 
9731
//
 
9732
// MessageId: ERROR_CLUSTER_JOIN_IN_PROGRESS
 
9733
//
 
9734
// MessageText:
 
9735
//
 
9736
//  A node is in the process of joining the cluster.
 
9737
//
 
9738
  ERROR_CLUSTER_JOIN_IN_PROGRESS = DWORD(5041);
 
9739
  {$EXTERNALSYM ERROR_CLUSTER_JOIN_IN_PROGRESS}
 
9740
 
 
9741
//
 
9742
// MessageId: ERROR_CLUSTER_NODE_NOT_FOUND
 
9743
//
 
9744
// MessageText:
 
9745
//
 
9746
//  The cluster node was not found.
 
9747
//
 
9748
  ERROR_CLUSTER_NODE_NOT_FOUND = DWORD(5042);
 
9749
  {$EXTERNALSYM ERROR_CLUSTER_NODE_NOT_FOUND}
 
9750
 
 
9751
//
 
9752
// MessageId: ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND
 
9753
//
 
9754
// MessageText:
 
9755
//
 
9756
//  The cluster local node information was not found.
 
9757
//
 
9758
  ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND = DWORD(5043);
 
9759
  {$EXTERNALSYM ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND}
 
9760
 
 
9761
//
 
9762
// MessageId: ERROR_CLUSTER_NETWORK_EXISTS
 
9763
//
 
9764
// MessageText:
 
9765
//
 
9766
//  The cluster network already exists.
 
9767
//
 
9768
  ERROR_CLUSTER_NETWORK_EXISTS = DWORD(5044);
 
9769
  {$EXTERNALSYM ERROR_CLUSTER_NETWORK_EXISTS}
 
9770
 
 
9771
//
 
9772
// MessageId: ERROR_CLUSTER_NETWORK_NOT_FOUND
 
9773
//
 
9774
// MessageText:
 
9775
//
 
9776
//  The cluster network was not found.
 
9777
//
 
9778
  ERROR_CLUSTER_NETWORK_NOT_FOUND = DWORD(5045);
 
9779
  {$EXTERNALSYM ERROR_CLUSTER_NETWORK_NOT_FOUND}
 
9780
 
 
9781
//
 
9782
// MessageId: ERROR_CLUSTER_NETINTERFACE_EXISTS
 
9783
//
 
9784
// MessageText:
 
9785
//
 
9786
//  The cluster network interface already exists.
 
9787
//
 
9788
  ERROR_CLUSTER_NETINTERFACE_EXISTS = DWORD(5046);
 
9789
  {$EXTERNALSYM ERROR_CLUSTER_NETINTERFACE_EXISTS}
 
9790
 
 
9791
//
 
9792
// MessageId: ERROR_CLUSTER_NETINTERFACE_NOT_FOUND
 
9793
//
 
9794
// MessageText:
 
9795
//
 
9796
//  The cluster network interface was not found.
 
9797
//
 
9798
  ERROR_CLUSTER_NETINTERFACE_NOT_FOUND = DWORD(5047);
 
9799
  {$EXTERNALSYM ERROR_CLUSTER_NETINTERFACE_NOT_FOUND}
 
9800
 
 
9801
//
 
9802
// MessageId: ERROR_CLUSTER_INVALID_REQUEST
 
9803
//
 
9804
// MessageText:
 
9805
//
 
9806
//  The cluster request is not valid for this object.
 
9807
//
 
9808
  ERROR_CLUSTER_INVALID_REQUEST = DWORD(5048);
 
9809
  {$EXTERNALSYM ERROR_CLUSTER_INVALID_REQUEST}
 
9810
 
 
9811
//
 
9812
// MessageId: ERROR_CLUSTER_INVALID_NETWORK_PROVIDER
 
9813
//
 
9814
// MessageText:
 
9815
//
 
9816
//  The cluster network provider is not valid.
 
9817
//
 
9818
  ERROR_CLUSTER_INVALID_NETWORK_PROVIDER = DWORD(5049);
 
9819
  {$EXTERNALSYM ERROR_CLUSTER_INVALID_NETWORK_PROVIDER}
 
9820
 
 
9821
//
 
9822
// MessageId: ERROR_CLUSTER_NODE_DOWN
 
9823
//
 
9824
// MessageText:
 
9825
//
 
9826
//  The cluster node is down.
 
9827
//
 
9828
  ERROR_CLUSTER_NODE_DOWN = DWORD(5050);
 
9829
  {$EXTERNALSYM ERROR_CLUSTER_NODE_DOWN}
 
9830
 
 
9831
//
 
9832
// MessageId: ERROR_CLUSTER_NODE_UNREACHABLE
 
9833
//
 
9834
// MessageText:
 
9835
//
 
9836
//  The cluster node is not reachable.
 
9837
//
 
9838
  ERROR_CLUSTER_NODE_UNREACHABLE = DWORD(5051);
 
9839
  {$EXTERNALSYM ERROR_CLUSTER_NODE_UNREACHABLE}
 
9840
 
 
9841
//
 
9842
// MessageId: ERROR_CLUSTER_NODE_NOT_MEMBER
 
9843
//
 
9844
// MessageText:
 
9845
//
 
9846
//  The cluster node is not a member of the cluster.
 
9847
//
 
9848
  ERROR_CLUSTER_NODE_NOT_MEMBER = DWORD(5052);
 
9849
  {$EXTERNALSYM ERROR_CLUSTER_NODE_NOT_MEMBER}
 
9850
 
 
9851
//
 
9852
// MessageId: ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS
 
9853
//
 
9854
// MessageText:
 
9855
//
 
9856
//  A cluster join operation is not in progress.
 
9857
//
 
9858
  ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS = DWORD(5053);
 
9859
  {$EXTERNALSYM ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS}
 
9860
 
 
9861
//
 
9862
// MessageId: ERROR_CLUSTER_INVALID_NETWORK
 
9863
//
 
9864
// MessageText:
 
9865
//
 
9866
//  The cluster network is not valid.
 
9867
//
 
9868
  ERROR_CLUSTER_INVALID_NETWORK = DWORD(5054);
 
9869
  {$EXTERNALSYM ERROR_CLUSTER_INVALID_NETWORK}
 
9870
 
 
9871
//
 
9872
// MessageId: ERROR_CLUSTER_NODE_UP
 
9873
//
 
9874
// MessageText:
 
9875
//
 
9876
//  The cluster node is up.
 
9877
//
 
9878
  ERROR_CLUSTER_NODE_UP = DWORD(5056);
 
9879
  {$EXTERNALSYM ERROR_CLUSTER_NODE_UP}
 
9880
 
 
9881
//
 
9882
// MessageId: ERROR_CLUSTER_IPADDR_IN_USE
 
9883
//
 
9884
// MessageText:
 
9885
//
 
9886
//  The cluster IP address is already in use.
 
9887
//
 
9888
  ERROR_CLUSTER_IPADDR_IN_USE = DWORD(5057);
 
9889
  {$EXTERNALSYM ERROR_CLUSTER_IPADDR_IN_USE}
 
9890
 
 
9891
//
 
9892
// MessageId: ERROR_CLUSTER_NODE_NOT_PAUSED
 
9893
//
 
9894
// MessageText:
 
9895
//
 
9896
//  The cluster node is not paused.
 
9897
//
 
9898
  ERROR_CLUSTER_NODE_NOT_PAUSED = DWORD(5058);
 
9899
  {$EXTERNALSYM ERROR_CLUSTER_NODE_NOT_PAUSED}
 
9900
 
 
9901
//
 
9902
// MessageId: ERROR_CLUSTER_NO_SECURITY_CONTEXT
 
9903
//
 
9904
// MessageText:
 
9905
//
 
9906
//  No cluster security context is available.
 
9907
//
 
9908
  ERROR_CLUSTER_NO_SECURITY_CONTEXT = DWORD(5059);
 
9909
  {$EXTERNALSYM ERROR_CLUSTER_NO_SECURITY_CONTEXT}
 
9910
 
 
9911
//
 
9912
// MessageId: ERROR_CLUSTER_NETWORK_NOT_INTERNAL
 
9913
//
 
9914
// MessageText:
 
9915
//
 
9916
//  The cluster network is not configured for internal cluster communication.
 
9917
//
 
9918
  ERROR_CLUSTER_NETWORK_NOT_INTERNAL = DWORD(5060);
 
9919
  {$EXTERNALSYM ERROR_CLUSTER_NETWORK_NOT_INTERNAL}
 
9920
 
 
9921
//
 
9922
// MessageId: ERROR_CLUSTER_NODE_ALREADY_UP
 
9923
//
 
9924
// MessageText:
 
9925
//
 
9926
//  The cluster node is already up.
 
9927
//
 
9928
  ERROR_CLUSTER_NODE_ALREADY_UP = DWORD(5061);
 
9929
  {$EXTERNALSYM ERROR_CLUSTER_NODE_ALREADY_UP}
 
9930
 
 
9931
//
 
9932
// MessageId: ERROR_CLUSTER_NODE_ALREADY_DOWN
 
9933
//
 
9934
// MessageText:
 
9935
//
 
9936
//  The cluster node is already down.
 
9937
//
 
9938
  ERROR_CLUSTER_NODE_ALREADY_DOWN = DWORD(5062);
 
9939
  {$EXTERNALSYM ERROR_CLUSTER_NODE_ALREADY_DOWN}
 
9940
 
 
9941
//
 
9942
// MessageId: ERROR_CLUSTER_NETWORK_ALREADY_ONLINE
 
9943
//
 
9944
// MessageText:
 
9945
//
 
9946
//  The cluster network is already online.
 
9947
//
 
9948
  ERROR_CLUSTER_NETWORK_ALREADY_ONLINE = DWORD(5063);
 
9949
  {$EXTERNALSYM ERROR_CLUSTER_NETWORK_ALREADY_ONLINE}
 
9950
 
 
9951
//
 
9952
// MessageId: ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE
 
9953
//
 
9954
// MessageText:
 
9955
//
 
9956
//  The cluster network is already offline.
 
9957
//
 
9958
  ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE = DWORD(5064);
 
9959
  {$EXTERNALSYM ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE}
 
9960
 
 
9961
//
 
9962
// MessageId: ERROR_CLUSTER_NODE_ALREADY_MEMBER
 
9963
//
 
9964
// MessageText:
 
9965
//
 
9966
//  The cluster node is already a member of the cluster.
 
9967
//
 
9968
  ERROR_CLUSTER_NODE_ALREADY_MEMBER = DWORD(5065);
 
9969
  {$EXTERNALSYM ERROR_CLUSTER_NODE_ALREADY_MEMBER}
 
9970
 
 
9971
//
 
9972
// MessageId: ERROR_CLUSTER_LAST_INTERNAL_NETWORK
 
9973
//
 
9974
// MessageText:
 
9975
//
 
9976
//  The cluster network is the only one configured for internal cluster communication between two or more active cluster nodes. The internal communication capability cannot be removed from the network.
 
9977
//
 
9978
  ERROR_CLUSTER_LAST_INTERNAL_NETWORK = DWORD(5066);
 
9979
  {$EXTERNALSYM ERROR_CLUSTER_LAST_INTERNAL_NETWORK}
 
9980
 
 
9981
//
 
9982
// MessageId: ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS
 
9983
//
 
9984
// MessageText:
 
9985
//
 
9986
//  One or more cluster resources depend on the network to provide service to clients. The client access capability cannot be removed from the network.
 
9987
//
 
9988
  ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS = DWORD(5067);
 
9989
  {$EXTERNALSYM ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS}
 
9990
 
 
9991
//
 
9992
// MessageId: ERROR_INVALID_OPERATION_ON_QUORUM
 
9993
//
 
9994
// MessageText:
 
9995
//
 
9996
//  This operation cannot be performed on the cluster resource as it the quorum resource. You may not bring the quorum resource offline or modify its possible owners list.
 
9997
//
 
9998
  ERROR_INVALID_OPERATION_ON_QUORUM = DWORD(5068);
 
9999
  {$EXTERNALSYM ERROR_INVALID_OPERATION_ON_QUORUM}
 
10000
 
 
10001
//
 
10002
// MessageId: ERROR_DEPENDENCY_NOT_ALLOWED
 
10003
//
 
10004
// MessageText:
 
10005
//
 
10006
//  The cluster quorum resource is not allowed to have any dependencies.
 
10007
//
 
10008
  ERROR_DEPENDENCY_NOT_ALLOWED = DWORD(5069);
 
10009
  {$EXTERNALSYM ERROR_DEPENDENCY_NOT_ALLOWED}
 
10010
 
 
10011
//
 
10012
// MessageId: ERROR_CLUSTER_NODE_PAUSED
 
10013
//
 
10014
// MessageText:
 
10015
//
 
10016
//  The cluster node is paused.
 
10017
//
 
10018
  ERROR_CLUSTER_NODE_PAUSED = DWORD(5070);
 
10019
  {$EXTERNALSYM ERROR_CLUSTER_NODE_PAUSED}
 
10020
 
 
10021
//
 
10022
// MessageId: ERROR_NODE_CANT_HOST_RESOURCE
 
10023
//
 
10024
// MessageText:
 
10025
//
 
10026
//  The cluster resource cannot be brought online. The owner node cannot run this resource.
 
10027
//
 
10028
  ERROR_NODE_CANT_HOST_RESOURCE = DWORD(5071);
 
10029
  {$EXTERNALSYM ERROR_NODE_CANT_HOST_RESOURCE}
 
10030
 
 
10031
//
 
10032
// MessageId: ERROR_CLUSTER_NODE_NOT_READY
 
10033
//
 
10034
// MessageText:
 
10035
//
 
10036
//  The cluster node is not ready to perform the requested operation.
 
10037
//
 
10038
  ERROR_CLUSTER_NODE_NOT_READY = DWORD(5072);
 
10039
  {$EXTERNALSYM ERROR_CLUSTER_NODE_NOT_READY}
 
10040
 
 
10041
//
 
10042
// MessageId: ERROR_CLUSTER_NODE_SHUTTING_DOWN
 
10043
//
 
10044
// MessageText:
 
10045
//
 
10046
//  The cluster node is shutting down.
 
10047
//
 
10048
  ERROR_CLUSTER_NODE_SHUTTING_DOWN = DWORD(5073);
 
10049
  {$EXTERNALSYM ERROR_CLUSTER_NODE_SHUTTING_DOWN}
 
10050
 
 
10051
//
 
10052
// MessageId: ERROR_CLUSTER_JOIN_ABORTED
 
10053
//
 
10054
// MessageText:
 
10055
//
 
10056
//  The cluster join operation was aborted.
 
10057
//
 
10058
  ERROR_CLUSTER_JOIN_ABORTED = DWORD(5074);
 
10059
  {$EXTERNALSYM ERROR_CLUSTER_JOIN_ABORTED}
 
10060
 
 
10061
//
 
10062
// MessageId: ERROR_CLUSTER_INCOMPATIBLE_VERSIONS
 
10063
//
 
10064
// MessageText:
 
10065
//
 
10066
//  The cluster join operation failed due to incompatible software versions between the joining node and its sponsor.
 
10067
//
 
10068
  ERROR_CLUSTER_INCOMPATIBLE_VERSIONS = DWORD(5075);
 
10069
  {$EXTERNALSYM ERROR_CLUSTER_INCOMPATIBLE_VERSIONS}
 
10070
 
 
10071
//
 
10072
// MessageId: ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED
 
10073
//
 
10074
// MessageText:
 
10075
//
 
10076
//  This resource cannot be created because the cluster has reached the limit on the number of resources it can monitor.
 
10077
//
 
10078
  ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED = DWORD(5076);
 
10079
  {$EXTERNALSYM ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED}
 
10080
 
 
10081
//
 
10082
// MessageId: ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED
 
10083
//
 
10084
// MessageText:
 
10085
//
 
10086
//  The system configuration changed during the cluster join or form operation. The join or form operation was aborted.
 
10087
//
 
10088
  ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED = DWORD(5077);
 
10089
  {$EXTERNALSYM ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED}
 
10090
 
 
10091
//
 
10092
// MessageId: ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND
 
10093
//
 
10094
// MessageText:
 
10095
//
 
10096
//  The specified resource type was not found.
 
10097
//
 
10098
  ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND = DWORD(5078);
 
10099
  {$EXTERNALSYM ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND}
 
10100
 
 
10101
//
 
10102
// MessageId: ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED
 
10103
//
 
10104
// MessageText:
 
10105
//
 
10106
//  The specified node does not support a resource of this type.  This may be due to version inconsistencies or due to the absence of the resource DLL on this node.
 
10107
//
 
10108
  ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED = DWORD(5079);
 
10109
  {$EXTERNALSYM ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED}
 
10110
 
 
10111
//
 
10112
// MessageId: ERROR_CLUSTER_RESNAME_NOT_FOUND
 
10113
//
 
10114
// MessageText:
 
10115
//
 
10116
//  The specified resource name is not supported by this resource DLL. This may be due to a bad (or changed) name supplied to the resource DLL.
 
10117
//
 
10118
  ERROR_CLUSTER_RESNAME_NOT_FOUND = DWORD(5080);
 
10119
  {$EXTERNALSYM ERROR_CLUSTER_RESNAME_NOT_FOUND}
 
10120
 
 
10121
//
 
10122
// MessageId: ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED
 
10123
//
 
10124
// MessageText:
 
10125
//
 
10126
//  No authentication package could be registered with the RPC server.
 
10127
//
 
10128
  ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED = DWORD(5081);
 
10129
  {$EXTERNALSYM ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED}
 
10130
 
 
10131
//
 
10132
// MessageId: ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST
 
10133
//
 
10134
// MessageText:
 
10135
//
 
10136
//  You cannot bring the group online because the owner of the group is not in the preferred list for the group. To change the owner node for the group, move the group.
 
10137
//
 
10138
  ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST = DWORD(5082);
 
10139
  {$EXTERNALSYM ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST}
 
10140
 
 
10141
//
 
10142
// MessageId: ERROR_CLUSTER_DATABASE_SEQMISMATCH
 
10143
//
 
10144
// MessageText:
 
10145
//
 
10146
//  The join operation failed because the cluster database sequence number has changed or is incompatible with the locker node. This may happen during a join operation if the cluster database was changing during the join.
 
10147
//
 
10148
  ERROR_CLUSTER_DATABASE_SEQMISMATCH = DWORD(5083);
 
10149
  {$EXTERNALSYM ERROR_CLUSTER_DATABASE_SEQMISMATCH}
 
10150
 
 
10151
//
 
10152
// MessageId: ERROR_RESMON_INVALID_STATE
 
10153
//
 
10154
// MessageText:
 
10155
//
 
10156
//  The resource monitor will not allow the fail operation to be performed while the resource is in its current state. This may happen if the resource is in a pending state.
 
10157
//
 
10158
  ERROR_RESMON_INVALID_STATE = DWORD(5084);
 
10159
  {$EXTERNALSYM ERROR_RESMON_INVALID_STATE}
 
10160
 
 
10161
//
 
10162
// MessageId: ERROR_CLUSTER_GUM_NOT_LOCKER
 
10163
//
 
10164
// MessageText:
 
10165
//
 
10166
//  A non locker code got a request to reserve the lock for making global updates.
 
10167
//
 
10168
  ERROR_CLUSTER_GUM_NOT_LOCKER = DWORD(5085);
 
10169
  {$EXTERNALSYM ERROR_CLUSTER_GUM_NOT_LOCKER}
 
10170
 
 
10171
//
 
10172
// MessageId: ERROR_QUORUM_DISK_NOT_FOUND
 
10173
//
 
10174
// MessageText:
 
10175
//
 
10176
//  The quorum disk could not be located by the cluster service.
 
10177
//
 
10178
  ERROR_QUORUM_DISK_NOT_FOUND = DWORD(5086);
 
10179
  {$EXTERNALSYM ERROR_QUORUM_DISK_NOT_FOUND}
 
10180
 
 
10181
//
 
10182
// MessageId: ERROR_DATABASE_BACKUP_CORRUPT
 
10183
//
 
10184
// MessageText:
 
10185
//
 
10186
//  The backed up cluster database is possibly corrupt.
 
10187
//
 
10188
  ERROR_DATABASE_BACKUP_CORRUPT = DWORD(5087);
 
10189
  {$EXTERNALSYM ERROR_DATABASE_BACKUP_CORRUPT}
 
10190
 
 
10191
//
 
10192
// MessageId: ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT
 
10193
//
 
10194
// MessageText:
 
10195
//
 
10196
//  A DFS root already exists in this cluster node.
 
10197
//
 
10198
  ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT = DWORD(5088);
 
10199
  {$EXTERNALSYM ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT}
 
10200
 
 
10201
//
 
10202
// MessageId: ERROR_RESOURCE_PROPERTY_UNCHANGEABLE
 
10203
//
 
10204
// MessageText:
 
10205
//
 
10206
//  An attempt to modify a resource property failed because it conflicts with another existing property.
 
10207
//
 
10208
  ERROR_RESOURCE_PROPERTY_UNCHANGEABLE = DWORD(5089);
 
10209
  {$EXTERNALSYM ERROR_RESOURCE_PROPERTY_UNCHANGEABLE}
 
10210
 
 
10211
{
 
10212
 Codes from 4300 through 5889 overlap with codes in ds\published\inc\apperr2.w.
 
10213
 Do not add any more error codes in that range.
 
10214
}
 
10215
 
 
10216
//
 
10217
// MessageId: ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE
 
10218
//
 
10219
// MessageText:
 
10220
//
 
10221
//  An operation was attempted that is incompatible with the current membership state of the node.
 
10222
//
 
10223
  ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE = DWORD(5890);
 
10224
  {$EXTERNALSYM ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE}
 
10225
 
 
10226
//
 
10227
// MessageId: ERROR_CLUSTER_QUORUMLOG_NOT_FOUND
 
10228
//
 
10229
// MessageText:
 
10230
//
 
10231
//  The quorum resource does not contain the quorum log.
 
10232
//
 
10233
  ERROR_CLUSTER_QUORUMLOG_NOT_FOUND = DWORD(5891);
 
10234
  {$EXTERNALSYM ERROR_CLUSTER_QUORUMLOG_NOT_FOUND}
 
10235
 
 
10236
//
 
10237
// MessageId: ERROR_CLUSTER_MEMBERSHIP_HALT
 
10238
//
 
10239
// MessageText:
 
10240
//
 
10241
//  The membership engine requested shutdown of the cluster service on this node.
 
10242
//
 
10243
  ERROR_CLUSTER_MEMBERSHIP_HALT = DWORD(5892);
 
10244
  {$EXTERNALSYM ERROR_CLUSTER_MEMBERSHIP_HALT}
 
10245
 
 
10246
//
 
10247
// MessageId: ERROR_CLUSTER_INSTANCE_ID_MISMATCH
 
10248
//
 
10249
// MessageText:
 
10250
//
 
10251
//  The join operation failed because the cluster instance ID of the joining node does not match the cluster instance ID of the sponsor node.
 
10252
//
 
10253
  ERROR_CLUSTER_INSTANCE_ID_MISMATCH = DWORD(5893);
 
10254
  {$EXTERNALSYM ERROR_CLUSTER_INSTANCE_ID_MISMATCH}
 
10255
 
 
10256
//
 
10257
// MessageId: ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP
 
10258
//
 
10259
// MessageText:
 
10260
//
 
10261
//  A matching network for the specified IP address could not be found. Please also specify a subnet mask and a cluster network.
 
10262
//
 
10263
  ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP = DWORD(5894);
 
10264
  {$EXTERNALSYM ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP}
 
10265
 
 
10266
//
 
10267
// MessageId: ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH
 
10268
//
 
10269
// MessageText:
 
10270
//
 
10271
//  The actual data type of the property did not match the expected data type of the property.
 
10272
//
 
10273
  ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH = DWORD(5895);
 
10274
  {$EXTERNALSYM ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH}
 
10275
 
 
10276
//
 
10277
// MessageId: ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP
 
10278
//
 
10279
// MessageText:
 
10280
//
 
10281
//  The cluster node was evicted from the cluster successfully, but the node was not cleaned up.  Extended status information explaining why the node was not cleaned up is available.
 
10282
//
 
10283
  ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP = DWORD(5896);
 
10284
  {$EXTERNALSYM ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP}
 
10285
 
 
10286
//
 
10287
// MessageId: ERROR_CLUSTER_PARAMETER_MISMATCH
 
10288
//
 
10289
// MessageText:
 
10290
//
 
10291
//  Two or more parameter values specified for a resource's properties are in conflict.
 
10292
//
 
10293
  ERROR_CLUSTER_PARAMETER_MISMATCH = DWORD(5897);
 
10294
  {$EXTERNALSYM ERROR_CLUSTER_PARAMETER_MISMATCH}
 
10295
 
 
10296
//
 
10297
// MessageId: ERROR_NODE_CANNOT_BE_CLUSTERED
 
10298
//
 
10299
// MessageText:
 
10300
//
 
10301
//  This computer cannot be made a member of a cluster.
 
10302
//
 
10303
  ERROR_NODE_CANNOT_BE_CLUSTERED = DWORD(5898);
 
10304
  {$EXTERNALSYM ERROR_NODE_CANNOT_BE_CLUSTERED}
 
10305
 
 
10306
//
 
10307
// MessageId: ERROR_CLUSTER_WRONG_OS_VERSION
 
10308
//
 
10309
// MessageText:
 
10310
//
 
10311
//  This computer cannot be made a member of a cluster because it does not have the correct version of Windows installed.
 
10312
//
 
10313
  ERROR_CLUSTER_WRONG_OS_VERSION = DWORD(5899);
 
10314
  {$EXTERNALSYM ERROR_CLUSTER_WRONG_OS_VERSION}
 
10315
 
 
10316
//
 
10317
// MessageId: ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME
 
10318
//
 
10319
// MessageText:
 
10320
//
 
10321
//  A cluster cannot be created with the specified cluster name because that cluster name is already in use. Specify a different name for the cluster.
 
10322
//
 
10323
  ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME = DWORD(5900);
 
10324
  {$EXTERNALSYM ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME}
 
10325
 
 
10326
//
 
10327
// MessageId: ERROR_CLUSCFG_ALREADY_COMMITTED
 
10328
//
 
10329
// MessageText:
 
10330
//
 
10331
//  The cluster configuration action has already been committed.
 
10332
//
 
10333
  ERROR_CLUSCFG_ALREADY_COMMITTED = DWORD(5901);
 
10334
  {$EXTERNALSYM ERROR_CLUSCFG_ALREADY_COMMITTED}
 
10335
 
 
10336
//
 
10337
// MessageId: ERROR_CLUSCFG_ROLLBACK_FAILED
 
10338
//
 
10339
// MessageText:
 
10340
//
 
10341
//  The cluster configuration action could not be rolled back.
 
10342
//
 
10343
  ERROR_CLUSCFG_ROLLBACK_FAILED = DWORD(5902);
 
10344
  {$EXTERNALSYM ERROR_CLUSCFG_ROLLBACK_FAILED}
 
10345
 
 
10346
//
 
10347
// MessageId: ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT
 
10348
//
 
10349
// MessageText:
 
10350
//
 
10351
//  The drive letter assigned to a system disk on one node conflicted with the drive letter assigned to a disk on another node.
 
10352
//
 
10353
  ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT = DWORD(5903);
 
10354
  {$EXTERNALSYM ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT}
 
10355
 
 
10356
//
 
10357
// MessageId: ERROR_CLUSTER_OLD_VERSION
 
10358
//
 
10359
// MessageText:
 
10360
//
 
10361
//  One or more nodes in the cluster are running a version of Windows that does not support this operation.
 
10362
//
 
10363
  ERROR_CLUSTER_OLD_VERSION = DWORD(5904);
 
10364
  {$EXTERNALSYM ERROR_CLUSTER_OLD_VERSION}
 
10365
 
 
10366
//
 
10367
// MessageId: ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME
 
10368
//
 
10369
// MessageText:
 
10370
//
 
10371
//  The name of the corresponding computer account doesn't match the Network Name for this resource.
 
10372
//
 
10373
  ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME = DWORD(5905);
 
10374
  {$EXTERNALSYM ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME}
 
10375
 
 
10376
////////////////////////////////////
 
10377
//                                //
 
10378
//     EFS Error Codes            //
 
10379
//                                //
 
10380
////////////////////////////////////
 
10381
//
 
10382
// MessageId: ERROR_ENCRYPTION_FAILED
 
10383
//
 
10384
// MessageText:
 
10385
//
 
10386
//  The specified file could not be encrypted.
 
10387
//
 
10388
  ERROR_ENCRYPTION_FAILED = DWORD(6000);
 
10389
  {$EXTERNALSYM ERROR_ENCRYPTION_FAILED}
 
10390
 
 
10391
//
 
10392
// MessageId: ERROR_DECRYPTION_FAILED
 
10393
//
 
10394
// MessageText:
 
10395
//
 
10396
//  The specified file could not be decrypted.
 
10397
//
 
10398
  ERROR_DECRYPTION_FAILED = DWORD(6001);
 
10399
  {$EXTERNALSYM ERROR_DECRYPTION_FAILED}
 
10400
 
 
10401
//
 
10402
// MessageId: ERROR_FILE_ENCRYPTED
 
10403
//
 
10404
// MessageText:
 
10405
//
 
10406
//  The specified file is encrypted and the user does not have the ability to decrypt it.
 
10407
//
 
10408
  ERROR_FILE_ENCRYPTED = DWORD(6002);
 
10409
  {$EXTERNALSYM ERROR_FILE_ENCRYPTED}
 
10410
 
 
10411
//
 
10412
// MessageId: ERROR_NO_RECOVERY_POLICY
 
10413
//
 
10414
// MessageText:
 
10415
//
 
10416
//  There is no valid encryption recovery policy configured for this system.
 
10417
//
 
10418
  ERROR_NO_RECOVERY_POLICY = DWORD(6003);
 
10419
  {$EXTERNALSYM ERROR_NO_RECOVERY_POLICY}
 
10420
 
 
10421
//
 
10422
// MessageId: ERROR_NO_EFS
 
10423
//
 
10424
// MessageText:
 
10425
//
 
10426
//  The required encryption driver is not loaded for this system.
 
10427
//
 
10428
  ERROR_NO_EFS = DWORD(6004);
 
10429
  {$EXTERNALSYM ERROR_NO_EFS}
 
10430
 
 
10431
//
 
10432
// MessageId: ERROR_WRONG_EFS
 
10433
//
 
10434
// MessageText:
 
10435
//
 
10436
//  The file was encrypted with a different encryption driver than is currently loaded.
 
10437
//
 
10438
  ERROR_WRONG_EFS = DWORD(6005);
 
10439
  {$EXTERNALSYM ERROR_WRONG_EFS}
 
10440
 
 
10441
//
 
10442
// MessageId: ERROR_NO_USER_KEYS
 
10443
//
 
10444
// MessageText:
 
10445
//
 
10446
//  There are no EFS keys defined for the user.
 
10447
//
 
10448
  ERROR_NO_USER_KEYS = DWORD(6006);
 
10449
  {$EXTERNALSYM ERROR_NO_USER_KEYS}
 
10450
 
 
10451
//
 
10452
// MessageId: ERROR_FILE_NOT_ENCRYPTED
 
10453
//
 
10454
// MessageText:
 
10455
//
 
10456
//  The specified file is not encrypted.
 
10457
//
 
10458
  ERROR_FILE_NOT_ENCRYPTED = DWORD(6007);
 
10459
  {$EXTERNALSYM ERROR_FILE_NOT_ENCRYPTED}
 
10460
 
 
10461
//
 
10462
// MessageId: ERROR_NOT_EXPORT_FORMAT
 
10463
//
 
10464
// MessageText:
 
10465
//
 
10466
//  The specified file is not in the defined EFS export format.
 
10467
//
 
10468
  ERROR_NOT_EXPORT_FORMAT = DWORD(6008);
 
10469
  {$EXTERNALSYM ERROR_NOT_EXPORT_FORMAT}
 
10470
 
 
10471
//
 
10472
// MessageId: ERROR_FILE_READ_ONLY
 
10473
//
 
10474
// MessageText:
 
10475
//
 
10476
//  The specified file is read only.
 
10477
//
 
10478
  ERROR_FILE_READ_ONLY = DWORD(6009);
 
10479
  {$EXTERNALSYM ERROR_FILE_READ_ONLY}
 
10480
 
 
10481
//
 
10482
// MessageId: ERROR_DIR_EFS_DISALLOWED
 
10483
//
 
10484
// MessageText:
 
10485
//
 
10486
//  The directory has been disabled for encryption.
 
10487
//
 
10488
  ERROR_DIR_EFS_DISALLOWED = DWORD(6010);
 
10489
  {$EXTERNALSYM ERROR_DIR_EFS_DISALLOWED}
 
10490
 
 
10491
//
 
10492
// MessageId: ERROR_EFS_SERVER_NOT_TRUSTED
 
10493
//
 
10494
// MessageText:
 
10495
//
 
10496
//  The server is not trusted for remote encryption operation.
 
10497
//
 
10498
  ERROR_EFS_SERVER_NOT_TRUSTED = DWORD(6011);
 
10499
  {$EXTERNALSYM ERROR_EFS_SERVER_NOT_TRUSTED}
 
10500
 
 
10501
//
 
10502
// MessageId: ERROR_BAD_RECOVERY_POLICY
 
10503
//
 
10504
// MessageText:
 
10505
//
 
10506
//  Recovery policy configured for this system contains invalid recovery certificate.
 
10507
//
 
10508
  ERROR_BAD_RECOVERY_POLICY = DWORD(6012);
 
10509
  {$EXTERNALSYM ERROR_BAD_RECOVERY_POLICY}
 
10510
 
 
10511
//
 
10512
// MessageId: ERROR_EFS_ALG_BLOB_TOO_BIG
 
10513
//
 
10514
// MessageText:
 
10515
//
 
10516
//  The encryption algorithm used on the source file needs a bigger key buffer than the one on the destination file.
 
10517
//
 
10518
  ERROR_EFS_ALG_BLOB_TOO_BIG = DWORD(6013);
 
10519
  {$EXTERNALSYM ERROR_EFS_ALG_BLOB_TOO_BIG}
 
10520
 
 
10521
//
 
10522
// MessageId: ERROR_VOLUME_NOT_SUPPORT_EFS
 
10523
//
 
10524
// MessageText:
 
10525
//
 
10526
//  The disk partition does not support file encryption.
 
10527
//
 
10528
  ERROR_VOLUME_NOT_SUPPORT_EFS = DWORD(6014);
 
10529
  {$EXTERNALSYM ERROR_VOLUME_NOT_SUPPORT_EFS}
 
10530
 
 
10531
//
 
10532
// MessageId: ERROR_EFS_DISABLED
 
10533
//
 
10534
// MessageText:
 
10535
//
 
10536
//  This machine is disabled for file encryption.
 
10537
//
 
10538
  ERROR_EFS_DISABLED = DWORD(6015);
 
10539
  {$EXTERNALSYM ERROR_EFS_DISABLED}
 
10540
 
 
10541
//
 
10542
// MessageId: ERROR_EFS_VERSION_NOT_SUPPORT
 
10543
//
 
10544
// MessageText:
 
10545
//
 
10546
//  A newer system is required to decrypt this encrypted file.
 
10547
//
 
10548
  ERROR_EFS_VERSION_NOT_SUPPORT = DWORD(6016);
 
10549
  {$EXTERNALSYM ERROR_EFS_VERSION_NOT_SUPPORT}
 
10550
 
 
10551
// This message number is for historical purposes and cannot be changed or re-used.
 
10552
//
 
10553
// MessageId: ERROR_NO_BROWSER_SERVERS_FOUND
 
10554
//
 
10555
// MessageText:
 
10556
//
 
10557
//  The list of servers for this workgroup is not currently available
 
10558
//
 
10559
  ERROR_NO_BROWSER_SERVERS_FOUND = DWORD(6118);
 
10560
  {$EXTERNALSYM ERROR_NO_BROWSER_SERVERS_FOUND}
 
10561
 
 
10562
//////////////////////////////////////////////////////////////////
 
10563
//                                                              //
 
10564
// Task Scheduler Error Codes that NET START must understand    //
 
10565
//                                                              //
 
10566
//////////////////////////////////////////////////////////////////
 
10567
//
 
10568
// MessageId: SCHED_E_SERVICE_NOT_LOCALSYSTEM
 
10569
//
 
10570
// MessageText:
 
10571
//
 
10572
//  The Task Scheduler service must be configured to run in the System account to function properly.  Individual tasks may be configured to run in other accounts.
 
10573
//
 
10574
  SCHED_E_SERVICE_NOT_LOCALSYSTEM = DWORD(6200);
 
10575
  {$EXTERNALSYM SCHED_E_SERVICE_NOT_LOCALSYSTEM}
 
10576
 
 
10577
////////////////////////////////////
 
10578
//                                //
 
10579
// Terminal Server Error Codes    //
 
10580
//                                //
 
10581
////////////////////////////////////
 
10582
//
 
10583
// MessageId: ERROR_CTX_WINSTATION_NAME_INVALID
 
10584
//
 
10585
// MessageText:
 
10586
//
 
10587
//  The specified session name is invalid.
 
10588
//
 
10589
  ERROR_CTX_WINSTATION_NAME_INVALID = DWORD(7001);
 
10590
  {$EXTERNALSYM ERROR_CTX_WINSTATION_NAME_INVALID}
 
10591
 
 
10592
//
 
10593
// MessageId: ERROR_CTX_INVALID_PD
 
10594
//
 
10595
// MessageText:
 
10596
//
 
10597
//  The specified protocol driver is invalid.
 
10598
//
 
10599
  ERROR_CTX_INVALID_PD = DWORD(7002);
 
10600
  {$EXTERNALSYM ERROR_CTX_INVALID_PD}
 
10601
 
 
10602
//
 
10603
// MessageId: ERROR_CTX_PD_NOT_FOUND
 
10604
//
 
10605
// MessageText:
 
10606
//
 
10607
//  The specified protocol driver was not found in the system path.
 
10608
//
 
10609
  ERROR_CTX_PD_NOT_FOUND = DWORD(7003);
 
10610
  {$EXTERNALSYM ERROR_CTX_PD_NOT_FOUND}
 
10611
 
 
10612
//
 
10613
// MessageId: ERROR_CTX_WD_NOT_FOUND
 
10614
//
 
10615
// MessageText:
 
10616
//
 
10617
//  The specified terminal connection driver was not found in the system path.
 
10618
//
 
10619
  ERROR_CTX_WD_NOT_FOUND = DWORD(7004);
 
10620
  {$EXTERNALSYM ERROR_CTX_WD_NOT_FOUND}
 
10621
 
 
10622
//
 
10623
// MessageId: ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY
 
10624
//
 
10625
// MessageText:
 
10626
//
 
10627
//  A registry key for event logging could not be created for this session.
 
10628
//
 
10629
  ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY = DWORD(7005);
 
10630
  {$EXTERNALSYM ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY}
 
10631
 
 
10632
//
 
10633
// MessageId: ERROR_CTX_SERVICE_NAME_COLLISION
 
10634
//
 
10635
// MessageText:
 
10636
//
 
10637
//  A service with the same name already exists on the system.
 
10638
//
 
10639
  ERROR_CTX_SERVICE_NAME_COLLISION = DWORD(7006);
 
10640
  {$EXTERNALSYM ERROR_CTX_SERVICE_NAME_COLLISION}
 
10641
 
 
10642
//
 
10643
// MessageId: ERROR_CTX_CLOSE_PENDING
 
10644
//
 
10645
// MessageText:
 
10646
//
 
10647
//  A close operation is pending on the session.
 
10648
//
 
10649
  ERROR_CTX_CLOSE_PENDING = DWORD(7007);
 
10650
  {$EXTERNALSYM ERROR_CTX_CLOSE_PENDING}
 
10651
 
 
10652
//
 
10653
// MessageId: ERROR_CTX_NO_OUTBUF
 
10654
//
 
10655
// MessageText:
 
10656
//
 
10657
//  There are no free output buffers available.
 
10658
//
 
10659
  ERROR_CTX_NO_OUTBUF = DWORD(7008);
 
10660
  {$EXTERNALSYM ERROR_CTX_NO_OUTBUF}
 
10661
 
 
10662
//
 
10663
// MessageId: ERROR_CTX_MODEM_INF_NOT_FOUND
 
10664
//
 
10665
// MessageText:
 
10666
//
 
10667
//  The MODEM.INF file was not found.
 
10668
//
 
10669
  ERROR_CTX_MODEM_INF_NOT_FOUND = DWORD(7009);
 
10670
  {$EXTERNALSYM ERROR_CTX_MODEM_INF_NOT_FOUND}
 
10671
 
 
10672
//
 
10673
// MessageId: ERROR_CTX_INVALID_MODEMNAME
 
10674
//
 
10675
// MessageText:
 
10676
//
 
10677
//  The modem name was not found in MODEM.INF.
 
10678
//
 
10679
  ERROR_CTX_INVALID_MODEMNAME = DWORD(7010);
 
10680
  {$EXTERNALSYM ERROR_CTX_INVALID_MODEMNAME}
 
10681
 
 
10682
//
 
10683
// MessageId: ERROR_CTX_MODEM_RESPONSE_ERROR
 
10684
//
 
10685
// MessageText:
 
10686
//
 
10687
//  The modem did not accept the command sent to it. Verify that the configured modem name matches the attached modem.
 
10688
//
 
10689
  ERROR_CTX_MODEM_RESPONSE_ERROR = DWORD(7011);
 
10690
  {$EXTERNALSYM ERROR_CTX_MODEM_RESPONSE_ERROR}
 
10691
 
 
10692
//
 
10693
// MessageId: ERROR_CTX_MODEM_RESPONSE_TIMEOUT
 
10694
//
 
10695
// MessageText:
 
10696
//
 
10697
//  The modem did not respond to the command sent to it. Verify that the modem is properly cabled and powered on.
 
10698
//
 
10699
  ERROR_CTX_MODEM_RESPONSE_TIMEOUT = DWORD(7012);
 
10700
  {$EXTERNALSYM ERROR_CTX_MODEM_RESPONSE_TIMEOUT}
 
10701
 
 
10702
//
 
10703
// MessageId: ERROR_CTX_MODEM_RESPONSE_NO_CARRIER
 
10704
//
 
10705
// MessageText:
 
10706
//
 
10707
//  Carrier detect has failed or carrier has been dropped due to disconnect.
 
10708
//
 
10709
  ERROR_CTX_MODEM_RESPONSE_NO_CARRIER = DWORD(7013);
 
10710
  {$EXTERNALSYM ERROR_CTX_MODEM_RESPONSE_NO_CARRIER}
 
10711
 
 
10712
//
 
10713
// MessageId: ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE
 
10714
//
 
10715
// MessageText:
 
10716
//
 
10717
//  Dial tone not detected within the required time. Verify that the phone cable is properly attached and functional.
 
10718
//
 
10719
  ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE = DWORD(7014);
 
10720
  {$EXTERNALSYM ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE}
 
10721
 
 
10722
//
 
10723
// MessageId: ERROR_CTX_MODEM_RESPONSE_BUSY
 
10724
//
 
10725
// MessageText:
 
10726
//
 
10727
//  Busy signal detected at remote site on callback.
 
10728
//
 
10729
  ERROR_CTX_MODEM_RESPONSE_BUSY = DWORD(7015);
 
10730
  {$EXTERNALSYM ERROR_CTX_MODEM_RESPONSE_BUSY}
 
10731
 
 
10732
//
 
10733
// MessageId: ERROR_CTX_MODEM_RESPONSE_VOICE
 
10734
//
 
10735
// MessageText:
 
10736
//
 
10737
//  Voice detected at remote site on callback.
 
10738
//
 
10739
  ERROR_CTX_MODEM_RESPONSE_VOICE = DWORD(7016);
 
10740
  {$EXTERNALSYM ERROR_CTX_MODEM_RESPONSE_VOICE}
 
10741
 
 
10742
//
 
10743
// MessageId: ERROR_CTX_TD_ERROR
 
10744
//
 
10745
// MessageText:
 
10746
//
 
10747
//  Transport driver error
 
10748
//
 
10749
  ERROR_CTX_TD_ERROR = DWORD(7017);
 
10750
  {$EXTERNALSYM ERROR_CTX_TD_ERROR}
 
10751
 
 
10752
//
 
10753
// MessageId: ERROR_CTX_WINSTATION_NOT_FOUND
 
10754
//
 
10755
// MessageText:
 
10756
//
 
10757
//  The specified session cannot be found.
 
10758
//
 
10759
  ERROR_CTX_WINSTATION_NOT_FOUND = DWORD(7022);
 
10760
  {$EXTERNALSYM ERROR_CTX_WINSTATION_NOT_FOUND}
 
10761
 
 
10762
//
 
10763
// MessageId: ERROR_CTX_WINSTATION_ALREADY_EXISTS
 
10764
//
 
10765
// MessageText:
 
10766
//
 
10767
//  The specified session name is already in use.
 
10768
//
 
10769
  ERROR_CTX_WINSTATION_ALREADY_EXISTS = DWORD(7023);
 
10770
  {$EXTERNALSYM ERROR_CTX_WINSTATION_ALREADY_EXISTS}
 
10771
 
 
10772
//
 
10773
// MessageId: ERROR_CTX_WINSTATION_BUSY
 
10774
//
 
10775
// MessageText:
 
10776
//
 
10777
//  The requested operation cannot be completed because the terminal connection is currently busy processing a connect, disconnect, reset, or delete operation.
 
10778
//
 
10779
  ERROR_CTX_WINSTATION_BUSY = DWORD(7024);
 
10780
  {$EXTERNALSYM ERROR_CTX_WINSTATION_BUSY}
 
10781
 
 
10782
//
 
10783
// MessageId: ERROR_CTX_BAD_VIDEO_MODE
 
10784
//
 
10785
// MessageText:
 
10786
//
 
10787
//  An attempt has been made to connect to a session whose video mode is not supported by the current client.
 
10788
//
 
10789
  ERROR_CTX_BAD_VIDEO_MODE = DWORD(7025);
 
10790
  {$EXTERNALSYM ERROR_CTX_BAD_VIDEO_MODE}
 
10791
 
 
10792
//
 
10793
// MessageId: ERROR_CTX_GRAPHICS_INVALID
 
10794
//
 
10795
// MessageText:
 
10796
//
 
10797
//  The application attempted to enable DOS graphics mode.
 
10798
//  DOS graphics mode is not supported.
 
10799
//
 
10800
  ERROR_CTX_GRAPHICS_INVALID = DWORD(7035);
 
10801
  {$EXTERNALSYM ERROR_CTX_GRAPHICS_INVALID}
 
10802
 
 
10803
//
 
10804
// MessageId: ERROR_CTX_LOGON_DISABLED
 
10805
//
 
10806
// MessageText:
 
10807
//
 
10808
//  Your interactive logon privilege has been disabled.
 
10809
//  Please contact your administrator.
 
10810
//
 
10811
  ERROR_CTX_LOGON_DISABLED = DWORD(7037);
 
10812
  {$EXTERNALSYM ERROR_CTX_LOGON_DISABLED}
 
10813
 
 
10814
//
 
10815
// MessageId: ERROR_CTX_NOT_CONSOLE
 
10816
//
 
10817
// MessageText:
 
10818
//
 
10819
//  The requested operation can be performed only on the system console.
 
10820
//  This is most often the result of a driver or system DLL requiring direct console access.
 
10821
//
 
10822
  ERROR_CTX_NOT_CONSOLE = DWORD(7038);
 
10823
  {$EXTERNALSYM ERROR_CTX_NOT_CONSOLE}
 
10824
 
 
10825
//
 
10826
// MessageId: ERROR_CTX_CLIENT_QUERY_TIMEOUT
 
10827
//
 
10828
// MessageText:
 
10829
//
 
10830
//  The client failed to respond to the server connect message.
 
10831
//
 
10832
  ERROR_CTX_CLIENT_QUERY_TIMEOUT = DWORD(7040);
 
10833
  {$EXTERNALSYM ERROR_CTX_CLIENT_QUERY_TIMEOUT}
 
10834
 
 
10835
//
 
10836
// MessageId: ERROR_CTX_CONSOLE_DISCONNECT
 
10837
//
 
10838
// MessageText:
 
10839
//
 
10840
//  Disconnecting the console session is not supported.
 
10841
//
 
10842
  ERROR_CTX_CONSOLE_DISCONNECT = DWORD(7041);
 
10843
  {$EXTERNALSYM ERROR_CTX_CONSOLE_DISCONNECT}
 
10844
 
 
10845
//
 
10846
// MessageId: ERROR_CTX_CONSOLE_CONNECT
 
10847
//
 
10848
// MessageText:
 
10849
//
 
10850
//  Reconnecting a disconnected session to the console is not supported.
 
10851
//
 
10852
  ERROR_CTX_CONSOLE_CONNECT = DWORD(7042);
 
10853
  {$EXTERNALSYM ERROR_CTX_CONSOLE_CONNECT}
 
10854
 
 
10855
//
 
10856
// MessageId: ERROR_CTX_SHADOW_DENIED
 
10857
//
 
10858
// MessageText:
 
10859
//
 
10860
//  The request to control another session remotely was denied.
 
10861
//
 
10862
  ERROR_CTX_SHADOW_DENIED = DWORD(7044);
 
10863
  {$EXTERNALSYM ERROR_CTX_SHADOW_DENIED}
 
10864
 
 
10865
//
 
10866
// MessageId: ERROR_CTX_WINSTATION_ACCESS_DENIED
 
10867
//
 
10868
// MessageText:
 
10869
//
 
10870
//  The requested session access is denied.
 
10871
//
 
10872
  ERROR_CTX_WINSTATION_ACCESS_DENIED = DWORD(7045);
 
10873
  {$EXTERNALSYM ERROR_CTX_WINSTATION_ACCESS_DENIED}
 
10874
 
 
10875
//
 
10876
// MessageId: ERROR_CTX_INVALID_WD
 
10877
//
 
10878
// MessageText:
 
10879
//
 
10880
//  The specified terminal connection driver is invalid.
 
10881
//
 
10882
  ERROR_CTX_INVALID_WD = DWORD(7049);
 
10883
  {$EXTERNALSYM ERROR_CTX_INVALID_WD}
 
10884
 
 
10885
//
 
10886
// MessageId: ERROR_CTX_SHADOW_INVALID
 
10887
//
 
10888
// MessageText:
 
10889
//
 
10890
//  The requested session cannot be controlled remotely.
 
10891
//  This may be because the session is disconnected or does not currently have a user logged on.
 
10892
//
 
10893
  ERROR_CTX_SHADOW_INVALID = DWORD(7050);
 
10894
  {$EXTERNALSYM ERROR_CTX_SHADOW_INVALID}
 
10895
 
 
10896
//
 
10897
// MessageId: ERROR_CTX_SHADOW_DISABLED
 
10898
//
 
10899
// MessageText:
 
10900
//
 
10901
//  The requested session is not configured to allow remote control.
 
10902
//
 
10903
  ERROR_CTX_SHADOW_DISABLED = DWORD(7051);
 
10904
  {$EXTERNALSYM ERROR_CTX_SHADOW_DISABLED}
 
10905
 
 
10906
//
 
10907
// MessageId: ERROR_CTX_CLIENT_LICENSE_IN_USE
 
10908
//
 
10909
// MessageText:
 
10910
//
 
10911
//  Your request to connect to this Terminal Server has been rejected. Your Terminal Server client license number is currently being used by another user.
 
10912
//  Please call your system administrator to obtain a unique license number.
 
10913
//
 
10914
  ERROR_CTX_CLIENT_LICENSE_IN_USE = DWORD(7052);
 
10915
  {$EXTERNALSYM ERROR_CTX_CLIENT_LICENSE_IN_USE}
 
10916
 
 
10917
//
 
10918
// MessageId: ERROR_CTX_CLIENT_LICENSE_NOT_SET
 
10919
//
 
10920
// MessageText:
 
10921
//
 
10922
//  Your request to connect to this Terminal Server has been rejected. Your Terminal Server client license number has not been entered for this copy of the Terminal Server client.
 
10923
//  Please contact your system administrator.
 
10924
//
 
10925
  ERROR_CTX_CLIENT_LICENSE_NOT_SET = DWORD(7053);
 
10926
  {$EXTERNALSYM ERROR_CTX_CLIENT_LICENSE_NOT_SET}
 
10927
 
 
10928
//
 
10929
// MessageId: ERROR_CTX_LICENSE_NOT_AVAILABLE
 
10930
//
 
10931
// MessageText:
 
10932
//
 
10933
//  The system has reached its licensed logon limit.
 
10934
//  Please try again later.
 
10935
//
 
10936
  ERROR_CTX_LICENSE_NOT_AVAILABLE = DWORD(7054);
 
10937
  {$EXTERNALSYM ERROR_CTX_LICENSE_NOT_AVAILABLE}
 
10938
 
 
10939
//
 
10940
// MessageId: ERROR_CTX_LICENSE_CLIENT_INVALID
 
10941
//
 
10942
// MessageText:
 
10943
//
 
10944
//  The client you are using is not licensed to use this system.  Your logon request is denied.
 
10945
//
 
10946
  ERROR_CTX_LICENSE_CLIENT_INVALID = DWORD(7055);
 
10947
  {$EXTERNALSYM ERROR_CTX_LICENSE_CLIENT_INVALID}
 
10948
 
 
10949
//
 
10950
// MessageId: ERROR_CTX_LICENSE_EXPIRED
 
10951
//
 
10952
// MessageText:
 
10953
//
 
10954
//  The system license has expired.  Your logon request is denied.
 
10955
//
 
10956
  ERROR_CTX_LICENSE_EXPIRED = DWORD(7056);
 
10957
  {$EXTERNALSYM ERROR_CTX_LICENSE_EXPIRED}
 
10958
 
 
10959
//
 
10960
// MessageId: ERROR_CTX_SHADOW_NOT_RUNNING
 
10961
//
 
10962
// MessageText:
 
10963
//
 
10964
//  Remote control could not be terminated because the specified session is not currently being remotely controlled.
 
10965
//
 
10966
  ERROR_CTX_SHADOW_NOT_RUNNING = DWORD(7057);
 
10967
  {$EXTERNALSYM ERROR_CTX_SHADOW_NOT_RUNNING}
 
10968
 
 
10969
//
 
10970
// MessageId: ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE
 
10971
//
 
10972
// MessageText:
 
10973
//
 
10974
//  The remote control of the console was terminated because the display mode was changed. Changing the display mode in a remote control session is not supported.
 
10975
//
 
10976
  ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE = DWORD(7058);
 
10977
  {$EXTERNALSYM ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE}
 
10978
 
 
10979
//
 
10980
// MessageId: ERROR_ACTIVATION_COUNT_EXCEEDED
 
10981
//
 
10982
// MessageText:
 
10983
//
 
10984
//  Activation has already been reset the maximum number of times for this installation. Your activation timer will not be cleared.
 
10985
//
 
10986
  ERROR_ACTIVATION_COUNT_EXCEEDED = DWORD(7059);
 
10987
  {$EXTERNALSYM ERROR_ACTIVATION_COUNT_EXCEEDED}
 
10988
 
 
10989
///////////////////////////////////////////////////
 
10990
//                                                /
 
10991
//             Traffic Control Error Codes        /
 
10992
//                                                /
 
10993
//                  7500 to  7999                 /
 
10994
//                                                /
 
10995
//         defined in: tcerror.h                  /
 
10996
///////////////////////////////////////////////////
 
10997
///////////////////////////////////////////////////
 
10998
//                                                /
 
10999
//             Active Directory Error Codes       /
 
11000
//                                                /
 
11001
//                  8000 to  8999                 /
 
11002
///////////////////////////////////////////////////
 
11003
// *****************
 
11004
// FACILITY_FILE_REPLICATION_SERVICE
 
11005
// *****************
 
11006
//
 
11007
// MessageId: FRS_ERR_INVALID_API_SEQUENCE
 
11008
//
 
11009
// MessageText:
 
11010
//
 
11011
//  The file replication service API was called incorrectly.
 
11012
//
 
11013
  FRS_ERR_INVALID_API_SEQUENCE = DWORD(8001);
 
11014
  {$EXTERNALSYM FRS_ERR_INVALID_API_SEQUENCE}
 
11015
 
 
11016
//
 
11017
// MessageId: FRS_ERR_STARTING_SERVICE
 
11018
//
 
11019
// MessageText:
 
11020
//
 
11021
//  The file replication service cannot be started.
 
11022
//
 
11023
  FRS_ERR_STARTING_SERVICE = DWORD(8002);
 
11024
  {$EXTERNALSYM FRS_ERR_STARTING_SERVICE}
 
11025
 
 
11026
//
 
11027
// MessageId: FRS_ERR_STOPPING_SERVICE
 
11028
//
 
11029
// MessageText:
 
11030
//
 
11031
//  The file replication service cannot be stopped.
 
11032
//
 
11033
  FRS_ERR_STOPPING_SERVICE = DWORD(8003);
 
11034
  {$EXTERNALSYM FRS_ERR_STOPPING_SERVICE}
 
11035
 
 
11036
//
 
11037
// MessageId: FRS_ERR_INTERNAL_API
 
11038
//
 
11039
// MessageText:
 
11040
//
 
11041
//  The file replication service API terminated the request.
 
11042
//  The event log may have more information.
 
11043
//
 
11044
  FRS_ERR_INTERNAL_API = DWORD(8004);
 
11045
  {$EXTERNALSYM FRS_ERR_INTERNAL_API}
 
11046
 
 
11047
//
 
11048
// MessageId: FRS_ERR_INTERNAL
 
11049
//
 
11050
// MessageText:
 
11051
//
 
11052
//  The file replication service terminated the request.
 
11053
//  The event log may have more information.
 
11054
//
 
11055
  FRS_ERR_INTERNAL = DWORD(8005);
 
11056
  {$EXTERNALSYM FRS_ERR_INTERNAL}
 
11057
 
 
11058
//
 
11059
// MessageId: FRS_ERR_SERVICE_COMM
 
11060
//
 
11061
// MessageText:
 
11062
//
 
11063
//  The file replication service cannot be contacted.
 
11064
//  The event log may have more information.
 
11065
//
 
11066
  FRS_ERR_SERVICE_COMM = DWORD(8006);
 
11067
  {$EXTERNALSYM FRS_ERR_SERVICE_COMM}
 
11068
 
 
11069
//
 
11070
// MessageId: FRS_ERR_INSUFFICIENT_PRIV
 
11071
//
 
11072
// MessageText:
 
11073
//
 
11074
//  The file replication service cannot satisfy the request because the user has insufficient privileges.
 
11075
//  The event log may have more information.
 
11076
//
 
11077
  FRS_ERR_INSUFFICIENT_PRIV = DWORD(8007);
 
11078
  {$EXTERNALSYM FRS_ERR_INSUFFICIENT_PRIV}
 
11079
 
 
11080
//
 
11081
// MessageId: FRS_ERR_AUTHENTICATION
 
11082
//
 
11083
// MessageText:
 
11084
//
 
11085
//  The file replication service cannot satisfy the request because authenticated RPC is not available.
 
11086
//  The event log may have more information.
 
11087
//
 
11088
  FRS_ERR_AUTHENTICATION = DWORD(8008);
 
11089
  {$EXTERNALSYM FRS_ERR_AUTHENTICATION}
 
11090
 
 
11091
//
 
11092
// MessageId: FRS_ERR_PARENT_INSUFFICIENT_PRIV
 
11093
//
 
11094
// MessageText:
 
11095
//
 
11096
//  The file replication service cannot satisfy the request because the user has insufficient privileges on the domain controller.
 
11097
//  The event log may have more information.
 
11098
//
 
11099
  FRS_ERR_PARENT_INSUFFICIENT_PRIV = DWORD(8009);
 
11100
  {$EXTERNALSYM FRS_ERR_PARENT_INSUFFICIENT_PRIV}
 
11101
 
 
11102
//
 
11103
// MessageId: FRS_ERR_PARENT_AUTHENTICATION
 
11104
//
 
11105
// MessageText:
 
11106
//
 
11107
//  The file replication service cannot satisfy the request because authenticated RPC is not available on the domain controller.
 
11108
//  The event log may have more information.
 
11109
//
 
11110
  FRS_ERR_PARENT_AUTHENTICATION = DWORD(8010);
 
11111
  {$EXTERNALSYM FRS_ERR_PARENT_AUTHENTICATION}
 
11112
 
 
11113
//
 
11114
// MessageId: FRS_ERR_CHILD_TO_PARENT_COMM
 
11115
//
 
11116
// MessageText:
 
11117
//
 
11118
//  The file replication service cannot communicate with the file replication service on the domain controller.
 
11119
//  The event log may have more information.
 
11120
//
 
11121
  FRS_ERR_CHILD_TO_PARENT_COMM = DWORD(8011);
 
11122
  {$EXTERNALSYM FRS_ERR_CHILD_TO_PARENT_COMM}
 
11123
 
 
11124
//
 
11125
// MessageId: FRS_ERR_PARENT_TO_CHILD_COMM
 
11126
//
 
11127
// MessageText:
 
11128
//
 
11129
//  The file replication service on the domain controller cannot communicate with the file replication service on this computer.
 
11130
//  The event log may have more information.
 
11131
//
 
11132
  FRS_ERR_PARENT_TO_CHILD_COMM = DWORD(8012);
 
11133
  {$EXTERNALSYM FRS_ERR_PARENT_TO_CHILD_COMM}
 
11134
 
 
11135
//
 
11136
// MessageId: FRS_ERR_SYSVOL_POPULATE
 
11137
//
 
11138
// MessageText:
 
11139
//
 
11140
//  The file replication service cannot populate the system volume because of an internal error.
 
11141
//  The event log may have more information.
 
11142
//
 
11143
  FRS_ERR_SYSVOL_POPULATE = DWORD(8013);
 
11144
  {$EXTERNALSYM FRS_ERR_SYSVOL_POPULATE}
 
11145
 
 
11146
//
 
11147
// MessageId: FRS_ERR_SYSVOL_POPULATE_TIMEOUT
 
11148
//
 
11149
// MessageText:
 
11150
//
 
11151
//  The file replication service cannot populate the system volume because of an internal timeout.
 
11152
//  The event log may have more information.
 
11153
//
 
11154
  FRS_ERR_SYSVOL_POPULATE_TIMEOUT = DWORD(8014);
 
11155
  {$EXTERNALSYM FRS_ERR_SYSVOL_POPULATE_TIMEOUT}
 
11156
 
 
11157
//
 
11158
// MessageId: FRS_ERR_SYSVOL_IS_BUSY
 
11159
//
 
11160
// MessageText:
 
11161
//
 
11162
//  The file replication service cannot process the request. The system volume is busy with a previous request.
 
11163
//
 
11164
  FRS_ERR_SYSVOL_IS_BUSY = DWORD(8015);
 
11165
  {$EXTERNALSYM FRS_ERR_SYSVOL_IS_BUSY}
 
11166
 
 
11167
//
 
11168
// MessageId: FRS_ERR_SYSVOL_DEMOTE
 
11169
//
 
11170
// MessageText:
 
11171
//
 
11172
//  The file replication service cannot stop replicating the system volume because of an internal error.
 
11173
//  The event log may have more information.
 
11174
//
 
11175
  FRS_ERR_SYSVOL_DEMOTE = DWORD(8016);
 
11176
  {$EXTERNALSYM FRS_ERR_SYSVOL_DEMOTE}
 
11177
 
 
11178
//
 
11179
// MessageId: FRS_ERR_INVALID_SERVICE_PARAMETER
 
11180
//
 
11181
// MessageText:
 
11182
//
 
11183
//  The file replication service detected an invalid parameter.
 
11184
//
 
11185
  FRS_ERR_INVALID_SERVICE_PARAMETER = DWORD(8017);
 
11186
  {$EXTERNALSYM FRS_ERR_INVALID_SERVICE_PARAMETER}
 
11187
 
 
11188
// *****************
 
11189
// FACILITY DIRECTORY SERVICE
 
11190
// *****************
 
11191
  DS_S_SUCCESS = NO_ERROR;
 
11192
  {$EXTERNALSYM DS_S_SUCCESS}
 
11193
//
 
11194
// MessageId: ERROR_DS_NOT_INSTALLED
 
11195
//
 
11196
// MessageText:
 
11197
//
 
11198
//  An error occurred while installing the directory service. For more information, see the event log.
 
11199
//
 
11200
  ERROR_DS_NOT_INSTALLED = DWORD(8200);
 
11201
  {$EXTERNALSYM ERROR_DS_NOT_INSTALLED}
 
11202
 
 
11203
//
 
11204
// MessageId: ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY
 
11205
//
 
11206
// MessageText:
 
11207
//
 
11208
//  The directory service evaluated group memberships locally.
 
11209
//
 
11210
  ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY = DWORD(8201);
 
11211
  {$EXTERNALSYM ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY}
 
11212
 
 
11213
//
 
11214
// MessageId: ERROR_DS_NO_ATTRIBUTE_OR_VALUE
 
11215
//
 
11216
// MessageText:
 
11217
//
 
11218
//  The specified directory service attribute or value does not exist.
 
11219
//
 
11220
  ERROR_DS_NO_ATTRIBUTE_OR_VALUE = DWORD(8202);
 
11221
  {$EXTERNALSYM ERROR_DS_NO_ATTRIBUTE_OR_VALUE}
 
11222
 
 
11223
//
 
11224
// MessageId: ERROR_DS_INVALID_ATTRIBUTE_SYNTAX
 
11225
//
 
11226
// MessageText:
 
11227
//
 
11228
//  The attribute syntax specified to the directory service is invalid.
 
11229
//
 
11230
  ERROR_DS_INVALID_ATTRIBUTE_SYNTAX = DWORD(8203);
 
11231
  {$EXTERNALSYM ERROR_DS_INVALID_ATTRIBUTE_SYNTAX}
 
11232
 
 
11233
//
 
11234
// MessageId: ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED
 
11235
//
 
11236
// MessageText:
 
11237
//
 
11238
//  The attribute type specified to the directory service is not defined.
 
11239
//
 
11240
  ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED = DWORD(8204);
 
11241
  {$EXTERNALSYM ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED}
 
11242
 
 
11243
//
 
11244
// MessageId: ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS
 
11245
//
 
11246
// MessageText:
 
11247
//
 
11248
//  The specified directory service attribute or value already exists.
 
11249
//
 
11250
  ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS = DWORD(8205);
 
11251
  {$EXTERNALSYM ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS}
 
11252
 
 
11253
//
 
11254
// MessageId: ERROR_DS_BUSY
 
11255
//
 
11256
// MessageText:
 
11257
//
 
11258
//  The directory service is busy.
 
11259
//
 
11260
  ERROR_DS_BUSY = DWORD(8206);
 
11261
  {$EXTERNALSYM ERROR_DS_BUSY}
 
11262
 
 
11263
//
 
11264
// MessageId: ERROR_DS_UNAVAILABLE
 
11265
//
 
11266
// MessageText:
 
11267
//
 
11268
//  The directory service is unavailable.
 
11269
//
 
11270
  ERROR_DS_UNAVAILABLE = DWORD(8207);
 
11271
  {$EXTERNALSYM ERROR_DS_UNAVAILABLE}
 
11272
 
 
11273
//
 
11274
// MessageId: ERROR_DS_NO_RIDS_ALLOCATED
 
11275
//
 
11276
// MessageText:
 
11277
//
 
11278
//  The directory service was unable to allocate a relative identifier.
 
11279
//
 
11280
  ERROR_DS_NO_RIDS_ALLOCATED = DWORD(8208);
 
11281
  {$EXTERNALSYM ERROR_DS_NO_RIDS_ALLOCATED}
 
11282
 
 
11283
//
 
11284
// MessageId: ERROR_DS_NO_MORE_RIDS
 
11285
//
 
11286
// MessageText:
 
11287
//
 
11288
//  The directory service has exhausted the pool of relative identifiers.
 
11289
//
 
11290
  ERROR_DS_NO_MORE_RIDS = DWORD(8209);
 
11291
  {$EXTERNALSYM ERROR_DS_NO_MORE_RIDS}
 
11292
 
 
11293
//
 
11294
// MessageId: ERROR_DS_INCORRECT_ROLE_OWNER
 
11295
//
 
11296
// MessageText:
 
11297
//
 
11298
//  The requested operation could not be performed because the directory service is not the master for that type of operation.
 
11299
//
 
11300
  ERROR_DS_INCORRECT_ROLE_OWNER = DWORD(8210);
 
11301
  {$EXTERNALSYM ERROR_DS_INCORRECT_ROLE_OWNER}
 
11302
 
 
11303
//
 
11304
// MessageId: ERROR_DS_RIDMGR_INIT_ERROR
 
11305
//
 
11306
// MessageText:
 
11307
//
 
11308
//  The directory service was unable to initialize the subsystem that allocates relative identifiers.
 
11309
//
 
11310
  ERROR_DS_RIDMGR_INIT_ERROR = DWORD(8211);
 
11311
  {$EXTERNALSYM ERROR_DS_RIDMGR_INIT_ERROR}
 
11312
 
 
11313
//
 
11314
// MessageId: ERROR_DS_OBJ_CLASS_VIOLATION
 
11315
//
 
11316
// MessageText:
 
11317
//
 
11318
//  The requested operation did not satisfy one or more constraints associated with the class of the object.
 
11319
//
 
11320
  ERROR_DS_OBJ_CLASS_VIOLATION = DWORD(8212);
 
11321
  {$EXTERNALSYM ERROR_DS_OBJ_CLASS_VIOLATION}
 
11322
 
 
11323
//
 
11324
// MessageId: ERROR_DS_CANT_ON_NON_LEAF
 
11325
//
 
11326
// MessageText:
 
11327
//
 
11328
//  The directory service can perform the requested operation only on a leaf object.
 
11329
//
 
11330
  ERROR_DS_CANT_ON_NON_LEAF = DWORD(8213);
 
11331
  {$EXTERNALSYM ERROR_DS_CANT_ON_NON_LEAF}
 
11332
 
 
11333
//
 
11334
// MessageId: ERROR_DS_CANT_ON_RDN
 
11335
//
 
11336
// MessageText:
 
11337
//
 
11338
//  The directory service cannot perform the requested operation on the RDN attribute of an object.
 
11339
//
 
11340
  ERROR_DS_CANT_ON_RDN = DWORD(8214);
 
11341
  {$EXTERNALSYM ERROR_DS_CANT_ON_RDN}
 
11342
 
 
11343
//
 
11344
// MessageId: ERROR_DS_CANT_MOD_OBJ_CLASS
 
11345
//
 
11346
// MessageText:
 
11347
//
 
11348
//  The directory service detected an attempt to modify the object class of an object.
 
11349
//
 
11350
  ERROR_DS_CANT_MOD_OBJ_CLASS = DWORD(8215);
 
11351
  {$EXTERNALSYM ERROR_DS_CANT_MOD_OBJ_CLASS}
 
11352
 
 
11353
//
 
11354
// MessageId: ERROR_DS_CROSS_DOM_MOVE_ERROR
 
11355
//
 
11356
// MessageText:
 
11357
//
 
11358
//  The requested cross-domain move operation could not be performed.
 
11359
//
 
11360
  ERROR_DS_CROSS_DOM_MOVE_ERROR = DWORD(8216);
 
11361
  {$EXTERNALSYM ERROR_DS_CROSS_DOM_MOVE_ERROR}
 
11362
 
 
11363
//
 
11364
// MessageId: ERROR_DS_GC_NOT_AVAILABLE
 
11365
//
 
11366
// MessageText:
 
11367
//
 
11368
//  Unable to contact the global catalog server.
 
11369
//
 
11370
  ERROR_DS_GC_NOT_AVAILABLE = DWORD(8217);
 
11371
  {$EXTERNALSYM ERROR_DS_GC_NOT_AVAILABLE}
 
11372
 
 
11373
//
 
11374
// MessageId: ERROR_SHARED_POLICY
 
11375
//
 
11376
// MessageText:
 
11377
//
 
11378
//  The policy object is shared and can only be modified at the root.
 
11379
//
 
11380
  ERROR_SHARED_POLICY = DWORD(8218);
 
11381
  {$EXTERNALSYM ERROR_SHARED_POLICY}
 
11382
 
 
11383
//
 
11384
// MessageId: ERROR_POLICY_OBJECT_NOT_FOUND
 
11385
//
 
11386
// MessageText:
 
11387
//
 
11388
//  The policy object does not exist.
 
11389
//
 
11390
  ERROR_POLICY_OBJECT_NOT_FOUND = DWORD(8219);
 
11391
  {$EXTERNALSYM ERROR_POLICY_OBJECT_NOT_FOUND}
 
11392
 
 
11393
//
 
11394
// MessageId: ERROR_POLICY_ONLY_IN_DS
 
11395
//
 
11396
// MessageText:
 
11397
//
 
11398
//  The requested policy information is only in the directory service.
 
11399
//
 
11400
  ERROR_POLICY_ONLY_IN_DS = DWORD(8220);
 
11401
  {$EXTERNALSYM ERROR_POLICY_ONLY_IN_DS}
 
11402
 
 
11403
//
 
11404
// MessageId: ERROR_PROMOTION_ACTIVE
 
11405
//
 
11406
// MessageText:
 
11407
//
 
11408
//  A domain controller promotion is currently active.
 
11409
//
 
11410
  ERROR_PROMOTION_ACTIVE = DWORD(8221);
 
11411
  {$EXTERNALSYM ERROR_PROMOTION_ACTIVE}
 
11412
 
 
11413
//
 
11414
// MessageId: ERROR_NO_PROMOTION_ACTIVE
 
11415
//
 
11416
// MessageText:
 
11417
//
 
11418
//  A domain controller promotion is not currently active
 
11419
//
 
11420
  ERROR_NO_PROMOTION_ACTIVE = DWORD(8222);
 
11421
  {$EXTERNALSYM ERROR_NO_PROMOTION_ACTIVE}
 
11422
 
 
11423
// 8223 unused
 
11424
//
 
11425
// MessageId: ERROR_DS_OPERATIONS_ERROR
 
11426
//
 
11427
// MessageText:
 
11428
//
 
11429
//  An operations error occurred.
 
11430
//
 
11431
  ERROR_DS_OPERATIONS_ERROR = DWORD(8224);
 
11432
  {$EXTERNALSYM ERROR_DS_OPERATIONS_ERROR}
 
11433
 
 
11434
//
 
11435
// MessageId: ERROR_DS_PROTOCOL_ERROR
 
11436
//
 
11437
// MessageText:
 
11438
//
 
11439
//  A protocol error occurred.
 
11440
//
 
11441
  ERROR_DS_PROTOCOL_ERROR = DWORD(8225);
 
11442
  {$EXTERNALSYM ERROR_DS_PROTOCOL_ERROR}
 
11443
 
 
11444
//
 
11445
// MessageId: ERROR_DS_TIMELIMIT_EXCEEDED
 
11446
//
 
11447
// MessageText:
 
11448
//
 
11449
//  The time limit for this request was exceeded.
 
11450
//
 
11451
  ERROR_DS_TIMELIMIT_EXCEEDED = DWORD(8226);
 
11452
  {$EXTERNALSYM ERROR_DS_TIMELIMIT_EXCEEDED}
 
11453
 
 
11454
//
 
11455
// MessageId: ERROR_DS_SIZELIMIT_EXCEEDED
 
11456
//
 
11457
// MessageText:
 
11458
//
 
11459
//  The size limit for this request was exceeded.
 
11460
//
 
11461
  ERROR_DS_SIZELIMIT_EXCEEDED = DWORD(8227);
 
11462
  {$EXTERNALSYM ERROR_DS_SIZELIMIT_EXCEEDED}
 
11463
 
 
11464
//
 
11465
// MessageId: ERROR_DS_ADMIN_LIMIT_EXCEEDED
 
11466
//
 
11467
// MessageText:
 
11468
//
 
11469
//  The administrative limit for this request was exceeded.
 
11470
//
 
11471
  ERROR_DS_ADMIN_LIMIT_EXCEEDED = DWORD(8228);
 
11472
  {$EXTERNALSYM ERROR_DS_ADMIN_LIMIT_EXCEEDED}
 
11473
 
 
11474
//
 
11475
// MessageId: ERROR_DS_COMPARE_FALSE
 
11476
//
 
11477
// MessageText:
 
11478
//
 
11479
//  The compare response was false.
 
11480
//
 
11481
  ERROR_DS_COMPARE_FALSE = DWORD(8229);
 
11482
  {$EXTERNALSYM ERROR_DS_COMPARE_FALSE}
 
11483
 
 
11484
//
 
11485
// MessageId: ERROR_DS_COMPARE_TRUE
 
11486
//
 
11487
// MessageText:
 
11488
//
 
11489
//  The compare response was true.
 
11490
//
 
11491
  ERROR_DS_COMPARE_TRUE = DWORD(8230);
 
11492
  {$EXTERNALSYM ERROR_DS_COMPARE_TRUE}
 
11493
 
 
11494
//
 
11495
// MessageId: ERROR_DS_AUTH_METHOD_NOT_SUPPORTED
 
11496
//
 
11497
// MessageText:
 
11498
//
 
11499
//  The requested authentication method is not supported by the server.
 
11500
//
 
11501
  ERROR_DS_AUTH_METHOD_NOT_SUPPORTED = DWORD(8231);
 
11502
  {$EXTERNALSYM ERROR_DS_AUTH_METHOD_NOT_SUPPORTED}
 
11503
 
 
11504
//
 
11505
// MessageId: ERROR_DS_STRONG_AUTH_REQUIRED
 
11506
//
 
11507
// MessageText:
 
11508
//
 
11509
//  A more secure authentication method is required for this server.
 
11510
//
 
11511
  ERROR_DS_STRONG_AUTH_REQUIRED = DWORD(8232);
 
11512
  {$EXTERNALSYM ERROR_DS_STRONG_AUTH_REQUIRED}
 
11513
 
 
11514
//
 
11515
// MessageId: ERROR_DS_INAPPROPRIATE_AUTH
 
11516
//
 
11517
// MessageText:
 
11518
//
 
11519
//  Inappropriate authentication.
 
11520
//
 
11521
  ERROR_DS_INAPPROPRIATE_AUTH = DWORD(8233);
 
11522
  {$EXTERNALSYM ERROR_DS_INAPPROPRIATE_AUTH}
 
11523
 
 
11524
//
 
11525
// MessageId: ERROR_DS_AUTH_UNKNOWN
 
11526
//
 
11527
// MessageText:
 
11528
//
 
11529
//  The authentication mechanism is unknown.
 
11530
//
 
11531
  ERROR_DS_AUTH_UNKNOWN = DWORD(8234);
 
11532
  {$EXTERNALSYM ERROR_DS_AUTH_UNKNOWN}
 
11533
 
 
11534
//
 
11535
// MessageId: ERROR_DS_REFERRAL
 
11536
//
 
11537
// MessageText:
 
11538
//
 
11539
//  A referral was returned from the server.
 
11540
//
 
11541
  ERROR_DS_REFERRAL = DWORD(8235);
 
11542
  {$EXTERNALSYM ERROR_DS_REFERRAL}
 
11543
 
 
11544
//
 
11545
// MessageId: ERROR_DS_UNAVAILABLE_CRIT_EXTENSION
 
11546
//
 
11547
// MessageText:
 
11548
//
 
11549
//  The server does not support the requested critical extension.
 
11550
//
 
11551
  ERROR_DS_UNAVAILABLE_CRIT_EXTENSION = DWORD(8236);
 
11552
  {$EXTERNALSYM ERROR_DS_UNAVAILABLE_CRIT_EXTENSION}
 
11553
 
 
11554
//
 
11555
// MessageId: ERROR_DS_CONFIDENTIALITY_REQUIRED
 
11556
//
 
11557
// MessageText:
 
11558
//
 
11559
//  This request requires a secure connection.
 
11560
//
 
11561
  ERROR_DS_CONFIDENTIALITY_REQUIRED = DWORD(8237);
 
11562
  {$EXTERNALSYM ERROR_DS_CONFIDENTIALITY_REQUIRED}
 
11563
 
 
11564
//
 
11565
// MessageId: ERROR_DS_INAPPROPRIATE_MATCHING
 
11566
//
 
11567
// MessageText:
 
11568
//
 
11569
//  Inappropriate matching.
 
11570
//
 
11571
  ERROR_DS_INAPPROPRIATE_MATCHING = DWORD(8238);
 
11572
  {$EXTERNALSYM ERROR_DS_INAPPROPRIATE_MATCHING}
 
11573
 
 
11574
//
 
11575
// MessageId: ERROR_DS_CONSTRAINT_VIOLATION
 
11576
//
 
11577
// MessageText:
 
11578
//
 
11579
//  A constraint violation occurred.
 
11580
//
 
11581
  ERROR_DS_CONSTRAINT_VIOLATION = DWORD(8239);
 
11582
  {$EXTERNALSYM ERROR_DS_CONSTRAINT_VIOLATION}
 
11583
 
 
11584
//
 
11585
// MessageId: ERROR_DS_NO_SUCH_OBJECT
 
11586
//
 
11587
// MessageText:
 
11588
//
 
11589
//  There is no such object on the server.
 
11590
//
 
11591
  ERROR_DS_NO_SUCH_OBJECT = DWORD(8240);
 
11592
  {$EXTERNALSYM ERROR_DS_NO_SUCH_OBJECT}
 
11593
 
 
11594
//
 
11595
// MessageId: ERROR_DS_ALIAS_PROBLEM
 
11596
//
 
11597
// MessageText:
 
11598
//
 
11599
//  There is an alias problem.
 
11600
//
 
11601
  ERROR_DS_ALIAS_PROBLEM = DWORD(8241);
 
11602
  {$EXTERNALSYM ERROR_DS_ALIAS_PROBLEM}
 
11603
 
 
11604
//
 
11605
// MessageId: ERROR_DS_INVALID_DN_SYNTAX
 
11606
//
 
11607
// MessageText:
 
11608
//
 
11609
//  An invalid dn syntax has been specified.
 
11610
//
 
11611
  ERROR_DS_INVALID_DN_SYNTAX = DWORD(8242);
 
11612
  {$EXTERNALSYM ERROR_DS_INVALID_DN_SYNTAX}
 
11613
 
 
11614
//
 
11615
// MessageId: ERROR_DS_IS_LEAF
 
11616
//
 
11617
// MessageText:
 
11618
//
 
11619
//  The object is a leaf object.
 
11620
//
 
11621
  ERROR_DS_IS_LEAF = DWORD(8243);
 
11622
  {$EXTERNALSYM ERROR_DS_IS_LEAF}
 
11623
 
 
11624
//
 
11625
// MessageId: ERROR_DS_ALIAS_DEREF_PROBLEM
 
11626
//
 
11627
// MessageText:
 
11628
//
 
11629
//  There is an alias dereferencing problem.
 
11630
//
 
11631
  ERROR_DS_ALIAS_DEREF_PROBLEM = DWORD(8244);
 
11632
  {$EXTERNALSYM ERROR_DS_ALIAS_DEREF_PROBLEM}
 
11633
 
 
11634
//
 
11635
// MessageId: ERROR_DS_UNWILLING_TO_PERFORM
 
11636
//
 
11637
// MessageText:
 
11638
//
 
11639
//  The server is unwilling to process the request.
 
11640
//
 
11641
  ERROR_DS_UNWILLING_TO_PERFORM = DWORD(8245);
 
11642
  {$EXTERNALSYM ERROR_DS_UNWILLING_TO_PERFORM}
 
11643
 
 
11644
//
 
11645
// MessageId: ERROR_DS_LOOP_DETECT
 
11646
//
 
11647
// MessageText:
 
11648
//
 
11649
//  A loop has been detected.
 
11650
//
 
11651
  ERROR_DS_LOOP_DETECT = DWORD(8246);
 
11652
  {$EXTERNALSYM ERROR_DS_LOOP_DETECT}
 
11653
 
 
11654
//
 
11655
// MessageId: ERROR_DS_NAMING_VIOLATION
 
11656
//
 
11657
// MessageText:
 
11658
//
 
11659
//  There is a naming violation.
 
11660
//
 
11661
  ERROR_DS_NAMING_VIOLATION = DWORD(8247);
 
11662
  {$EXTERNALSYM ERROR_DS_NAMING_VIOLATION}
 
11663
 
 
11664
//
 
11665
// MessageId: ERROR_DS_OBJECT_RESULTS_TOO_LARGE
 
11666
//
 
11667
// MessageText:
 
11668
//
 
11669
//  The result set is too large.
 
11670
//
 
11671
  ERROR_DS_OBJECT_RESULTS_TOO_LARGE = DWORD(8248);
 
11672
  {$EXTERNALSYM ERROR_DS_OBJECT_RESULTS_TOO_LARGE}
 
11673
 
 
11674
//
 
11675
// MessageId: ERROR_DS_AFFECTS_MULTIPLE_DSAS
 
11676
//
 
11677
// MessageText:
 
11678
//
 
11679
//  The operation affects multiple DSAs
 
11680
//
 
11681
  ERROR_DS_AFFECTS_MULTIPLE_DSAS = DWORD(8249);
 
11682
  {$EXTERNALSYM ERROR_DS_AFFECTS_MULTIPLE_DSAS}
 
11683
 
 
11684
//
 
11685
// MessageId: ERROR_DS_SERVER_DOWN
 
11686
//
 
11687
// MessageText:
 
11688
//
 
11689
//  The server is not operational.
 
11690
//
 
11691
  ERROR_DS_SERVER_DOWN = DWORD(8250);
 
11692
  {$EXTERNALSYM ERROR_DS_SERVER_DOWN}
 
11693
 
 
11694
//
 
11695
// MessageId: ERROR_DS_LOCAL_ERROR
 
11696
//
 
11697
// MessageText:
 
11698
//
 
11699
//  A local error has occurred.
 
11700
//
 
11701
  ERROR_DS_LOCAL_ERROR = DWORD(8251);
 
11702
  {$EXTERNALSYM ERROR_DS_LOCAL_ERROR}
 
11703
 
 
11704
//
 
11705
// MessageId: ERROR_DS_ENCODING_ERROR
 
11706
//
 
11707
// MessageText:
 
11708
//
 
11709
//  An encoding error has occurred.
 
11710
//
 
11711
  ERROR_DS_ENCODING_ERROR = DWORD(8252);
 
11712
  {$EXTERNALSYM ERROR_DS_ENCODING_ERROR}
 
11713
 
 
11714
//
 
11715
// MessageId: ERROR_DS_DECODING_ERROR
 
11716
//
 
11717
// MessageText:
 
11718
//
 
11719
//  A decoding error has occurred.
 
11720
//
 
11721
  ERROR_DS_DECODING_ERROR = DWORD(8253);
 
11722
  {$EXTERNALSYM ERROR_DS_DECODING_ERROR}
 
11723
 
 
11724
//
 
11725
// MessageId: ERROR_DS_FILTER_UNKNOWN
 
11726
//
 
11727
// MessageText:
 
11728
//
 
11729
//  The search filter cannot be recognized.
 
11730
//
 
11731
  ERROR_DS_FILTER_UNKNOWN = DWORD(8254);
 
11732
  {$EXTERNALSYM ERROR_DS_FILTER_UNKNOWN}
 
11733
 
 
11734
//
 
11735
// MessageId: ERROR_DS_PARAM_ERROR
 
11736
//
 
11737
// MessageText:
 
11738
//
 
11739
//  One or more parameters are illegal.
 
11740
//
 
11741
  ERROR_DS_PARAM_ERROR = DWORD(8255);
 
11742
  {$EXTERNALSYM ERROR_DS_PARAM_ERROR}
 
11743
 
 
11744
//
 
11745
// MessageId: ERROR_DS_NOT_SUPPORTED
 
11746
//
 
11747
// MessageText:
 
11748
//
 
11749
//  The specified method is not supported.
 
11750
//
 
11751
  ERROR_DS_NOT_SUPPORTED = DWORD(8256);
 
11752
  {$EXTERNALSYM ERROR_DS_NOT_SUPPORTED}
 
11753
 
 
11754
//
 
11755
// MessageId: ERROR_DS_NO_RESULTS_RETURNED
 
11756
//
 
11757
// MessageText:
 
11758
//
 
11759
//  No results were returned.
 
11760
//
 
11761
  ERROR_DS_NO_RESULTS_RETURNED = DWORD(8257);
 
11762
  {$EXTERNALSYM ERROR_DS_NO_RESULTS_RETURNED}
 
11763
 
 
11764
//
 
11765
// MessageId: ERROR_DS_CONTROL_NOT_FOUND
 
11766
//
 
11767
// MessageText:
 
11768
//
 
11769
//  The specified control is not supported by the server.
 
11770
//
 
11771
  ERROR_DS_CONTROL_NOT_FOUND = DWORD(8258);
 
11772
  {$EXTERNALSYM ERROR_DS_CONTROL_NOT_FOUND}
 
11773
 
 
11774
//
 
11775
// MessageId: ERROR_DS_CLIENT_LOOP
 
11776
//
 
11777
// MessageText:
 
11778
//
 
11779
//  A referral loop was detected by the client.
 
11780
//
 
11781
  ERROR_DS_CLIENT_LOOP = DWORD(8259);
 
11782
  {$EXTERNALSYM ERROR_DS_CLIENT_LOOP}
 
11783
 
 
11784
//
 
11785
// MessageId: ERROR_DS_REFERRAL_LIMIT_EXCEEDED
 
11786
//
 
11787
// MessageText:
 
11788
//
 
11789
//  The preset referral limit was exceeded.
 
11790
//
 
11791
  ERROR_DS_REFERRAL_LIMIT_EXCEEDED = DWORD(8260);
 
11792
  {$EXTERNALSYM ERROR_DS_REFERRAL_LIMIT_EXCEEDED}
 
11793
 
 
11794
//
 
11795
// MessageId: ERROR_DS_SORT_CONTROL_MISSING
 
11796
//
 
11797
// MessageText:
 
11798
//
 
11799
//  The search requires a SORT control.
 
11800
//
 
11801
  ERROR_DS_SORT_CONTROL_MISSING = DWORD(8261);
 
11802
  {$EXTERNALSYM ERROR_DS_SORT_CONTROL_MISSING}
 
11803
 
 
11804
//
 
11805
// MessageId: ERROR_DS_OFFSET_RANGE_ERROR
 
11806
//
 
11807
// MessageText:
 
11808
//
 
11809
//  The search results exceed the offset range specified.
 
11810
//
 
11811
  ERROR_DS_OFFSET_RANGE_ERROR = DWORD(8262);
 
11812
  {$EXTERNALSYM ERROR_DS_OFFSET_RANGE_ERROR}
 
11813
 
 
11814
//
 
11815
// MessageId: ERROR_DS_ROOT_MUST_BE_NC
 
11816
//
 
11817
// MessageText:
 
11818
//
 
11819
//  The root object must be the head of a naming context. The root object cannot have an instantiated parent.
 
11820
//
 
11821
  ERROR_DS_ROOT_MUST_BE_NC = DWORD(8301);
 
11822
  {$EXTERNALSYM ERROR_DS_ROOT_MUST_BE_NC}
 
11823
 
 
11824
//
 
11825
// MessageId: ERROR_DS_ADD_REPLICA_INHIBITED
 
11826
//
 
11827
// MessageText:
 
11828
//
 
11829
//  The add replica operation cannot be performed. The naming context must be writeable in order to create the replica.
 
11830
//
 
11831
  ERROR_DS_ADD_REPLICA_INHIBITED = DWORD(8302);
 
11832
  {$EXTERNALSYM ERROR_DS_ADD_REPLICA_INHIBITED}
 
11833
 
 
11834
//
 
11835
// MessageId: ERROR_DS_ATT_NOT_DEF_IN_SCHEMA
 
11836
//
 
11837
// MessageText:
 
11838
//
 
11839
//  A reference to an attribute that is not defined in the schema occurred.
 
11840
//
 
11841
  ERROR_DS_ATT_NOT_DEF_IN_SCHEMA = DWORD(8303);
 
11842
  {$EXTERNALSYM ERROR_DS_ATT_NOT_DEF_IN_SCHEMA}
 
11843
 
 
11844
//
 
11845
// MessageId: ERROR_DS_MAX_OBJ_SIZE_EXCEEDED
 
11846
//
 
11847
// MessageText:
 
11848
//
 
11849
//  The maximum size of an object has been exceeded.
 
11850
//
 
11851
  ERROR_DS_MAX_OBJ_SIZE_EXCEEDED = DWORD(8304);
 
11852
  {$EXTERNALSYM ERROR_DS_MAX_OBJ_SIZE_EXCEEDED}
 
11853
 
 
11854
//
 
11855
// MessageId: ERROR_DS_OBJ_STRING_NAME_EXISTS
 
11856
//
 
11857
// MessageText:
 
11858
//
 
11859
//  An attempt was made to add an object to the directory with a name that is already in use.
 
11860
//
 
11861
  ERROR_DS_OBJ_STRING_NAME_EXISTS = DWORD(8305);
 
11862
  {$EXTERNALSYM ERROR_DS_OBJ_STRING_NAME_EXISTS}
 
11863
 
 
11864
//
 
11865
// MessageId: ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA
 
11866
//
 
11867
// MessageText:
 
11868
//
 
11869
//  An attempt was made to add an object of a class that does not have an RDN defined in the schema.
 
11870
//
 
11871
  ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA = DWORD(8306);
 
11872
  {$EXTERNALSYM ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA}
 
11873
 
 
11874
//
 
11875
// MessageId: ERROR_DS_RDN_DOESNT_MATCH_SCHEMA
 
11876
//
 
11877
// MessageText:
 
11878
//
 
11879
//  An attempt was made to add an object using an RDN that is not the RDN defined in the schema.
 
11880
//
 
11881
  ERROR_DS_RDN_DOESNT_MATCH_SCHEMA = DWORD(8307);
 
11882
  {$EXTERNALSYM ERROR_DS_RDN_DOESNT_MATCH_SCHEMA}
 
11883
 
 
11884
//
 
11885
// MessageId: ERROR_DS_NO_REQUESTED_ATTS_FOUND
 
11886
//
 
11887
// MessageText:
 
11888
//
 
11889
//  None of the requested attributes were found on the objects.
 
11890
//
 
11891
  ERROR_DS_NO_REQUESTED_ATTS_FOUND = DWORD(8308);
 
11892
  {$EXTERNALSYM ERROR_DS_NO_REQUESTED_ATTS_FOUND}
 
11893
 
 
11894
//
 
11895
// MessageId: ERROR_DS_USER_BUFFER_TO_SMALL
 
11896
//
 
11897
// MessageText:
 
11898
//
 
11899
//  The user buffer is too small.
 
11900
//
 
11901
  ERROR_DS_USER_BUFFER_TO_SMALL = DWORD(8309);
 
11902
  {$EXTERNALSYM ERROR_DS_USER_BUFFER_TO_SMALL}
 
11903
 
 
11904
//
 
11905
// MessageId: ERROR_DS_ATT_IS_NOT_ON_OBJ
 
11906
//
 
11907
// MessageText:
 
11908
//
 
11909
//  The attribute specified in the operation is not present on the object.
 
11910
//
 
11911
  ERROR_DS_ATT_IS_NOT_ON_OBJ = DWORD(8310);
 
11912
  {$EXTERNALSYM ERROR_DS_ATT_IS_NOT_ON_OBJ}
 
11913
 
 
11914
//
 
11915
// MessageId: ERROR_DS_ILLEGAL_MOD_OPERATION
 
11916
//
 
11917
// MessageText:
 
11918
//
 
11919
//  Illegal modify operation. Some aspect of the modification is not permitted.
 
11920
//
 
11921
  ERROR_DS_ILLEGAL_MOD_OPERATION = DWORD(8311);
 
11922
  {$EXTERNALSYM ERROR_DS_ILLEGAL_MOD_OPERATION}
 
11923
 
 
11924
//
 
11925
// MessageId: ERROR_DS_OBJ_TOO_LARGE
 
11926
//
 
11927
// MessageText:
 
11928
//
 
11929
//  The specified object is too large.
 
11930
//
 
11931
  ERROR_DS_OBJ_TOO_LARGE = DWORD(8312);
 
11932
  {$EXTERNALSYM ERROR_DS_OBJ_TOO_LARGE}
 
11933
 
 
11934
//
 
11935
// MessageId: ERROR_DS_BAD_INSTANCE_TYPE
 
11936
//
 
11937
// MessageText:
 
11938
//
 
11939
//  The specified instance type is not valid.
 
11940
//
 
11941
  ERROR_DS_BAD_INSTANCE_TYPE = DWORD(8313);
 
11942
  {$EXTERNALSYM ERROR_DS_BAD_INSTANCE_TYPE}
 
11943
 
 
11944
//
 
11945
// MessageId: ERROR_DS_MASTERDSA_REQUIRED
 
11946
//
 
11947
// MessageText:
 
11948
//
 
11949
//  The operation must be performed at a master DSA.
 
11950
//
 
11951
  ERROR_DS_MASTERDSA_REQUIRED = DWORD(8314);
 
11952
  {$EXTERNALSYM ERROR_DS_MASTERDSA_REQUIRED}
 
11953
 
 
11954
//
 
11955
// MessageId: ERROR_DS_OBJECT_CLASS_REQUIRED
 
11956
//
 
11957
// MessageText:
 
11958
//
 
11959
//  The object class attribute must be specified.
 
11960
//
 
11961
  ERROR_DS_OBJECT_CLASS_REQUIRED = DWORD(8315);
 
11962
  {$EXTERNALSYM ERROR_DS_OBJECT_CLASS_REQUIRED}
 
11963
 
 
11964
//
 
11965
// MessageId: ERROR_DS_MISSING_REQUIRED_ATT
 
11966
//
 
11967
// MessageText:
 
11968
//
 
11969
//  A required attribute is missing.
 
11970
//
 
11971
  ERROR_DS_MISSING_REQUIRED_ATT = DWORD(8316);
 
11972
  {$EXTERNALSYM ERROR_DS_MISSING_REQUIRED_ATT}
 
11973
 
 
11974
//
 
11975
// MessageId: ERROR_DS_ATT_NOT_DEF_FOR_CLASS
 
11976
//
 
11977
// MessageText:
 
11978
//
 
11979
//  An attempt was made to modify an object to include an attribute that is not legal for its class.
 
11980
//
 
11981
  ERROR_DS_ATT_NOT_DEF_FOR_CLASS = DWORD(8317);
 
11982
  {$EXTERNALSYM ERROR_DS_ATT_NOT_DEF_FOR_CLASS}
 
11983
 
 
11984
//
 
11985
// MessageId: ERROR_DS_ATT_ALREADY_EXISTS
 
11986
//
 
11987
// MessageText:
 
11988
//
 
11989
//  The specified attribute is already present on the object.
 
11990
//
 
11991
  ERROR_DS_ATT_ALREADY_EXISTS = DWORD(8318);
 
11992
  {$EXTERNALSYM ERROR_DS_ATT_ALREADY_EXISTS}
 
11993
 
 
11994
// 8319 unused
 
11995
//
 
11996
// MessageId: ERROR_DS_CANT_ADD_ATT_VALUES
 
11997
//
 
11998
// MessageText:
 
11999
//
 
12000
//  The specified attribute is not present, or has no values.
 
12001
//
 
12002
  ERROR_DS_CANT_ADD_ATT_VALUES = DWORD(8320);
 
12003
  {$EXTERNALSYM ERROR_DS_CANT_ADD_ATT_VALUES}
 
12004
 
 
12005
//
 
12006
// MessageId: ERROR_DS_SINGLE_VALUE_CONSTRAINT
 
12007
//
 
12008
// MessageText:
 
12009
//
 
12010
//  Multiple values were specified for an attribute that can have only one value.
 
12011
//
 
12012
  ERROR_DS_SINGLE_VALUE_CONSTRAINT = DWORD(8321);
 
12013
  {$EXTERNALSYM ERROR_DS_SINGLE_VALUE_CONSTRAINT}
 
12014
 
 
12015
//
 
12016
// MessageId: ERROR_DS_RANGE_CONSTRAINT
 
12017
//
 
12018
// MessageText:
 
12019
//
 
12020
//  A value for the attribute was not in the acceptable range of values.
 
12021
//
 
12022
  ERROR_DS_RANGE_CONSTRAINT = DWORD(8322);
 
12023
  {$EXTERNALSYM ERROR_DS_RANGE_CONSTRAINT}
 
12024
 
 
12025
//
 
12026
// MessageId: ERROR_DS_ATT_VAL_ALREADY_EXISTS
 
12027
//
 
12028
// MessageText:
 
12029
//
 
12030
//  The specified value already exists.
 
12031
//
 
12032
  ERROR_DS_ATT_VAL_ALREADY_EXISTS = DWORD(8323);
 
12033
  {$EXTERNALSYM ERROR_DS_ATT_VAL_ALREADY_EXISTS}
 
12034
 
 
12035
//
 
12036
// MessageId: ERROR_DS_CANT_REM_MISSING_ATT
 
12037
//
 
12038
// MessageText:
 
12039
//
 
12040
//  The attribute cannot be removed because it is not present on the object.
 
12041
//
 
12042
  ERROR_DS_CANT_REM_MISSING_ATT = DWORD(8324);
 
12043
  {$EXTERNALSYM ERROR_DS_CANT_REM_MISSING_ATT}
 
12044
 
 
12045
//
 
12046
// MessageId: ERROR_DS_CANT_REM_MISSING_ATT_VAL
 
12047
//
 
12048
// MessageText:
 
12049
//
 
12050
//  The attribute value cannot be removed because it is not present on the object.
 
12051
//
 
12052
  ERROR_DS_CANT_REM_MISSING_ATT_VAL = DWORD(8325);
 
12053
  {$EXTERNALSYM ERROR_DS_CANT_REM_MISSING_ATT_VAL}
 
12054
 
 
12055
//
 
12056
// MessageId: ERROR_DS_ROOT_CANT_BE_SUBREF
 
12057
//
 
12058
// MessageText:
 
12059
//
 
12060
//  The specified root object cannot be a subref.
 
12061
//
 
12062
  ERROR_DS_ROOT_CANT_BE_SUBREF = DWORD(8326);
 
12063
  {$EXTERNALSYM ERROR_DS_ROOT_CANT_BE_SUBREF}
 
12064
 
 
12065
//
 
12066
// MessageId: ERROR_DS_NO_CHAINING
 
12067
//
 
12068
// MessageText:
 
12069
//
 
12070
//  Chaining is not permitted.
 
12071
//
 
12072
  ERROR_DS_NO_CHAINING = DWORD(8327);
 
12073
  {$EXTERNALSYM ERROR_DS_NO_CHAINING}
 
12074
 
 
12075
//
 
12076
// MessageId: ERROR_DS_NO_CHAINED_EVAL
 
12077
//
 
12078
// MessageText:
 
12079
//
 
12080
//  Chained evaluation is not permitted.
 
12081
//
 
12082
  ERROR_DS_NO_CHAINED_EVAL = DWORD(8328);
 
12083
  {$EXTERNALSYM ERROR_DS_NO_CHAINED_EVAL}
 
12084
 
 
12085
//
 
12086
// MessageId: ERROR_DS_NO_PARENT_OBJECT
 
12087
//
 
12088
// MessageText:
 
12089
//
 
12090
//  The operation could not be performed because the object's parent is either uninstantiated or deleted.
 
12091
//
 
12092
  ERROR_DS_NO_PARENT_OBJECT = DWORD(8329);
 
12093
  {$EXTERNALSYM ERROR_DS_NO_PARENT_OBJECT}
 
12094
 
 
12095
//
 
12096
// MessageId: ERROR_DS_PARENT_IS_AN_ALIAS
 
12097
//
 
12098
// MessageText:
 
12099
//
 
12100
//  Having a parent that is an alias is not permitted. Aliases are leaf objects.
 
12101
//
 
12102
  ERROR_DS_PARENT_IS_AN_ALIAS = DWORD(8330);
 
12103
  {$EXTERNALSYM ERROR_DS_PARENT_IS_AN_ALIAS}
 
12104
 
 
12105
//
 
12106
// MessageId: ERROR_DS_CANT_MIX_MASTER_AND_REPS
 
12107
//
 
12108
// MessageText:
 
12109
//
 
12110
//  The object and parent must be of the same type, either both masters or both replicas.
 
12111
//
 
12112
  ERROR_DS_CANT_MIX_MASTER_AND_REPS = DWORD(8331);
 
12113
  {$EXTERNALSYM ERROR_DS_CANT_MIX_MASTER_AND_REPS}
 
12114
 
 
12115
//
 
12116
// MessageId: ERROR_DS_CHILDREN_EXIST
 
12117
//
 
12118
// MessageText:
 
12119
//
 
12120
//  The operation cannot be performed because child objects exist. This operation can only be performed on a leaf object.
 
12121
//
 
12122
  ERROR_DS_CHILDREN_EXIST = DWORD(8332);
 
12123
  {$EXTERNALSYM ERROR_DS_CHILDREN_EXIST}
 
12124
 
 
12125
//
 
12126
// MessageId: ERROR_DS_OBJ_NOT_FOUND
 
12127
//
 
12128
// MessageText:
 
12129
//
 
12130
//  Directory object not found.
 
12131
//
 
12132
  ERROR_DS_OBJ_NOT_FOUND = DWORD(8333);
 
12133
  {$EXTERNALSYM ERROR_DS_OBJ_NOT_FOUND}
 
12134
 
 
12135
//
 
12136
// MessageId: ERROR_DS_ALIASED_OBJ_MISSING
 
12137
//
 
12138
// MessageText:
 
12139
//
 
12140
//  The aliased object is missing.
 
12141
//
 
12142
  ERROR_DS_ALIASED_OBJ_MISSING = DWORD(8334);
 
12143
  {$EXTERNALSYM ERROR_DS_ALIASED_OBJ_MISSING}
 
12144
 
 
12145
//
 
12146
// MessageId: ERROR_DS_BAD_NAME_SYNTAX
 
12147
//
 
12148
// MessageText:
 
12149
//
 
12150
//  The object name has bad syntax.
 
12151
//
 
12152
  ERROR_DS_BAD_NAME_SYNTAX = DWORD(8335);
 
12153
  {$EXTERNALSYM ERROR_DS_BAD_NAME_SYNTAX}
 
12154
 
 
12155
//
 
12156
// MessageId: ERROR_DS_ALIAS_POINTS_TO_ALIAS
 
12157
//
 
12158
// MessageText:
 
12159
//
 
12160
//  It is not permitted for an alias to refer to another alias.
 
12161
//
 
12162
  ERROR_DS_ALIAS_POINTS_TO_ALIAS = DWORD(8336);
 
12163
  {$EXTERNALSYM ERROR_DS_ALIAS_POINTS_TO_ALIAS}
 
12164
 
 
12165
//
 
12166
// MessageId: ERROR_DS_CANT_DEREF_ALIAS
 
12167
//
 
12168
// MessageText:
 
12169
//
 
12170
//  The alias cannot be dereferenced.
 
12171
//
 
12172
  ERROR_DS_CANT_DEREF_ALIAS = DWORD(8337);
 
12173
  {$EXTERNALSYM ERROR_DS_CANT_DEREF_ALIAS}
 
12174
 
 
12175
//
 
12176
// MessageId: ERROR_DS_OUT_OF_SCOPE
 
12177
//
 
12178
// MessageText:
 
12179
//
 
12180
//  The operation is out of scope.
 
12181
//
 
12182
  ERROR_DS_OUT_OF_SCOPE = DWORD(8338);
 
12183
  {$EXTERNALSYM ERROR_DS_OUT_OF_SCOPE}
 
12184
 
 
12185
//
 
12186
// MessageId: ERROR_DS_OBJECT_BEING_REMOVED
 
12187
//
 
12188
// MessageText:
 
12189
//
 
12190
//  The operation cannot continue because the object is in the process of being removed.
 
12191
//
 
12192
  ERROR_DS_OBJECT_BEING_REMOVED = DWORD(8339);
 
12193
  {$EXTERNALSYM ERROR_DS_OBJECT_BEING_REMOVED}
 
12194
 
 
12195
//
 
12196
// MessageId: ERROR_DS_CANT_DELETE_DSA_OBJ
 
12197
//
 
12198
// MessageText:
 
12199
//
 
12200
//  The DSA object cannot be deleted.
 
12201
//
 
12202
  ERROR_DS_CANT_DELETE_DSA_OBJ = DWORD(8340);
 
12203
  {$EXTERNALSYM ERROR_DS_CANT_DELETE_DSA_OBJ}
 
12204
 
 
12205
//
 
12206
// MessageId: ERROR_DS_GENERIC_ERROR
 
12207
//
 
12208
// MessageText:
 
12209
//
 
12210
//  A directory service error has occurred.
 
12211
//
 
12212
  ERROR_DS_GENERIC_ERROR = DWORD(8341);
 
12213
  {$EXTERNALSYM ERROR_DS_GENERIC_ERROR}
 
12214
 
 
12215
//
 
12216
// MessageId: ERROR_DS_DSA_MUST_BE_INT_MASTER
 
12217
//
 
12218
// MessageText:
 
12219
//
 
12220
//  The operation can only be performed on an internal master DSA object.
 
12221
//
 
12222
  ERROR_DS_DSA_MUST_BE_INT_MASTER = DWORD(8342);
 
12223
  {$EXTERNALSYM ERROR_DS_DSA_MUST_BE_INT_MASTER}
 
12224
 
 
12225
//
 
12226
// MessageId: ERROR_DS_CLASS_NOT_DSA
 
12227
//
 
12228
// MessageText:
 
12229
//
 
12230
//  The object must be of class DSA.
 
12231
//
 
12232
  ERROR_DS_CLASS_NOT_DSA = DWORD(8343);
 
12233
  {$EXTERNALSYM ERROR_DS_CLASS_NOT_DSA}
 
12234
 
 
12235
//
 
12236
// MessageId: ERROR_DS_INSUFF_ACCESS_RIGHTS
 
12237
//
 
12238
// MessageText:
 
12239
//
 
12240
//  Insufficient access rights to perform the operation.
 
12241
//
 
12242
  ERROR_DS_INSUFF_ACCESS_RIGHTS = DWORD(8344);
 
12243
  {$EXTERNALSYM ERROR_DS_INSUFF_ACCESS_RIGHTS}
 
12244
 
 
12245
//
 
12246
// MessageId: ERROR_DS_ILLEGAL_SUPERIOR
 
12247
//
 
12248
// MessageText:
 
12249
//
 
12250
//  The object cannot be added because the parent is not on the list of possible superiors.
 
12251
//
 
12252
  ERROR_DS_ILLEGAL_SUPERIOR = DWORD(8345);
 
12253
  {$EXTERNALSYM ERROR_DS_ILLEGAL_SUPERIOR}
 
12254
 
 
12255
//
 
12256
// MessageId: ERROR_DS_ATTRIBUTE_OWNED_BY_SAM
 
12257
//
 
12258
// MessageText:
 
12259
//
 
12260
//  Access to the attribute is not permitted because the attribute is owned by the Security Accounts Manager (SAM).
 
12261
//
 
12262
  ERROR_DS_ATTRIBUTE_OWNED_BY_SAM = DWORD(8346);
 
12263
  {$EXTERNALSYM ERROR_DS_ATTRIBUTE_OWNED_BY_SAM}
 
12264
 
 
12265
//
 
12266
// MessageId: ERROR_DS_NAME_TOO_MANY_PARTS
 
12267
//
 
12268
// MessageText:
 
12269
//
 
12270
//  The name has too many parts.
 
12271
//
 
12272
  ERROR_DS_NAME_TOO_MANY_PARTS = DWORD(8347);
 
12273
  {$EXTERNALSYM ERROR_DS_NAME_TOO_MANY_PARTS}
 
12274
 
 
12275
//
 
12276
// MessageId: ERROR_DS_NAME_TOO_LONG
 
12277
//
 
12278
// MessageText:
 
12279
//
 
12280
//  The name is too long.
 
12281
//
 
12282
  ERROR_DS_NAME_TOO_LONG = DWORD(8348);
 
12283
  {$EXTERNALSYM ERROR_DS_NAME_TOO_LONG}
 
12284
 
 
12285
//
 
12286
// MessageId: ERROR_DS_NAME_VALUE_TOO_LONG
 
12287
//
 
12288
// MessageText:
 
12289
//
 
12290
//  The name value is too long.
 
12291
//
 
12292
  ERROR_DS_NAME_VALUE_TOO_LONG = DWORD(8349);
 
12293
  {$EXTERNALSYM ERROR_DS_NAME_VALUE_TOO_LONG}
 
12294
 
 
12295
//
 
12296
// MessageId: ERROR_DS_NAME_UNPARSEABLE
 
12297
//
 
12298
// MessageText:
 
12299
//
 
12300
//  The directory service encountered an error parsing a name.
 
12301
//
 
12302
  ERROR_DS_NAME_UNPARSEABLE = DWORD(8350);
 
12303
  {$EXTERNALSYM ERROR_DS_NAME_UNPARSEABLE}
 
12304
 
 
12305
//
 
12306
// MessageId: ERROR_DS_NAME_TYPE_UNKNOWN
 
12307
//
 
12308
// MessageText:
 
12309
//
 
12310
//  The directory service cannot get the attribute type for a name.
 
12311
//
 
12312
  ERROR_DS_NAME_TYPE_UNKNOWN = DWORD(8351);
 
12313
  {$EXTERNALSYM ERROR_DS_NAME_TYPE_UNKNOWN}
 
12314
 
 
12315
//
 
12316
// MessageId: ERROR_DS_NOT_AN_OBJECT
 
12317
//
 
12318
// MessageText:
 
12319
//
 
12320
//  The name does not identify an object; the name identifies a phantom.
 
12321
//
 
12322
  ERROR_DS_NOT_AN_OBJECT = DWORD(8352);
 
12323
  {$EXTERNALSYM ERROR_DS_NOT_AN_OBJECT}
 
12324
 
 
12325
//
 
12326
// MessageId: ERROR_DS_SEC_DESC_TOO_SHORT
 
12327
//
 
12328
// MessageText:
 
12329
//
 
12330
//  The security descriptor is too short.
 
12331
//
 
12332
  ERROR_DS_SEC_DESC_TOO_SHORT = DWORD(8353);
 
12333
  {$EXTERNALSYM ERROR_DS_SEC_DESC_TOO_SHORT}
 
12334
 
 
12335
//
 
12336
// MessageId: ERROR_DS_SEC_DESC_INVALID
 
12337
//
 
12338
// MessageText:
 
12339
//
 
12340
//  The security descriptor is invalid.
 
12341
//
 
12342
  ERROR_DS_SEC_DESC_INVALID = DWORD(8354);
 
12343
  {$EXTERNALSYM ERROR_DS_SEC_DESC_INVALID}
 
12344
 
 
12345
//
 
12346
// MessageId: ERROR_DS_NO_DELETED_NAME
 
12347
//
 
12348
// MessageText:
 
12349
//
 
12350
//  Failed to create name for deleted object.
 
12351
//
 
12352
  ERROR_DS_NO_DELETED_NAME = DWORD(8355);
 
12353
  {$EXTERNALSYM ERROR_DS_NO_DELETED_NAME}
 
12354
 
 
12355
//
 
12356
// MessageId: ERROR_DS_SUBREF_MUST_HAVE_PARENT
 
12357
//
 
12358
// MessageText:
 
12359
//
 
12360
//  The parent of a new subref must exist.
 
12361
//
 
12362
  ERROR_DS_SUBREF_MUST_HAVE_PARENT = DWORD(8356);
 
12363
  {$EXTERNALSYM ERROR_DS_SUBREF_MUST_HAVE_PARENT}
 
12364
 
 
12365
//
 
12366
// MessageId: ERROR_DS_NCNAME_MUST_BE_NC
 
12367
//
 
12368
// MessageText:
 
12369
//
 
12370
//  The object must be a naming context.
 
12371
//
 
12372
  ERROR_DS_NCNAME_MUST_BE_NC = DWORD(8357);
 
12373
  {$EXTERNALSYM ERROR_DS_NCNAME_MUST_BE_NC}
 
12374
 
 
12375
//
 
12376
// MessageId: ERROR_DS_CANT_ADD_SYSTEM_ONLY
 
12377
//
 
12378
// MessageText:
 
12379
//
 
12380
//  It is not permitted to add an attribute which is owned by the system.
 
12381
//
 
12382
  ERROR_DS_CANT_ADD_SYSTEM_ONLY = DWORD(8358);
 
12383
  {$EXTERNALSYM ERROR_DS_CANT_ADD_SYSTEM_ONLY}
 
12384
 
 
12385
//
 
12386
// MessageId: ERROR_DS_CLASS_MUST_BE_CONCRETE
 
12387
//
 
12388
// MessageText:
 
12389
//
 
12390
//  The class of the object must be structural; you cannot instantiate an abstract class.
 
12391
//
 
12392
  ERROR_DS_CLASS_MUST_BE_CONCRETE = DWORD(8359);
 
12393
  {$EXTERNALSYM ERROR_DS_CLASS_MUST_BE_CONCRETE}
 
12394
 
 
12395
//
 
12396
// MessageId: ERROR_DS_INVALID_DMD
 
12397
//
 
12398
// MessageText:
 
12399
//
 
12400
//  The schema object could not be found.
 
12401
//
 
12402
  ERROR_DS_INVALID_DMD = DWORD(8360);
 
12403
  {$EXTERNALSYM ERROR_DS_INVALID_DMD}
 
12404
 
 
12405
//
 
12406
// MessageId: ERROR_DS_OBJ_GUID_EXISTS
 
12407
//
 
12408
// MessageText:
 
12409
//
 
12410
//  A local object with this GUID (dead or alive) already exists.
 
12411
//
 
12412
  ERROR_DS_OBJ_GUID_EXISTS = DWORD(8361);
 
12413
  {$EXTERNALSYM ERROR_DS_OBJ_GUID_EXISTS}
 
12414
 
 
12415
//
 
12416
// MessageId: ERROR_DS_NOT_ON_BACKLINK
 
12417
//
 
12418
// MessageText:
 
12419
//
 
12420
//  The operation cannot be performed on a back link.
 
12421
//
 
12422
  ERROR_DS_NOT_ON_BACKLINK = DWORD(8362);
 
12423
  {$EXTERNALSYM ERROR_DS_NOT_ON_BACKLINK}
 
12424
 
 
12425
//
 
12426
// MessageId: ERROR_DS_NO_CROSSREF_FOR_NC
 
12427
//
 
12428
// MessageText:
 
12429
//
 
12430
//  The cross reference for the specified naming context could not be found.
 
12431
//
 
12432
  ERROR_DS_NO_CROSSREF_FOR_NC = DWORD(8363);
 
12433
  {$EXTERNALSYM ERROR_DS_NO_CROSSREF_FOR_NC}
 
12434
 
 
12435
//
 
12436
// MessageId: ERROR_DS_SHUTTING_DOWN
 
12437
//
 
12438
// MessageText:
 
12439
//
 
12440
//  The operation could not be performed because the directory service is shutting down.
 
12441
//
 
12442
  ERROR_DS_SHUTTING_DOWN = DWORD(8364);
 
12443
  {$EXTERNALSYM ERROR_DS_SHUTTING_DOWN}
 
12444
 
 
12445
//
 
12446
// MessageId: ERROR_DS_UNKNOWN_OPERATION
 
12447
//
 
12448
// MessageText:
 
12449
//
 
12450
//  The directory service request is invalid.
 
12451
//
 
12452
  ERROR_DS_UNKNOWN_OPERATION = DWORD(8365);
 
12453
  {$EXTERNALSYM ERROR_DS_UNKNOWN_OPERATION}
 
12454
 
 
12455
//
 
12456
// MessageId: ERROR_DS_INVALID_ROLE_OWNER
 
12457
//
 
12458
// MessageText:
 
12459
//
 
12460
//  The role owner attribute could not be read.
 
12461
//
 
12462
  ERROR_DS_INVALID_ROLE_OWNER = DWORD(8366);
 
12463
  {$EXTERNALSYM ERROR_DS_INVALID_ROLE_OWNER}
 
12464
 
 
12465
//
 
12466
// MessageId: ERROR_DS_COULDNT_CONTACT_FSMO
 
12467
//
 
12468
// MessageText:
 
12469
//
 
12470
//  The requested FSMO operation failed. The current FSMO holder could not be contacted.
 
12471
//
 
12472
  ERROR_DS_COULDNT_CONTACT_FSMO = DWORD(8367);
 
12473
  {$EXTERNALSYM ERROR_DS_COULDNT_CONTACT_FSMO}
 
12474
 
 
12475
//
 
12476
// MessageId: ERROR_DS_CROSS_NC_DN_RENAME
 
12477
//
 
12478
// MessageText:
 
12479
//
 
12480
//  Modification of a DN across a naming context is not permitted.
 
12481
//
 
12482
  ERROR_DS_CROSS_NC_DN_RENAME = DWORD(8368);
 
12483
  {$EXTERNALSYM ERROR_DS_CROSS_NC_DN_RENAME}
 
12484
 
 
12485
//
 
12486
// MessageId: ERROR_DS_CANT_MOD_SYSTEM_ONLY
 
12487
//
 
12488
// MessageText:
 
12489
//
 
12490
//  The attribute cannot be modified because it is owned by the system.
 
12491
//
 
12492
  ERROR_DS_CANT_MOD_SYSTEM_ONLY = DWORD(8369);
 
12493
  {$EXTERNALSYM ERROR_DS_CANT_MOD_SYSTEM_ONLY}
 
12494
 
 
12495
//
 
12496
// MessageId: ERROR_DS_REPLICATOR_ONLY
 
12497
//
 
12498
// MessageText:
 
12499
//
 
12500
//  Only the replicator can perform this function.
 
12501
//
 
12502
  ERROR_DS_REPLICATOR_ONLY = DWORD(8370);
 
12503
  {$EXTERNALSYM ERROR_DS_REPLICATOR_ONLY}
 
12504
 
 
12505
//
 
12506
// MessageId: ERROR_DS_OBJ_CLASS_NOT_DEFINED
 
12507
//
 
12508
// MessageText:
 
12509
//
 
12510
//  The specified class is not defined.
 
12511
//
 
12512
  ERROR_DS_OBJ_CLASS_NOT_DEFINED = DWORD(8371);
 
12513
  {$EXTERNALSYM ERROR_DS_OBJ_CLASS_NOT_DEFINED}
 
12514
 
 
12515
//
 
12516
// MessageId: ERROR_DS_OBJ_CLASS_NOT_SUBCLASS
 
12517
//
 
12518
// MessageText:
 
12519
//
 
12520
//  The specified class is not a subclass.
 
12521
//
 
12522
  ERROR_DS_OBJ_CLASS_NOT_SUBCLASS = DWORD(8372);
 
12523
  {$EXTERNALSYM ERROR_DS_OBJ_CLASS_NOT_SUBCLASS}
 
12524
 
 
12525
//
 
12526
// MessageId: ERROR_DS_NAME_REFERENCE_INVALID
 
12527
//
 
12528
// MessageText:
 
12529
//
 
12530
//  The name reference is invalid.
 
12531
//
 
12532
  ERROR_DS_NAME_REFERENCE_INVALID = DWORD(8373);
 
12533
  {$EXTERNALSYM ERROR_DS_NAME_REFERENCE_INVALID}
 
12534
 
 
12535
//
 
12536
// MessageId: ERROR_DS_CROSS_REF_EXISTS
 
12537
//
 
12538
// MessageText:
 
12539
//
 
12540
//  A cross reference already exists.
 
12541
//
 
12542
  ERROR_DS_CROSS_REF_EXISTS = DWORD(8374);
 
12543
  {$EXTERNALSYM ERROR_DS_CROSS_REF_EXISTS}
 
12544
 
 
12545
//
 
12546
// MessageId: ERROR_DS_CANT_DEL_MASTER_CROSSREF
 
12547
//
 
12548
// MessageText:
 
12549
//
 
12550
//  It is not permitted to delete a master cross reference.
 
12551
//
 
12552
  ERROR_DS_CANT_DEL_MASTER_CROSSREF = DWORD(8375);
 
12553
  {$EXTERNALSYM ERROR_DS_CANT_DEL_MASTER_CROSSREF}
 
12554
 
 
12555
//
 
12556
// MessageId: ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD
 
12557
//
 
12558
// MessageText:
 
12559
//
 
12560
//  Subtree notifications are only supported on NC heads.
 
12561
//
 
12562
  ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD = DWORD(8376);
 
12563
  {$EXTERNALSYM ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD}
 
12564
 
 
12565
//
 
12566
// MessageId: ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX
 
12567
//
 
12568
// MessageText:
 
12569
//
 
12570
//  Notification filter is too complex.
 
12571
//
 
12572
  ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX = DWORD(8377);
 
12573
  {$EXTERNALSYM ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX}
 
12574
 
 
12575
//
 
12576
// MessageId: ERROR_DS_DUP_RDN
 
12577
//
 
12578
// MessageText:
 
12579
//
 
12580
//  Schema update failed: duplicate RDN.
 
12581
//
 
12582
  ERROR_DS_DUP_RDN = DWORD(8378);
 
12583
  {$EXTERNALSYM ERROR_DS_DUP_RDN}
 
12584
 
 
12585
//
 
12586
// MessageId: ERROR_DS_DUP_OID
 
12587
//
 
12588
// MessageText:
 
12589
//
 
12590
//  Schema update failed: duplicate OID.
 
12591
//
 
12592
  ERROR_DS_DUP_OID = DWORD(8379);
 
12593
  {$EXTERNALSYM ERROR_DS_DUP_OID}
 
12594
 
 
12595
//
 
12596
// MessageId: ERROR_DS_DUP_MAPI_ID
 
12597
//
 
12598
// MessageText:
 
12599
//
 
12600
//  Schema update failed: duplicate MAPI identifier.
 
12601
//
 
12602
  ERROR_DS_DUP_MAPI_ID = DWORD(8380);
 
12603
  {$EXTERNALSYM ERROR_DS_DUP_MAPI_ID}
 
12604
 
 
12605
//
 
12606
// MessageId: ERROR_DS_DUP_SCHEMA_ID_GUID
 
12607
//
 
12608
// MessageText:
 
12609
//
 
12610
//  Schema update failed: duplicate schema-id GUID.
 
12611
//
 
12612
  ERROR_DS_DUP_SCHEMA_ID_GUID = DWORD(8381);
 
12613
  {$EXTERNALSYM ERROR_DS_DUP_SCHEMA_ID_GUID}
 
12614
 
 
12615
//
 
12616
// MessageId: ERROR_DS_DUP_LDAP_DISPLAY_NAME
 
12617
//
 
12618
// MessageText:
 
12619
//
 
12620
//  Schema update failed: duplicate LDAP display name.
 
12621
//
 
12622
  ERROR_DS_DUP_LDAP_DISPLAY_NAME = DWORD(8382);
 
12623
  {$EXTERNALSYM ERROR_DS_DUP_LDAP_DISPLAY_NAME}
 
12624
 
 
12625
//
 
12626
// MessageId: ERROR_DS_SEMANTIC_ATT_TEST
 
12627
//
 
12628
// MessageText:
 
12629
//
 
12630
//  Schema update failed: range-lower less than range upper.
 
12631
//
 
12632
  ERROR_DS_SEMANTIC_ATT_TEST = DWORD(8383);
 
12633
  {$EXTERNALSYM ERROR_DS_SEMANTIC_ATT_TEST}
 
12634
 
 
12635
//
 
12636
// MessageId: ERROR_DS_SYNTAX_MISMATCH
 
12637
//
 
12638
// MessageText:
 
12639
//
 
12640
//  Schema update failed: syntax mismatch.
 
12641
//
 
12642
  ERROR_DS_SYNTAX_MISMATCH = DWORD(8384);
 
12643
  {$EXTERNALSYM ERROR_DS_SYNTAX_MISMATCH}
 
12644
 
 
12645
//
 
12646
// MessageId: ERROR_DS_EXISTS_IN_MUST_HAVE
 
12647
//
 
12648
// MessageText:
 
12649
//
 
12650
//  Schema deletion failed: attribute is used in must-contain.
 
12651
//
 
12652
  ERROR_DS_EXISTS_IN_MUST_HAVE = DWORD(8385);
 
12653
  {$EXTERNALSYM ERROR_DS_EXISTS_IN_MUST_HAVE}
 
12654
 
 
12655
//
 
12656
// MessageId: ERROR_DS_EXISTS_IN_MAY_HAVE
 
12657
//
 
12658
// MessageText:
 
12659
//
 
12660
//  Schema deletion failed: attribute is used in may-contain.
 
12661
//
 
12662
  ERROR_DS_EXISTS_IN_MAY_HAVE = DWORD(8386);
 
12663
  {$EXTERNALSYM ERROR_DS_EXISTS_IN_MAY_HAVE}
 
12664
 
 
12665
//
 
12666
// MessageId: ERROR_DS_NONEXISTENT_MAY_HAVE
 
12667
//
 
12668
// MessageText:
 
12669
//
 
12670
//  Schema update failed: attribute in may-contain does not exist.
 
12671
//
 
12672
  ERROR_DS_NONEXISTENT_MAY_HAVE = DWORD(8387);
 
12673
  {$EXTERNALSYM ERROR_DS_NONEXISTENT_MAY_HAVE}
 
12674
 
 
12675
//
 
12676
// MessageId: ERROR_DS_NONEXISTENT_MUST_HAVE
 
12677
//
 
12678
// MessageText:
 
12679
//
 
12680
//  Schema update failed: attribute in must-contain does not exist.
 
12681
//
 
12682
  ERROR_DS_NONEXISTENT_MUST_HAVE = DWORD(8388);
 
12683
  {$EXTERNALSYM ERROR_DS_NONEXISTENT_MUST_HAVE}
 
12684
 
 
12685
//
 
12686
// MessageId: ERROR_DS_AUX_CLS_TEST_FAIL
 
12687
//
 
12688
// MessageText:
 
12689
//
 
12690
//  Schema update failed: class in aux-class list does not exist or is not an auxiliary class.
 
12691
//
 
12692
  ERROR_DS_AUX_CLS_TEST_FAIL = DWORD(8389);
 
12693
  {$EXTERNALSYM ERROR_DS_AUX_CLS_TEST_FAIL}
 
12694
 
 
12695
//
 
12696
// MessageId: ERROR_DS_NONEXISTENT_POSS_SUP
 
12697
//
 
12698
// MessageText:
 
12699
//
 
12700
//  Schema update failed: class in poss-superiors does not exist.
 
12701
//
 
12702
  ERROR_DS_NONEXISTENT_POSS_SUP = DWORD(8390);
 
12703
  {$EXTERNALSYM ERROR_DS_NONEXISTENT_POSS_SUP}
 
12704
 
 
12705
//
 
12706
// MessageId: ERROR_DS_SUB_CLS_TEST_FAIL
 
12707
//
 
12708
// MessageText:
 
12709
//
 
12710
//  Schema update failed: class in subclassof list does not exist or does not satisfy hierarchy rules.
 
12711
//
 
12712
  ERROR_DS_SUB_CLS_TEST_FAIL = DWORD(8391);
 
12713
  {$EXTERNALSYM ERROR_DS_SUB_CLS_TEST_FAIL}
 
12714
 
 
12715
//
 
12716
// MessageId: ERROR_DS_BAD_RDN_ATT_ID_SYNTAX
 
12717
//
 
12718
// MessageText:
 
12719
//
 
12720
//  Schema update failed: Rdn-Att-Id has wrong syntax.
 
12721
//
 
12722
  ERROR_DS_BAD_RDN_ATT_ID_SYNTAX = DWORD(8392);
 
12723
  {$EXTERNALSYM ERROR_DS_BAD_RDN_ATT_ID_SYNTAX}
 
12724
 
 
12725
//
 
12726
// MessageId: ERROR_DS_EXISTS_IN_AUX_CLS
 
12727
//
 
12728
// MessageText:
 
12729
//
 
12730
//  Schema deletion failed: class is used as auxiliary class.
 
12731
//
 
12732
  ERROR_DS_EXISTS_IN_AUX_CLS = DWORD(8393);
 
12733
  {$EXTERNALSYM ERROR_DS_EXISTS_IN_AUX_CLS}
 
12734
 
 
12735
//
 
12736
// MessageId: ERROR_DS_EXISTS_IN_SUB_CLS
 
12737
//
 
12738
// MessageText:
 
12739
//
 
12740
//  Schema deletion failed: class is used as sub class.
 
12741
//
 
12742
  ERROR_DS_EXISTS_IN_SUB_CLS = DWORD(8394);
 
12743
  {$EXTERNALSYM ERROR_DS_EXISTS_IN_SUB_CLS}
 
12744
 
 
12745
//
 
12746
// MessageId: ERROR_DS_EXISTS_IN_POSS_SUP
 
12747
//
 
12748
// MessageText:
 
12749
//
 
12750
//  Schema deletion failed: class is used as poss superior.
 
12751
//
 
12752
  ERROR_DS_EXISTS_IN_POSS_SUP = DWORD(8395);
 
12753
  {$EXTERNALSYM ERROR_DS_EXISTS_IN_POSS_SUP}
 
12754
 
 
12755
//
 
12756
// MessageId: ERROR_DS_RECALCSCHEMA_FAILED
 
12757
//
 
12758
// MessageText:
 
12759
//
 
12760
//  Schema update failed in recalculating validation cache.
 
12761
//
 
12762
  ERROR_DS_RECALCSCHEMA_FAILED = DWORD(8396);
 
12763
  {$EXTERNALSYM ERROR_DS_RECALCSCHEMA_FAILED}
 
12764
 
 
12765
//
 
12766
// MessageId: ERROR_DS_TREE_DELETE_NOT_FINISHED
 
12767
//
 
12768
// MessageText:
 
12769
//
 
12770
//  The tree deletion is not finished.  The request must be made again to continue deleting the tree.
 
12771
//
 
12772
  ERROR_DS_TREE_DELETE_NOT_FINISHED = DWORD(8397);
 
12773
  {$EXTERNALSYM ERROR_DS_TREE_DELETE_NOT_FINISHED}
 
12774
 
 
12775
//
 
12776
// MessageId: ERROR_DS_CANT_DELETE
 
12777
//
 
12778
// MessageText:
 
12779
//
 
12780
//  The requested delete operation could not be performed.
 
12781
//
 
12782
  ERROR_DS_CANT_DELETE = DWORD(8398);
 
12783
  {$EXTERNALSYM ERROR_DS_CANT_DELETE}
 
12784
 
 
12785
//
 
12786
// MessageId: ERROR_DS_ATT_SCHEMA_REQ_ID
 
12787
//
 
12788
// MessageText:
 
12789
//
 
12790
//  Cannot read the governs class identifier for the schema record.
 
12791
//
 
12792
  ERROR_DS_ATT_SCHEMA_REQ_ID = DWORD(8399);
 
12793
  {$EXTERNALSYM ERROR_DS_ATT_SCHEMA_REQ_ID}
 
12794
 
 
12795
//
 
12796
// MessageId: ERROR_DS_BAD_ATT_SCHEMA_SYNTAX
 
12797
//
 
12798
// MessageText:
 
12799
//
 
12800
//  The attribute schema has bad syntax.
 
12801
//
 
12802
  ERROR_DS_BAD_ATT_SCHEMA_SYNTAX = DWORD(8400);
 
12803
  {$EXTERNALSYM ERROR_DS_BAD_ATT_SCHEMA_SYNTAX}
 
12804
 
 
12805
//
 
12806
// MessageId: ERROR_DS_CANT_CACHE_ATT
 
12807
//
 
12808
// MessageText:
 
12809
//
 
12810
//  The attribute could not be cached.
 
12811
//
 
12812
  ERROR_DS_CANT_CACHE_ATT = DWORD(8401);
 
12813
  {$EXTERNALSYM ERROR_DS_CANT_CACHE_ATT}
 
12814
 
 
12815
//
 
12816
// MessageId: ERROR_DS_CANT_CACHE_CLASS
 
12817
//
 
12818
// MessageText:
 
12819
//
 
12820
//  The class could not be cached.
 
12821
//
 
12822
  ERROR_DS_CANT_CACHE_CLASS = DWORD(8402);
 
12823
  {$EXTERNALSYM ERROR_DS_CANT_CACHE_CLASS}
 
12824
 
 
12825
//
 
12826
// MessageId: ERROR_DS_CANT_REMOVE_ATT_CACHE
 
12827
//
 
12828
// MessageText:
 
12829
//
 
12830
//  The attribute could not be removed from the cache.
 
12831
//
 
12832
  ERROR_DS_CANT_REMOVE_ATT_CACHE = DWORD(8403);
 
12833
  {$EXTERNALSYM ERROR_DS_CANT_REMOVE_ATT_CACHE}
 
12834
 
 
12835
//
 
12836
// MessageId: ERROR_DS_CANT_REMOVE_CLASS_CACHE
 
12837
//
 
12838
// MessageText:
 
12839
//
 
12840
//  The class could not be removed from the cache.
 
12841
//
 
12842
  ERROR_DS_CANT_REMOVE_CLASS_CACHE = DWORD(8404);
 
12843
  {$EXTERNALSYM ERROR_DS_CANT_REMOVE_CLASS_CACHE}
 
12844
 
 
12845
//
 
12846
// MessageId: ERROR_DS_CANT_RETRIEVE_DN
 
12847
//
 
12848
// MessageText:
 
12849
//
 
12850
//  The distinguished name attribute could not be read.
 
12851
//
 
12852
  ERROR_DS_CANT_RETRIEVE_DN = DWORD(8405);
 
12853
  {$EXTERNALSYM ERROR_DS_CANT_RETRIEVE_DN}
 
12854
 
 
12855
//
 
12856
// MessageId: ERROR_DS_MISSING_SUPREF
 
12857
//
 
12858
// MessageText:
 
12859
//
 
12860
//  No superior reference has been configured for the directory service. The directory service is therefore unable to issue referrals to objects outside this forest.
 
12861
//
 
12862
  ERROR_DS_MISSING_SUPREF = DWORD(8406);
 
12863
  {$EXTERNALSYM ERROR_DS_MISSING_SUPREF}
 
12864
 
 
12865
//
 
12866
// MessageId: ERROR_DS_CANT_RETRIEVE_INSTANCE
 
12867
//
 
12868
// MessageText:
 
12869
//
 
12870
//  The instance type attribute could not be retrieved.
 
12871
//
 
12872
  ERROR_DS_CANT_RETRIEVE_INSTANCE = DWORD(8407);
 
12873
  {$EXTERNALSYM ERROR_DS_CANT_RETRIEVE_INSTANCE}
 
12874
 
 
12875
//
 
12876
// MessageId: ERROR_DS_CODE_INCONSISTENCY
 
12877
//
 
12878
// MessageText:
 
12879
//
 
12880
//  An internal error has occurred.
 
12881
//
 
12882
  ERROR_DS_CODE_INCONSISTENCY = DWORD(8408);
 
12883
  {$EXTERNALSYM ERROR_DS_CODE_INCONSISTENCY}
 
12884
 
 
12885
//
 
12886
// MessageId: ERROR_DS_DATABASE_ERROR
 
12887
//
 
12888
// MessageText:
 
12889
//
 
12890
//  A database error has occurred.
 
12891
//
 
12892
  ERROR_DS_DATABASE_ERROR = DWORD(8409);
 
12893
  {$EXTERNALSYM ERROR_DS_DATABASE_ERROR}
 
12894
 
 
12895
//
 
12896
// MessageId: ERROR_DS_GOVERNSID_MISSING
 
12897
//
 
12898
// MessageText:
 
12899
//
 
12900
//  The attribute GOVERNSID is missing.
 
12901
//
 
12902
  ERROR_DS_GOVERNSID_MISSING = DWORD(8410);
 
12903
  {$EXTERNALSYM ERROR_DS_GOVERNSID_MISSING}
 
12904
 
 
12905
//
 
12906
// MessageId: ERROR_DS_MISSING_EXPECTED_ATT
 
12907
//
 
12908
// MessageText:
 
12909
//
 
12910
//  An expected attribute is missing.
 
12911
//
 
12912
  ERROR_DS_MISSING_EXPECTED_ATT = DWORD(8411);
 
12913
  {$EXTERNALSYM ERROR_DS_MISSING_EXPECTED_ATT}
 
12914
 
 
12915
//
 
12916
// MessageId: ERROR_DS_NCNAME_MISSING_CR_REF
 
12917
//
 
12918
// MessageText:
 
12919
//
 
12920
//  The specified naming context is missing a cross reference.
 
12921
//
 
12922
  ERROR_DS_NCNAME_MISSING_CR_REF = DWORD(8412);
 
12923
  {$EXTERNALSYM ERROR_DS_NCNAME_MISSING_CR_REF}
 
12924
 
 
12925
//
 
12926
// MessageId: ERROR_DS_SECURITY_CHECKING_ERROR
 
12927
//
 
12928
// MessageText:
 
12929
//
 
12930
//  A security checking error has occurred.
 
12931
//
 
12932
  ERROR_DS_SECURITY_CHECKING_ERROR = DWORD(8413);
 
12933
  {$EXTERNALSYM ERROR_DS_SECURITY_CHECKING_ERROR}
 
12934
 
 
12935
//
 
12936
// MessageId: ERROR_DS_SCHEMA_NOT_LOADED
 
12937
//
 
12938
// MessageText:
 
12939
//
 
12940
//  The schema is not loaded.
 
12941
//
 
12942
  ERROR_DS_SCHEMA_NOT_LOADED = DWORD(8414);
 
12943
  {$EXTERNALSYM ERROR_DS_SCHEMA_NOT_LOADED}
 
12944
 
 
12945
//
 
12946
// MessageId: ERROR_DS_SCHEMA_ALLOC_FAILED
 
12947
//
 
12948
// MessageText:
 
12949
//
 
12950
//  Schema allocation failed. Please check if the machine is running low on memory.
 
12951
//
 
12952
  ERROR_DS_SCHEMA_ALLOC_FAILED = DWORD(8415);
 
12953
  {$EXTERNALSYM ERROR_DS_SCHEMA_ALLOC_FAILED}
 
12954
 
 
12955
//
 
12956
// MessageId: ERROR_DS_ATT_SCHEMA_REQ_SYNTAX
 
12957
//
 
12958
// MessageText:
 
12959
//
 
12960
//  Failed to obtain the required syntax for the attribute schema.
 
12961
//
 
12962
  ERROR_DS_ATT_SCHEMA_REQ_SYNTAX = DWORD(8416);
 
12963
  {$EXTERNALSYM ERROR_DS_ATT_SCHEMA_REQ_SYNTAX}
 
12964
 
 
12965
//
 
12966
// MessageId: ERROR_DS_GCVERIFY_ERROR
 
12967
//
 
12968
// MessageText:
 
12969
//
 
12970
//  The global catalog verification failed. The global catalog is not available or does not support the operation. Some part of the directory is currently not available.
 
12971
//
 
12972
  ERROR_DS_GCVERIFY_ERROR = DWORD(8417);
 
12973
  {$EXTERNALSYM ERROR_DS_GCVERIFY_ERROR}
 
12974
 
 
12975
//
 
12976
// MessageId: ERROR_DS_DRA_SCHEMA_MISMATCH
 
12977
//
 
12978
// MessageText:
 
12979
//
 
12980
//  The replication operation failed because of a schema mismatch between the servers involved.
 
12981
//
 
12982
  ERROR_DS_DRA_SCHEMA_MISMATCH = DWORD(8418);
 
12983
  {$EXTERNALSYM ERROR_DS_DRA_SCHEMA_MISMATCH}
 
12984
 
 
12985
//
 
12986
// MessageId: ERROR_DS_CANT_FIND_DSA_OBJ
 
12987
//
 
12988
// MessageText:
 
12989
//
 
12990
//  The DSA object could not be found.
 
12991
//
 
12992
  ERROR_DS_CANT_FIND_DSA_OBJ = DWORD(8419);
 
12993
  {$EXTERNALSYM ERROR_DS_CANT_FIND_DSA_OBJ}
 
12994
 
 
12995
//
 
12996
// MessageId: ERROR_DS_CANT_FIND_EXPECTED_NC
 
12997
//
 
12998
// MessageText:
 
12999
//
 
13000
//  The naming context could not be found.
 
13001
//
 
13002
  ERROR_DS_CANT_FIND_EXPECTED_NC = DWORD(8420);
 
13003
  {$EXTERNALSYM ERROR_DS_CANT_FIND_EXPECTED_NC}
 
13004
 
 
13005
//
 
13006
// MessageId: ERROR_DS_CANT_FIND_NC_IN_CACHE
 
13007
//
 
13008
// MessageText:
 
13009
//
 
13010
//  The naming context could not be found in the cache.
 
13011
//
 
13012
  ERROR_DS_CANT_FIND_NC_IN_CACHE = DWORD(8421);
 
13013
  {$EXTERNALSYM ERROR_DS_CANT_FIND_NC_IN_CACHE}
 
13014
 
 
13015
//
 
13016
// MessageId: ERROR_DS_CANT_RETRIEVE_CHILD
 
13017
//
 
13018
// MessageText:
 
13019
//
 
13020
//  The child object could not be retrieved.
 
13021
//
 
13022
  ERROR_DS_CANT_RETRIEVE_CHILD = DWORD(8422);
 
13023
  {$EXTERNALSYM ERROR_DS_CANT_RETRIEVE_CHILD}
 
13024
 
 
13025
//
 
13026
// MessageId: ERROR_DS_SECURITY_ILLEGAL_MODIFY
 
13027
//
 
13028
// MessageText:
 
13029
//
 
13030
//  The modification was not permitted for security reasons.
 
13031
//
 
13032
  ERROR_DS_SECURITY_ILLEGAL_MODIFY = DWORD(8423);
 
13033
  {$EXTERNALSYM ERROR_DS_SECURITY_ILLEGAL_MODIFY}
 
13034
 
 
13035
//
 
13036
// MessageId: ERROR_DS_CANT_REPLACE_HIDDEN_REC
 
13037
//
 
13038
// MessageText:
 
13039
//
 
13040
//  The operation cannot replace the hidden record.
 
13041
//
 
13042
  ERROR_DS_CANT_REPLACE_HIDDEN_REC = DWORD(8424);
 
13043
  {$EXTERNALSYM ERROR_DS_CANT_REPLACE_HIDDEN_REC}
 
13044
 
 
13045
//
 
13046
// MessageId: ERROR_DS_BAD_HIERARCHY_FILE
 
13047
//
 
13048
// MessageText:
 
13049
//
 
13050
//  The hierarchy file is invalid.
 
13051
//
 
13052
  ERROR_DS_BAD_HIERARCHY_FILE = DWORD(8425);
 
13053
  {$EXTERNALSYM ERROR_DS_BAD_HIERARCHY_FILE}
 
13054
 
 
13055
//
 
13056
// MessageId: ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED
 
13057
//
 
13058
// MessageText:
 
13059
//
 
13060
//  The attempt to build the hierarchy table failed.
 
13061
//
 
13062
  ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED = DWORD(8426);
 
13063
  {$EXTERNALSYM ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED}
 
13064
 
 
13065
//
 
13066
// MessageId: ERROR_DS_CONFIG_PARAM_MISSING
 
13067
//
 
13068
// MessageText:
 
13069
//
 
13070
//  The directory configuration parameter is missing from the registry.
 
13071
//
 
13072
  ERROR_DS_CONFIG_PARAM_MISSING = DWORD(8427);
 
13073
  {$EXTERNALSYM ERROR_DS_CONFIG_PARAM_MISSING}
 
13074
 
 
13075
//
 
13076
// MessageId: ERROR_DS_COUNTING_AB_INDICES_FAILED
 
13077
//
 
13078
// MessageText:
 
13079
//
 
13080
//  The attempt to count the address book indices failed.
 
13081
//
 
13082
  ERROR_DS_COUNTING_AB_INDICES_FAILED = DWORD(8428);
 
13083
  {$EXTERNALSYM ERROR_DS_COUNTING_AB_INDICES_FAILED}
 
13084
 
 
13085
//
 
13086
// MessageId: ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED
 
13087
//
 
13088
// MessageText:
 
13089
//
 
13090
//  The allocation of the hierarchy table failed.
 
13091
//
 
13092
  ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED = DWORD(8429);
 
13093
  {$EXTERNALSYM ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED}
 
13094
 
 
13095
//
 
13096
// MessageId: ERROR_DS_INTERNAL_FAILURE
 
13097
//
 
13098
// MessageText:
 
13099
//
 
13100
//  The directory service encountered an internal failure.
 
13101
//
 
13102
  ERROR_DS_INTERNAL_FAILURE = DWORD(8430);
 
13103
  {$EXTERNALSYM ERROR_DS_INTERNAL_FAILURE}
 
13104
 
 
13105
//
 
13106
// MessageId: ERROR_DS_UNKNOWN_ERROR
 
13107
//
 
13108
// MessageText:
 
13109
//
 
13110
//  The directory service encountered an unknown failure.
 
13111
//
 
13112
  ERROR_DS_UNKNOWN_ERROR = DWORD(8431);
 
13113
  {$EXTERNALSYM ERROR_DS_UNKNOWN_ERROR}
 
13114
 
 
13115
//
 
13116
// MessageId: ERROR_DS_ROOT_REQUIRES_CLASS_TOP
 
13117
//
 
13118
// MessageText:
 
13119
//
 
13120
//  A root object requires a class of 'top'.
 
13121
//
 
13122
  ERROR_DS_ROOT_REQUIRES_CLASS_TOP = DWORD(8432);
 
13123
  {$EXTERNALSYM ERROR_DS_ROOT_REQUIRES_CLASS_TOP}
 
13124
 
 
13125
//
 
13126
// MessageId: ERROR_DS_REFUSING_FSMO_ROLES
 
13127
//
 
13128
// MessageText:
 
13129
//
 
13130
//  This directory server is shutting down, and cannot take ownership of new floating single-master operation roles.
 
13131
//
 
13132
  ERROR_DS_REFUSING_FSMO_ROLES = DWORD(8433);
 
13133
  {$EXTERNALSYM ERROR_DS_REFUSING_FSMO_ROLES}
 
13134
 
 
13135
//
 
13136
// MessageId: ERROR_DS_MISSING_FSMO_SETTINGS
 
13137
//
 
13138
// MessageText:
 
13139
//
 
13140
//  The directory service is missing mandatory configuration information, and is unable to determine the ownership of floating single-master operation roles.
 
13141
//
 
13142
  ERROR_DS_MISSING_FSMO_SETTINGS = DWORD(8434);
 
13143
  {$EXTERNALSYM ERROR_DS_MISSING_FSMO_SETTINGS}
 
13144
 
 
13145
//
 
13146
// MessageId: ERROR_DS_UNABLE_TO_SURRENDER_ROLES
 
13147
//
 
13148
// MessageText:
 
13149
//
 
13150
//  The directory service was unable to transfer ownership of one or more floating single-master operation roles to other servers.
 
13151
//
 
13152
  ERROR_DS_UNABLE_TO_SURRENDER_ROLES = DWORD(8435);
 
13153
  {$EXTERNALSYM ERROR_DS_UNABLE_TO_SURRENDER_ROLES}
 
13154
 
 
13155
//
 
13156
// MessageId: ERROR_DS_DRA_GENERIC
 
13157
//
 
13158
// MessageText:
 
13159
//
 
13160
//  The replication operation failed.
 
13161
//
 
13162
  ERROR_DS_DRA_GENERIC = DWORD(8436);
 
13163
  {$EXTERNALSYM ERROR_DS_DRA_GENERIC}
 
13164
 
 
13165
//
 
13166
// MessageId: ERROR_DS_DRA_INVALID_PARAMETER
 
13167
//
 
13168
// MessageText:
 
13169
//
 
13170
//  An invalid parameter was specified for this replication operation.
 
13171
//
 
13172
  ERROR_DS_DRA_INVALID_PARAMETER = DWORD(8437);
 
13173
  {$EXTERNALSYM ERROR_DS_DRA_INVALID_PARAMETER}
 
13174
 
 
13175
//
 
13176
// MessageId: ERROR_DS_DRA_BUSY
 
13177
//
 
13178
// MessageText:
 
13179
//
 
13180
//  The directory service is too busy to complete the replication operation at this time.
 
13181
//
 
13182
  ERROR_DS_DRA_BUSY = DWORD(8438);
 
13183
  {$EXTERNALSYM ERROR_DS_DRA_BUSY}
 
13184
 
 
13185
//
 
13186
// MessageId: ERROR_DS_DRA_BAD_DN
 
13187
//
 
13188
// MessageText:
 
13189
//
 
13190
//  The distinguished name specified for this replication operation is invalid.
 
13191
//
 
13192
  ERROR_DS_DRA_BAD_DN = DWORD(8439);
 
13193
  {$EXTERNALSYM ERROR_DS_DRA_BAD_DN}
 
13194
 
 
13195
//
 
13196
// MessageId: ERROR_DS_DRA_BAD_NC
 
13197
//
 
13198
// MessageText:
 
13199
//
 
13200
//  The naming context specified for this replication operation is invalid.
 
13201
//
 
13202
  ERROR_DS_DRA_BAD_NC = DWORD(8440);
 
13203
  {$EXTERNALSYM ERROR_DS_DRA_BAD_NC}
 
13204
 
 
13205
//
 
13206
// MessageId: ERROR_DS_DRA_DN_EXISTS
 
13207
//
 
13208
// MessageText:
 
13209
//
 
13210
//  The distinguished name specified for this replication operation already exists.
 
13211
//
 
13212
  ERROR_DS_DRA_DN_EXISTS = DWORD(8441);
 
13213
  {$EXTERNALSYM ERROR_DS_DRA_DN_EXISTS}
 
13214
 
 
13215
//
 
13216
// MessageId: ERROR_DS_DRA_INTERNAL_ERROR
 
13217
//
 
13218
// MessageText:
 
13219
//
 
13220
//  The replication system encountered an internal error.
 
13221
//
 
13222
  ERROR_DS_DRA_INTERNAL_ERROR = DWORD(8442);
 
13223
  {$EXTERNALSYM ERROR_DS_DRA_INTERNAL_ERROR}
 
13224
 
 
13225
//
 
13226
// MessageId: ERROR_DS_DRA_INCONSISTENT_DIT
 
13227
//
 
13228
// MessageText:
 
13229
//
 
13230
//  The replication operation encountered a database inconsistency.
 
13231
//
 
13232
  ERROR_DS_DRA_INCONSISTENT_DIT = DWORD(8443);
 
13233
  {$EXTERNALSYM ERROR_DS_DRA_INCONSISTENT_DIT}
 
13234
 
 
13235
//
 
13236
// MessageId: ERROR_DS_DRA_CONNECTION_FAILED
 
13237
//
 
13238
// MessageText:
 
13239
//
 
13240
//  The server specified for this replication operation could not be contacted.
 
13241
//
 
13242
  ERROR_DS_DRA_CONNECTION_FAILED = DWORD(8444);
 
13243
  {$EXTERNALSYM ERROR_DS_DRA_CONNECTION_FAILED}
 
13244
 
 
13245
//
 
13246
// MessageId: ERROR_DS_DRA_BAD_INSTANCE_TYPE
 
13247
//
 
13248
// MessageText:
 
13249
//
 
13250
//  The replication operation encountered an object with an invalid instance type.
 
13251
//
 
13252
  ERROR_DS_DRA_BAD_INSTANCE_TYPE = DWORD(8445);
 
13253
  {$EXTERNALSYM ERROR_DS_DRA_BAD_INSTANCE_TYPE}
 
13254
 
 
13255
//
 
13256
// MessageId: ERROR_DS_DRA_OUT_OF_MEM
 
13257
//
 
13258
// MessageText:
 
13259
//
 
13260
//  The replication operation failed to allocate memory.
 
13261
//
 
13262
  ERROR_DS_DRA_OUT_OF_MEM = DWORD(8446);
 
13263
  {$EXTERNALSYM ERROR_DS_DRA_OUT_OF_MEM}
 
13264
 
 
13265
//
 
13266
// MessageId: ERROR_DS_DRA_MAIL_PROBLEM
 
13267
//
 
13268
// MessageText:
 
13269
//
 
13270
//  The replication operation encountered an error with the mail system.
 
13271
//
 
13272
  ERROR_DS_DRA_MAIL_PROBLEM = DWORD(8447);
 
13273
  {$EXTERNALSYM ERROR_DS_DRA_MAIL_PROBLEM}
 
13274
 
 
13275
//
 
13276
// MessageId: ERROR_DS_DRA_REF_ALREADY_EXISTS
 
13277
//
 
13278
// MessageText:
 
13279
//
 
13280
//  The replication reference information for the target server already exists.
 
13281
//
 
13282
  ERROR_DS_DRA_REF_ALREADY_EXISTS = DWORD(8448);
 
13283
  {$EXTERNALSYM ERROR_DS_DRA_REF_ALREADY_EXISTS}
 
13284
 
 
13285
//
 
13286
// MessageId: ERROR_DS_DRA_REF_NOT_FOUND
 
13287
//
 
13288
// MessageText:
 
13289
//
 
13290
//  The replication reference information for the target server does not exist.
 
13291
//
 
13292
  ERROR_DS_DRA_REF_NOT_FOUND = DWORD(8449);
 
13293
  {$EXTERNALSYM ERROR_DS_DRA_REF_NOT_FOUND}
 
13294
 
 
13295
//
 
13296
// MessageId: ERROR_DS_DRA_OBJ_IS_REP_SOURCE
 
13297
//
 
13298
// MessageText:
 
13299
//
 
13300
//  The naming context cannot be removed because it is replicated to another server.
 
13301
//
 
13302
  ERROR_DS_DRA_OBJ_IS_REP_SOURCE = DWORD(8450);
 
13303
  {$EXTERNALSYM ERROR_DS_DRA_OBJ_IS_REP_SOURCE}
 
13304
 
 
13305
//
 
13306
// MessageId: ERROR_DS_DRA_DB_ERROR
 
13307
//
 
13308
// MessageText:
 
13309
//
 
13310
//  The replication operation encountered a database error.
 
13311
//
 
13312
  ERROR_DS_DRA_DB_ERROR = DWORD(8451);
 
13313
  {$EXTERNALSYM ERROR_DS_DRA_DB_ERROR}
 
13314
 
 
13315
//
 
13316
// MessageId: ERROR_DS_DRA_NO_REPLICA
 
13317
//
 
13318
// MessageText:
 
13319
//
 
13320
//  The naming context is in the process of being removed or is not replicated from the specified server.
 
13321
//
 
13322
  ERROR_DS_DRA_NO_REPLICA = DWORD(8452);
 
13323
  {$EXTERNALSYM ERROR_DS_DRA_NO_REPLICA}
 
13324
 
 
13325
//
 
13326
// MessageId: ERROR_DS_DRA_ACCESS_DENIED
 
13327
//
 
13328
// MessageText:
 
13329
//
 
13330
//  Replication access was denied.
 
13331
//
 
13332
  ERROR_DS_DRA_ACCESS_DENIED = DWORD(8453);
 
13333
  {$EXTERNALSYM ERROR_DS_DRA_ACCESS_DENIED}
 
13334
 
 
13335
//
 
13336
// MessageId: ERROR_DS_DRA_NOT_SUPPORTED
 
13337
//
 
13338
// MessageText:
 
13339
//
 
13340
//  The requested operation is not supported by this version of the directory service.
 
13341
//
 
13342
  ERROR_DS_DRA_NOT_SUPPORTED = DWORD(8454);
 
13343
  {$EXTERNALSYM ERROR_DS_DRA_NOT_SUPPORTED}
 
13344
 
 
13345
//
 
13346
// MessageId: ERROR_DS_DRA_RPC_CANCELLED
 
13347
//
 
13348
// MessageText:
 
13349
//
 
13350
//  The replication remote procedure call was cancelled.
 
13351
//
 
13352
  ERROR_DS_DRA_RPC_CANCELLED = DWORD(8455);
 
13353
  {$EXTERNALSYM ERROR_DS_DRA_RPC_CANCELLED}
 
13354
 
 
13355
//
 
13356
// MessageId: ERROR_DS_DRA_SOURCE_DISABLED
 
13357
//
 
13358
// MessageText:
 
13359
//
 
13360
//  The source server is currently rejecting replication requests.
 
13361
//
 
13362
  ERROR_DS_DRA_SOURCE_DISABLED = DWORD(8456);
 
13363
  {$EXTERNALSYM ERROR_DS_DRA_SOURCE_DISABLED}
 
13364
 
 
13365
//
 
13366
// MessageId: ERROR_DS_DRA_SINK_DISABLED
 
13367
//
 
13368
// MessageText:
 
13369
//
 
13370
//  The destination server is currently rejecting replication requests.
 
13371
//
 
13372
  ERROR_DS_DRA_SINK_DISABLED = DWORD(8457);
 
13373
  {$EXTERNALSYM ERROR_DS_DRA_SINK_DISABLED}
 
13374
 
 
13375
//
 
13376
// MessageId: ERROR_DS_DRA_NAME_COLLISION
 
13377
//
 
13378
// MessageText:
 
13379
//
 
13380
//  The replication operation failed due to a collision of object names.
 
13381
//
 
13382
  ERROR_DS_DRA_NAME_COLLISION = DWORD(8458);
 
13383
  {$EXTERNALSYM ERROR_DS_DRA_NAME_COLLISION}
 
13384
 
 
13385
//
 
13386
// MessageId: ERROR_DS_DRA_SOURCE_REINSTALLED
 
13387
//
 
13388
// MessageText:
 
13389
//
 
13390
//  The replication source has been reinstalled.
 
13391
//
 
13392
  ERROR_DS_DRA_SOURCE_REINSTALLED = DWORD(8459);
 
13393
  {$EXTERNALSYM ERROR_DS_DRA_SOURCE_REINSTALLED}
 
13394
 
 
13395
//
 
13396
// MessageId: ERROR_DS_DRA_MISSING_PARENT
 
13397
//
 
13398
// MessageText:
 
13399
//
 
13400
//  The replication operation failed because a required parent object is missing.
 
13401
//
 
13402
  ERROR_DS_DRA_MISSING_PARENT = DWORD(8460);
 
13403
  {$EXTERNALSYM ERROR_DS_DRA_MISSING_PARENT}
 
13404
 
 
13405
//
 
13406
// MessageId: ERROR_DS_DRA_PREEMPTED
 
13407
//
 
13408
// MessageText:
 
13409
//
 
13410
//  The replication operation was preempted.
 
13411
//
 
13412
  ERROR_DS_DRA_PREEMPTED = DWORD(8461);
 
13413
  {$EXTERNALSYM ERROR_DS_DRA_PREEMPTED}
 
13414
 
 
13415
//
 
13416
// MessageId: ERROR_DS_DRA_ABANDON_SYNC
 
13417
//
 
13418
// MessageText:
 
13419
//
 
13420
//  The replication synchronization attempt was abandoned because of a lack of updates.
 
13421
//
 
13422
  ERROR_DS_DRA_ABANDON_SYNC = DWORD(8462);
 
13423
  {$EXTERNALSYM ERROR_DS_DRA_ABANDON_SYNC}
 
13424
 
 
13425
//
 
13426
// MessageId: ERROR_DS_DRA_SHUTDOWN
 
13427
//
 
13428
// MessageText:
 
13429
//
 
13430
//  The replication operation was terminated because the system is shutting down.
 
13431
//
 
13432
  ERROR_DS_DRA_SHUTDOWN = DWORD(8463);
 
13433
  {$EXTERNALSYM ERROR_DS_DRA_SHUTDOWN}
 
13434
 
 
13435
//
 
13436
// MessageId: ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET
 
13437
//
 
13438
// MessageText:
 
13439
//
 
13440
//  Synchronization attempt failed because the destination DC is currently waiting to synchronize new partial attributes from source. This condition is normal if a recent schema change modified the partial attribute set. The destination partial attribute set is not a subset of source partial attribute set.
 
13441
//
 
13442
  ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET = DWORD(8464);
 
13443
  {$EXTERNALSYM ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET}
 
13444
 
 
13445
//
 
13446
// MessageId: ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA
 
13447
//
 
13448
// MessageText:
 
13449
//
 
13450
//  The replication synchronization attempt failed because a master replica attempted to sync from a partial replica.
 
13451
//
 
13452
  ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA = DWORD(8465);
 
13453
  {$EXTERNALSYM ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA}
 
13454
 
 
13455
//
 
13456
// MessageId: ERROR_DS_DRA_EXTN_CONNECTION_FAILED
 
13457
//
 
13458
// MessageText:
 
13459
//
 
13460
//  The server specified for this replication operation was contacted, but that server was unable to contact an additional server needed to complete the operation.
 
13461
//
 
13462
  ERROR_DS_DRA_EXTN_CONNECTION_FAILED = DWORD(8466);
 
13463
  {$EXTERNALSYM ERROR_DS_DRA_EXTN_CONNECTION_FAILED}
 
13464
 
 
13465
//
 
13466
// MessageId: ERROR_DS_INSTALL_SCHEMA_MISMATCH
 
13467
//
 
13468
// MessageText:
 
13469
//
 
13470
//  The version of the Active Directory schema of the source forest is not compatible with the version of Active Directory on this computer.
 
13471
//
 
13472
  ERROR_DS_INSTALL_SCHEMA_MISMATCH = DWORD(8467);
 
13473
  {$EXTERNALSYM ERROR_DS_INSTALL_SCHEMA_MISMATCH}
 
13474
 
 
13475
//
 
13476
// MessageId: ERROR_DS_DUP_LINK_ID
 
13477
//
 
13478
// MessageText:
 
13479
//
 
13480
//  Schema update failed: An attribute with the same link identifier already exists.
 
13481
//
 
13482
  ERROR_DS_DUP_LINK_ID = DWORD(8468);
 
13483
  {$EXTERNALSYM ERROR_DS_DUP_LINK_ID}
 
13484
 
 
13485
//
 
13486
// MessageId: ERROR_DS_NAME_ERROR_RESOLVING
 
13487
//
 
13488
// MessageText:
 
13489
//
 
13490
//  Name translation: Generic processing error.
 
13491
//
 
13492
  ERROR_DS_NAME_ERROR_RESOLVING = DWORD(8469);
 
13493
  {$EXTERNALSYM ERROR_DS_NAME_ERROR_RESOLVING}
 
13494
 
 
13495
//
 
13496
// MessageId: ERROR_DS_NAME_ERROR_NOT_FOUND
 
13497
//
 
13498
// MessageText:
 
13499
//
 
13500
//  Name translation: Could not find the name or insufficient right to see name.
 
13501
//
 
13502
  ERROR_DS_NAME_ERROR_NOT_FOUND = DWORD(8470);
 
13503
  {$EXTERNALSYM ERROR_DS_NAME_ERROR_NOT_FOUND}
 
13504
 
 
13505
//
 
13506
// MessageId: ERROR_DS_NAME_ERROR_NOT_UNIQUE
 
13507
//
 
13508
// MessageText:
 
13509
//
 
13510
//  Name translation: Input name mapped to more than one output name.
 
13511
//
 
13512
  ERROR_DS_NAME_ERROR_NOT_UNIQUE = DWORD(8471);
 
13513
  {$EXTERNALSYM ERROR_DS_NAME_ERROR_NOT_UNIQUE}
 
13514
 
 
13515
//
 
13516
// MessageId: ERROR_DS_NAME_ERROR_NO_MAPPING
 
13517
//
 
13518
// MessageText:
 
13519
//
 
13520
//  Name translation: Input name found, but not the associated output format.
 
13521
//
 
13522
  ERROR_DS_NAME_ERROR_NO_MAPPING = DWORD(8472);
 
13523
  {$EXTERNALSYM ERROR_DS_NAME_ERROR_NO_MAPPING}
 
13524
 
 
13525
//
 
13526
// MessageId: ERROR_DS_NAME_ERROR_DOMAIN_ONLY
 
13527
//
 
13528
// MessageText:
 
13529
//
 
13530
//  Name translation: Unable to resolve completely, only the domain was found.
 
13531
//
 
13532
  ERROR_DS_NAME_ERROR_DOMAIN_ONLY = DWORD(8473);
 
13533
  {$EXTERNALSYM ERROR_DS_NAME_ERROR_DOMAIN_ONLY}
 
13534
 
 
13535
//
 
13536
// MessageId: ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING
 
13537
//
 
13538
// MessageText:
 
13539
//
 
13540
//  Name translation: Unable to perform purely syntactical mapping at the client without going out to the wire.
 
13541
//
 
13542
  ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING = DWORD(8474);
 
13543
  {$EXTERNALSYM ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING}
 
13544
 
 
13545
//
 
13546
// MessageId: ERROR_DS_CONSTRUCTED_ATT_MOD
 
13547
//
 
13548
// MessageText:
 
13549
//
 
13550
//  Modification of a constructed attribute is not allowed.
 
13551
//
 
13552
  ERROR_DS_CONSTRUCTED_ATT_MOD = DWORD(8475);
 
13553
  {$EXTERNALSYM ERROR_DS_CONSTRUCTED_ATT_MOD}
 
13554
 
 
13555
//
 
13556
// MessageId: ERROR_DS_WRONG_OM_OBJ_CLASS
 
13557
//
 
13558
// MessageText:
 
13559
//
 
13560
//  The OM-Object-Class specified is incorrect for an attribute with the specified syntax.
 
13561
//
 
13562
  ERROR_DS_WRONG_OM_OBJ_CLASS = DWORD(8476);
 
13563
  {$EXTERNALSYM ERROR_DS_WRONG_OM_OBJ_CLASS}
 
13564
 
 
13565
//
 
13566
// MessageId: ERROR_DS_DRA_REPL_PENDING
 
13567
//
 
13568
// MessageText:
 
13569
//
 
13570
//  The replication request has been posted; waiting for reply.
 
13571
//
 
13572
  ERROR_DS_DRA_REPL_PENDING = DWORD(8477);
 
13573
  {$EXTERNALSYM ERROR_DS_DRA_REPL_PENDING}
 
13574
 
 
13575
//
 
13576
// MessageId: ERROR_DS_DS_REQUIRED
 
13577
//
 
13578
// MessageText:
 
13579
//
 
13580
//  The requested operation requires a directory service, and none was available.
 
13581
//
 
13582
  ERROR_DS_DS_REQUIRED = DWORD(8478);
 
13583
  {$EXTERNALSYM ERROR_DS_DS_REQUIRED}
 
13584
 
 
13585
//
 
13586
// MessageId: ERROR_DS_INVALID_LDAP_DISPLAY_NAME
 
13587
//
 
13588
// MessageText:
 
13589
//
 
13590
//  The LDAP display name of the class or attribute contains non-ASCII characters.
 
13591
//
 
13592
  ERROR_DS_INVALID_LDAP_DISPLAY_NAME = DWORD(8479);
 
13593
  {$EXTERNALSYM ERROR_DS_INVALID_LDAP_DISPLAY_NAME}
 
13594
 
 
13595
//
 
13596
// MessageId: ERROR_DS_NON_BASE_SEARCH
 
13597
//
 
13598
// MessageText:
 
13599
//
 
13600
//  The requested search operation is only supported for base searches.
 
13601
//
 
13602
  ERROR_DS_NON_BASE_SEARCH = DWORD(8480);
 
13603
  {$EXTERNALSYM ERROR_DS_NON_BASE_SEARCH}
 
13604
 
 
13605
//
 
13606
// MessageId: ERROR_DS_CANT_RETRIEVE_ATTS
 
13607
//
 
13608
// MessageText:
 
13609
//
 
13610
//  The search failed to retrieve attributes from the database.
 
13611
//
 
13612
  ERROR_DS_CANT_RETRIEVE_ATTS = DWORD(8481);
 
13613
  {$EXTERNALSYM ERROR_DS_CANT_RETRIEVE_ATTS}
 
13614
 
 
13615
//
 
13616
// MessageId: ERROR_DS_BACKLINK_WITHOUT_LINK
 
13617
//
 
13618
// MessageText:
 
13619
//
 
13620
//  The schema update operation tried to add a backward link attribute that has no corresponding forward link.
 
13621
//
 
13622
  ERROR_DS_BACKLINK_WITHOUT_LINK = DWORD(8482);
 
13623
  {$EXTERNALSYM ERROR_DS_BACKLINK_WITHOUT_LINK}
 
13624
 
 
13625
//
 
13626
// MessageId: ERROR_DS_EPOCH_MISMATCH
 
13627
//
 
13628
// MessageText:
 
13629
//
 
13630
//  Source and destination of a cross-domain move do not agree on the object's epoch number.  Either source or destination does not have the latest version of the object.
 
13631
//
 
13632
  ERROR_DS_EPOCH_MISMATCH = DWORD(8483);
 
13633
  {$EXTERNALSYM ERROR_DS_EPOCH_MISMATCH}
 
13634
 
 
13635
//
 
13636
// MessageId: ERROR_DS_SRC_NAME_MISMATCH
 
13637
//
 
13638
// MessageText:
 
13639
//
 
13640
//  Source and destination of a cross-domain move do not agree on the object's current name.  Either source or destination does not have the latest version of the object.
 
13641
//
 
13642
  ERROR_DS_SRC_NAME_MISMATCH = DWORD(8484);
 
13643
  {$EXTERNALSYM ERROR_DS_SRC_NAME_MISMATCH}
 
13644
 
 
13645
//
 
13646
// MessageId: ERROR_DS_SRC_AND_DST_NC_IDENTICAL
 
13647
//
 
13648
// MessageText:
 
13649
//
 
13650
//  Source and destination for the cross-domain move operation are identical.  Caller should use local move operation instead of cross-domain move operation.
 
13651
//
 
13652
  ERROR_DS_SRC_AND_DST_NC_IDENTICAL = DWORD(8485);
 
13653
  {$EXTERNALSYM ERROR_DS_SRC_AND_DST_NC_IDENTICAL}
 
13654
 
 
13655
//
 
13656
// MessageId: ERROR_DS_DST_NC_MISMATCH
 
13657
//
 
13658
// MessageText:
 
13659
//
 
13660
//  Source and destination for a cross-domain move are not in agreement on the naming contexts in the forest.  Either source or destination does not have the latest version of the Partitions container.
 
13661
//
 
13662
  ERROR_DS_DST_NC_MISMATCH = DWORD(8486);
 
13663
  {$EXTERNALSYM ERROR_DS_DST_NC_MISMATCH}
 
13664
 
 
13665
//
 
13666
// MessageId: ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC
 
13667
//
 
13668
// MessageText:
 
13669
//
 
13670
//  Destination of a cross-domain move is not authoritative for the destination naming context.
 
13671
//
 
13672
  ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC = DWORD(8487);
 
13673
  {$EXTERNALSYM ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC}
 
13674
 
 
13675
//
 
13676
// MessageId: ERROR_DS_SRC_GUID_MISMATCH
 
13677
//
 
13678
// MessageText:
 
13679
//
 
13680
//  Source and destination of a cross-domain move do not agree on the identity of the source object.  Either source or destination does not have the latest version of the source object.
 
13681
//
 
13682
  ERROR_DS_SRC_GUID_MISMATCH = DWORD(8488);
 
13683
  {$EXTERNALSYM ERROR_DS_SRC_GUID_MISMATCH}
 
13684
 
 
13685
//
 
13686
// MessageId: ERROR_DS_CANT_MOVE_DELETED_OBJECT
 
13687
//
 
13688
// MessageText:
 
13689
//
 
13690
//  Object being moved across-domains is already known to be deleted by the destination server.  The source server does not have the latest version of the source object.
 
13691
//
 
13692
  ERROR_DS_CANT_MOVE_DELETED_OBJECT = DWORD(8489);
 
13693
  {$EXTERNALSYM ERROR_DS_CANT_MOVE_DELETED_OBJECT}
 
13694
 
 
13695
//
 
13696
// MessageId: ERROR_DS_PDC_OPERATION_IN_PROGRESS
 
13697
//
 
13698
// MessageText:
 
13699
//
 
13700
//  Another operation which requires exclusive access to the PDC FSMO is already in progress.
 
13701
//
 
13702
  ERROR_DS_PDC_OPERATION_IN_PROGRESS = DWORD(8490);
 
13703
  {$EXTERNALSYM ERROR_DS_PDC_OPERATION_IN_PROGRESS}
 
13704
 
 
13705
//
 
13706
// MessageId: ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD
 
13707
//
 
13708
// MessageText:
 
13709
//
 
13710
//  A cross-domain move operation failed such that two versions of the moved object exist - one each in the source and destination domains.  The destination object needs to be removed to restore the system to a consistent state.
 
13711
//
 
13712
  ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD = DWORD(8491);
 
13713
  {$EXTERNALSYM ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD}
 
13714
 
 
13715
//
 
13716
// MessageId: ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION
 
13717
//
 
13718
// MessageText:
 
13719
//
 
13720
//  This object may not be moved across domain boundaries either because cross-domain moves for this class are disallowed, or the object has some special characteristics, e.g.: trust account or restricted RID, which prevent its move.
 
13721
//
 
13722
  ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION = DWORD(8492);
 
13723
  {$EXTERNALSYM ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION}
 
13724
 
 
13725
//
 
13726
// MessageId: ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS
 
13727
//
 
13728
// MessageText:
 
13729
//
 
13730
//  Can't move objects with memberships across domain boundaries as once moved, this would violate the membership conditions of the account group.  Remove the object from any account group memberships and retry.
 
13731
//
 
13732
  ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS = DWORD(8493);
 
13733
  {$EXTERNALSYM ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS}
 
13734
 
 
13735
//
 
13736
// MessageId: ERROR_DS_NC_MUST_HAVE_NC_PARENT
 
13737
//
 
13738
// MessageText:
 
13739
//
 
13740
//  A naming context head must be the immediate child of another naming context head, not of an interior node.
 
13741
//
 
13742
  ERROR_DS_NC_MUST_HAVE_NC_PARENT = DWORD(8494);
 
13743
  {$EXTERNALSYM ERROR_DS_NC_MUST_HAVE_NC_PARENT}
 
13744
 
 
13745
//
 
13746
// MessageId: ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE
 
13747
//
 
13748
// MessageText:
 
13749
//
 
13750
//  The directory cannot validate the proposed naming context name because it does not hold a replica of the naming context above the proposed naming context.  Please ensure that the domain naming master role is held by a server that is configured as a global catalog server, and that the server is up to date with its replication partners. (Applies only to Windows 2000 Domain Naming masters)
 
13751
//
 
13752
  ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE = DWORD(8495);
 
13753
  {$EXTERNALSYM ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE}
 
13754
 
 
13755
//
 
13756
// MessageId: ERROR_DS_DST_DOMAIN_NOT_NATIVE
 
13757
//
 
13758
// MessageText:
 
13759
//
 
13760
//  Destination domain must be in native mode.
 
13761
//
 
13762
  ERROR_DS_DST_DOMAIN_NOT_NATIVE = DWORD(8496);
 
13763
  {$EXTERNALSYM ERROR_DS_DST_DOMAIN_NOT_NATIVE}
 
13764
 
 
13765
//
 
13766
// MessageId: ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER
 
13767
//
 
13768
// MessageText:
 
13769
//
 
13770
//  The operation can not be performed because the server does not have an infrastructure container in the domain of interest.
 
13771
//
 
13772
  ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER = DWORD(8497);
 
13773
  {$EXTERNALSYM ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER}
 
13774
 
 
13775
//
 
13776
// MessageId: ERROR_DS_CANT_MOVE_ACCOUNT_GROUP
 
13777
//
 
13778
// MessageText:
 
13779
//
 
13780
//  Cross-domain move of non-empty account groups is not allowed.
 
13781
//
 
13782
  ERROR_DS_CANT_MOVE_ACCOUNT_GROUP = DWORD(8498);
 
13783
  {$EXTERNALSYM ERROR_DS_CANT_MOVE_ACCOUNT_GROUP}
 
13784
 
 
13785
//
 
13786
// MessageId: ERROR_DS_CANT_MOVE_RESOURCE_GROUP
 
13787
//
 
13788
// MessageText:
 
13789
//
 
13790
//  Cross-domain move of non-empty resource groups is not allowed.
 
13791
//
 
13792
  ERROR_DS_CANT_MOVE_RESOURCE_GROUP = DWORD(8499);
 
13793
  {$EXTERNALSYM ERROR_DS_CANT_MOVE_RESOURCE_GROUP}
 
13794
 
 
13795
//
 
13796
// MessageId: ERROR_DS_INVALID_SEARCH_FLAG
 
13797
//
 
13798
// MessageText:
 
13799
//
 
13800
//  The search flags for the attribute are invalid. The ANR bit is valid only on attributes of Unicode or Teletex strings.
 
13801
//
 
13802
  ERROR_DS_INVALID_SEARCH_FLAG = DWORD(8500);
 
13803
  {$EXTERNALSYM ERROR_DS_INVALID_SEARCH_FLAG}
 
13804
 
 
13805
//
 
13806
// MessageId: ERROR_DS_NO_TREE_DELETE_ABOVE_NC
 
13807
//
 
13808
// MessageText:
 
13809
//
 
13810
//  Tree deletions starting at an object which has an NC head as a descendant are not allowed.
 
13811
//
 
13812
  ERROR_DS_NO_TREE_DELETE_ABOVE_NC = DWORD(8501);
 
13813
  {$EXTERNALSYM ERROR_DS_NO_TREE_DELETE_ABOVE_NC}
 
13814
 
 
13815
//
 
13816
// MessageId: ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE
 
13817
//
 
13818
// MessageText:
 
13819
//
 
13820
//  The directory service failed to lock a tree in preparation for a tree deletion because the tree was in use.
 
13821
//
 
13822
  ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE = DWORD(8502);
 
13823
  {$EXTERNALSYM ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE}
 
13824
 
 
13825
//
 
13826
// MessageId: ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE
 
13827
//
 
13828
// MessageText:
 
13829
//
 
13830
//  The directory service failed to identify the list of objects to delete while attempting a tree deletion.
 
13831
//
 
13832
  ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE = DWORD(8503);
 
13833
  {$EXTERNALSYM ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE}
 
13834
 
 
13835
//
 
13836
// MessageId: ERROR_DS_SAM_INIT_FAILURE
 
13837
//
 
13838
// MessageText:
 
13839
//
 
13840
//  Security Accounts Manager initialization failed because of the following error: %1.
 
13841
//  Error Status: 0x%2. Click OK to shut down the system and reboot into Directory Services Restore Mode. Check the event log for detailed information.
 
13842
//
 
13843
  ERROR_DS_SAM_INIT_FAILURE = DWORD(8504);
 
13844
  {$EXTERNALSYM ERROR_DS_SAM_INIT_FAILURE}
 
13845
 
 
13846
//
 
13847
// MessageId: ERROR_DS_SENSITIVE_GROUP_VIOLATION
 
13848
//
 
13849
// MessageText:
 
13850
//
 
13851
//  Only an administrator can modify the membership list of an administrative group.
 
13852
//
 
13853
  ERROR_DS_SENSITIVE_GROUP_VIOLATION = DWORD(8505);
 
13854
  {$EXTERNALSYM ERROR_DS_SENSITIVE_GROUP_VIOLATION}
 
13855
 
 
13856
//
 
13857
// MessageId: ERROR_DS_CANT_MOD_PRIMARYGROUPID
 
13858
//
 
13859
// MessageText:
 
13860
//
 
13861
//  Cannot change the primary group ID of a domain controller account.
 
13862
//
 
13863
  ERROR_DS_CANT_MOD_PRIMARYGROUPID = DWORD(8506);
 
13864
  {$EXTERNALSYM ERROR_DS_CANT_MOD_PRIMARYGROUPID}
 
13865
 
 
13866
//
 
13867
// MessageId: ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD
 
13868
//
 
13869
// MessageText:
 
13870
//
 
13871
//  An attempt is made to modify the base schema.
 
13872
//
 
13873
  ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD = DWORD(8507);
 
13874
  {$EXTERNALSYM ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD}
 
13875
 
 
13876
//
 
13877
// MessageId: ERROR_DS_NONSAFE_SCHEMA_CHANGE
 
13878
//
 
13879
// MessageText:
 
13880
//
 
13881
//  Adding a new mandatory attribute to an existing class, deleting a mandatory attribute from an existing class, or adding an optional attribute to the special class Top that is not a backlink attribute (directly or through inheritance, for example, by adding or deleting an auxiliary class) is not allowed.
 
13882
//
 
13883
  ERROR_DS_NONSAFE_SCHEMA_CHANGE = DWORD(8508);
 
13884
  {$EXTERNALSYM ERROR_DS_NONSAFE_SCHEMA_CHANGE}
 
13885
 
 
13886
//
 
13887
// MessageId: ERROR_DS_SCHEMA_UPDATE_DISALLOWED
 
13888
//
 
13889
// MessageText:
 
13890
//
 
13891
//  Schema update is not allowed on this DC because the DC is not the schema FSMO Role Owner.
 
13892
//
 
13893
  ERROR_DS_SCHEMA_UPDATE_DISALLOWED = DWORD(8509);
 
13894
  {$EXTERNALSYM ERROR_DS_SCHEMA_UPDATE_DISALLOWED}
 
13895
 
 
13896
//
 
13897
// MessageId: ERROR_DS_CANT_CREATE_UNDER_SCHEMA
 
13898
//
 
13899
// MessageText:
 
13900
//
 
13901
//  An object of this class cannot be created under the schema container. You can only create attribute-schema and class-schema objects under the schema container.
 
13902
//
 
13903
  ERROR_DS_CANT_CREATE_UNDER_SCHEMA = DWORD(8510);
 
13904
  {$EXTERNALSYM ERROR_DS_CANT_CREATE_UNDER_SCHEMA}
 
13905
 
 
13906
//
 
13907
// MessageId: ERROR_DS_INSTALL_NO_SRC_SCH_VERSION
 
13908
//
 
13909
// MessageText:
 
13910
//
 
13911
//  The replica/child install failed to get the objectVersion attribute on the schema container on the source DC. Either the attribute is missing on the schema container or the credentials supplied do not have permission to read it.
 
13912
//
 
13913
  ERROR_DS_INSTALL_NO_SRC_SCH_VERSION = DWORD(8511);
 
13914
  {$EXTERNALSYM ERROR_DS_INSTALL_NO_SRC_SCH_VERSION}
 
13915
 
 
13916
//
 
13917
// MessageId: ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE
 
13918
//
 
13919
// MessageText:
 
13920
//
 
13921
//  The replica/child install failed to read the objectVersion attribute in the SCHEMA section of the file schema.ini in the system32 directory.
 
13922
//
 
13923
  ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE = DWORD(8512);
 
13924
  {$EXTERNALSYM ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE}
 
13925
 
 
13926
//
 
13927
// MessageId: ERROR_DS_INVALID_GROUP_TYPE
 
13928
//
 
13929
// MessageText:
 
13930
//
 
13931
//  The specified group type is invalid.
 
13932
//
 
13933
  ERROR_DS_INVALID_GROUP_TYPE = DWORD(8513);
 
13934
  {$EXTERNALSYM ERROR_DS_INVALID_GROUP_TYPE}
 
13935
 
 
13936
//
 
13937
// MessageId: ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN
 
13938
//
 
13939
// MessageText:
 
13940
//
 
13941
//  You cannot nest global groups in a mixed domain if the group is security-enabled.
 
13942
//
 
13943
  ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN = DWORD(8514);
 
13944
  {$EXTERNALSYM ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN}
 
13945
 
 
13946
//
 
13947
// MessageId: ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN
 
13948
//
 
13949
// MessageText:
 
13950
//
 
13951
//  You cannot nest local groups in a mixed domain if the group is security-enabled.
 
13952
//
 
13953
  ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN = DWORD(8515);
 
13954
  {$EXTERNALSYM ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN}
 
13955
 
 
13956
//
 
13957
// MessageId: ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER
 
13958
//
 
13959
// MessageText:
 
13960
//
 
13961
//  A global group cannot have a local group as a member.
 
13962
//
 
13963
  ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER = DWORD(8516);
 
13964
  {$EXTERNALSYM ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER}
 
13965
 
 
13966
//
 
13967
// MessageId: ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER
 
13968
//
 
13969
// MessageText:
 
13970
//
 
13971
//  A global group cannot have a universal group as a member.
 
13972
//
 
13973
  ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER = DWORD(8517);
 
13974
  {$EXTERNALSYM ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER}
 
13975
 
 
13976
//
 
13977
// MessageId: ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER
 
13978
//
 
13979
// MessageText:
 
13980
//
 
13981
//  A universal group cannot have a local group as a member.
 
13982
//
 
13983
  ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER = DWORD(8518);
 
13984
  {$EXTERNALSYM ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER}
 
13985
 
 
13986
//
 
13987
// MessageId: ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER
 
13988
//
 
13989
// MessageText:
 
13990
//
 
13991
//  A global group cannot have a cross-domain member.
 
13992
//
 
13993
  ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER = DWORD(8519);
 
13994
  {$EXTERNALSYM ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER}
 
13995
 
 
13996
//
 
13997
// MessageId: ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER
 
13998
//
 
13999
// MessageText:
 
14000
//
 
14001
//  A local group cannot have another cross domain local group as a member.
 
14002
//
 
14003
  ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER = DWORD(8520);
 
14004
  {$EXTERNALSYM ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER}
 
14005
 
 
14006
//
 
14007
// MessageId: ERROR_DS_HAVE_PRIMARY_MEMBERS
 
14008
//
 
14009
// MessageText:
 
14010
//
 
14011
//  A group with primary members cannot change to a security-disabled group.
 
14012
//
 
14013
  ERROR_DS_HAVE_PRIMARY_MEMBERS = DWORD(8521);
 
14014
  {$EXTERNALSYM ERROR_DS_HAVE_PRIMARY_MEMBERS}
 
14015
 
 
14016
//
 
14017
// MessageId: ERROR_DS_STRING_SD_CONVERSION_FAILED
 
14018
//
 
14019
// MessageText:
 
14020
//
 
14021
//  The schema cache load failed to convert the string default SD on a class-schema object.
 
14022
//
 
14023
  ERROR_DS_STRING_SD_CONVERSION_FAILED = DWORD(8522);
 
14024
  {$EXTERNALSYM ERROR_DS_STRING_SD_CONVERSION_FAILED}
 
14025
 
 
14026
//
 
14027
// MessageId: ERROR_DS_NAMING_MASTER_GC
 
14028
//
 
14029
// MessageText:
 
14030
//
 
14031
//  Only DSAs configured to be Global Catalog servers should be allowed to hold the Domain Naming Master FSMO role. (Applies only to Windows 2000 servers)
 
14032
//
 
14033
  ERROR_DS_NAMING_MASTER_GC = DWORD(8523);
 
14034
  {$EXTERNALSYM ERROR_DS_NAMING_MASTER_GC}
 
14035
 
 
14036
//
 
14037
// MessageId: ERROR_DS_DNS_LOOKUP_FAILURE
 
14038
//
 
14039
// MessageText:
 
14040
//
 
14041
//  The DSA operation is unable to proceed because of a DNS lookup failure.
 
14042
//
 
14043
  ERROR_DS_DNS_LOOKUP_FAILURE = DWORD(8524);
 
14044
  {$EXTERNALSYM ERROR_DS_DNS_LOOKUP_FAILURE}
 
14045
 
 
14046
//
 
14047
// MessageId: ERROR_DS_COULDNT_UPDATE_SPNS
 
14048
//
 
14049
// MessageText:
 
14050
//
 
14051
//  While processing a change to the DNS Host Name for an object, the Service Principal Name values could not be kept in sync.
 
14052
//
 
14053
  ERROR_DS_COULDNT_UPDATE_SPNS = DWORD(8525);
 
14054
  {$EXTERNALSYM ERROR_DS_COULDNT_UPDATE_SPNS}
 
14055
 
 
14056
//
 
14057
// MessageId: ERROR_DS_CANT_RETRIEVE_SD
 
14058
//
 
14059
// MessageText:
 
14060
//
 
14061
//  The Security Descriptor attribute could not be read.
 
14062
//
 
14063
  ERROR_DS_CANT_RETRIEVE_SD = DWORD(8526);
 
14064
  {$EXTERNALSYM ERROR_DS_CANT_RETRIEVE_SD}
 
14065
 
 
14066
//
 
14067
// MessageId: ERROR_DS_KEY_NOT_UNIQUE
 
14068
//
 
14069
// MessageText:
 
14070
//
 
14071
//  The object requested was not found, but an object with that key was found.
 
14072
//
 
14073
  ERROR_DS_KEY_NOT_UNIQUE = DWORD(8527);
 
14074
  {$EXTERNALSYM ERROR_DS_KEY_NOT_UNIQUE}
 
14075
 
 
14076
//
 
14077
// MessageId: ERROR_DS_WRONG_LINKED_ATT_SYNTAX
 
14078
//
 
14079
// MessageText:
 
14080
//
 
14081
//  The syntax of the linked attribute being added is incorrect. Forward links can only have syntax 2.5.5.1, 2.5.5.7, and 2.5.5.14, and backlinks can only have syntax 2.5.5.1
 
14082
//
 
14083
  ERROR_DS_WRONG_LINKED_ATT_SYNTAX = DWORD(8528);
 
14084
  {$EXTERNALSYM ERROR_DS_WRONG_LINKED_ATT_SYNTAX}
 
14085
 
 
14086
//
 
14087
// MessageId: ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD
 
14088
//
 
14089
// MessageText:
 
14090
//
 
14091
//  Security Account Manager needs to get the boot password.
 
14092
//
 
14093
  ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD = DWORD(8529);
 
14094
  {$EXTERNALSYM ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD}
 
14095
 
 
14096
//
 
14097
// MessageId: ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY
 
14098
//
 
14099
// MessageText:
 
14100
//
 
14101
//  Security Account Manager needs to get the boot key from floppy disk.
 
14102
//
 
14103
  ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY = DWORD(8530);
 
14104
  {$EXTERNALSYM ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY}
 
14105
 
 
14106
//
 
14107
// MessageId: ERROR_DS_CANT_START
 
14108
//
 
14109
// MessageText:
 
14110
//
 
14111
//  Directory Service cannot start.
 
14112
//
 
14113
  ERROR_DS_CANT_START = DWORD(8531);
 
14114
  {$EXTERNALSYM ERROR_DS_CANT_START}
 
14115
 
 
14116
//
 
14117
// MessageId: ERROR_DS_INIT_FAILURE
 
14118
//
 
14119
// MessageText:
 
14120
//
 
14121
//  Directory Services could not start.
 
14122
//
 
14123
  ERROR_DS_INIT_FAILURE = DWORD(8532);
 
14124
  {$EXTERNALSYM ERROR_DS_INIT_FAILURE}
 
14125
 
 
14126
//
 
14127
// MessageId: ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION
 
14128
//
 
14129
// MessageText:
 
14130
//
 
14131
//  The connection between client and server requires packet privacy or better.
 
14132
//
 
14133
  ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION = DWORD(8533);
 
14134
  {$EXTERNALSYM ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION}
 
14135
 
 
14136
//
 
14137
// MessageId: ERROR_DS_SOURCE_DOMAIN_IN_FOREST
 
14138
//
 
14139
// MessageText:
 
14140
//
 
14141
//  The source domain may not be in the same forest as destination.
 
14142
//
 
14143
  ERROR_DS_SOURCE_DOMAIN_IN_FOREST = DWORD(8534);
 
14144
  {$EXTERNALSYM ERROR_DS_SOURCE_DOMAIN_IN_FOREST}
 
14145
 
 
14146
//
 
14147
// MessageId: ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST
 
14148
//
 
14149
// MessageText:
 
14150
//
 
14151
//  The destination domain must be in the forest.
 
14152
//
 
14153
  ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST = DWORD(8535);
 
14154
  {$EXTERNALSYM ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST}
 
14155
 
 
14156
//
 
14157
// MessageId: ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED
 
14158
//
 
14159
// MessageText:
 
14160
//
 
14161
//  The operation requires that destination domain auditing be enabled.
 
14162
//
 
14163
  ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED = DWORD(8536);
 
14164
  {$EXTERNALSYM ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED}
 
14165
 
 
14166
//
 
14167
// MessageId: ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN
 
14168
//
 
14169
// MessageText:
 
14170
//
 
14171
//  The operation couldn't locate a DC for the source domain.
 
14172
//
 
14173
  ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN = DWORD(8537);
 
14174
  {$EXTERNALSYM ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN}
 
14175
 
 
14176
//
 
14177
// MessageId: ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER
 
14178
//
 
14179
// MessageText:
 
14180
//
 
14181
//  The source object must be a group or user.
 
14182
//
 
14183
  ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER = DWORD(8538);
 
14184
  {$EXTERNALSYM ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER}
 
14185
 
 
14186
//
 
14187
// MessageId: ERROR_DS_SRC_SID_EXISTS_IN_FOREST
 
14188
//
 
14189
// MessageText:
 
14190
//
 
14191
//  The source object's SID already exists in destination forest.
 
14192
//
 
14193
  ERROR_DS_SRC_SID_EXISTS_IN_FOREST = DWORD(8539);
 
14194
  {$EXTERNALSYM ERROR_DS_SRC_SID_EXISTS_IN_FOREST}
 
14195
 
 
14196
//
 
14197
// MessageId: ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH
 
14198
//
 
14199
// MessageText:
 
14200
//
 
14201
//  The source and destination object must be of the same type.
 
14202
//
 
14203
  ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH = DWORD(8540);
 
14204
  {$EXTERNALSYM ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH}
 
14205
 
 
14206
//
 
14207
// MessageId: ERROR_SAM_INIT_FAILURE
 
14208
//
 
14209
// MessageText:
 
14210
//
 
14211
//  Security Accounts Manager initialization failed because of the following error: %1.
 
14212
//  Error Status: 0x%2. Click OK to shut down the system and reboot into Safe Mode. Check the event log for detailed information.
 
14213
//
 
14214
  ERROR_SAM_INIT_FAILURE = DWORD(8541);
 
14215
  {$EXTERNALSYM ERROR_SAM_INIT_FAILURE}
 
14216
 
 
14217
//
 
14218
// MessageId: ERROR_DS_DRA_SCHEMA_INFO_SHIP
 
14219
//
 
14220
// MessageText:
 
14221
//
 
14222
//  Schema information could not be included in the replication request.
 
14223
//
 
14224
  ERROR_DS_DRA_SCHEMA_INFO_SHIP = DWORD(8542);
 
14225
  {$EXTERNALSYM ERROR_DS_DRA_SCHEMA_INFO_SHIP}
 
14226
 
 
14227
//
 
14228
// MessageId: ERROR_DS_DRA_SCHEMA_CONFLICT
 
14229
//
 
14230
// MessageText:
 
14231
//
 
14232
//  The replication operation could not be completed due to a schema incompatibility.
 
14233
//
 
14234
  ERROR_DS_DRA_SCHEMA_CONFLICT = DWORD(8543);
 
14235
  {$EXTERNALSYM ERROR_DS_DRA_SCHEMA_CONFLICT}
 
14236
 
 
14237
//
 
14238
// MessageId: ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT
 
14239
//
 
14240
// MessageText:
 
14241
//
 
14242
//  The replication operation could not be completed due to a previous schema incompatibility.
 
14243
//
 
14244
  ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT = DWORD(8544);
 
14245
  {$EXTERNALSYM ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT}
 
14246
 
 
14247
//
 
14248
// MessageId: ERROR_DS_DRA_OBJ_NC_MISMATCH
 
14249
//
 
14250
// MessageText:
 
14251
//
 
14252
//  The replication update could not be applied because either the source or the destination has not yet received information regarding a recent cross-domain move operation.
 
14253
//
 
14254
  ERROR_DS_DRA_OBJ_NC_MISMATCH = DWORD(8545);
 
14255
  {$EXTERNALSYM ERROR_DS_DRA_OBJ_NC_MISMATCH}
 
14256
 
 
14257
//
 
14258
// MessageId: ERROR_DS_NC_STILL_HAS_DSAS
 
14259
//
 
14260
// MessageText:
 
14261
//
 
14262
//  The requested domain could not be deleted because there exist domain controllers that still host this domain.
 
14263
//
 
14264
  ERROR_DS_NC_STILL_HAS_DSAS = DWORD(8546);
 
14265
  {$EXTERNALSYM ERROR_DS_NC_STILL_HAS_DSAS}
 
14266
 
 
14267
//
 
14268
// MessageId: ERROR_DS_GC_REQUIRED
 
14269
//
 
14270
// MessageText:
 
14271
//
 
14272
//  The requested operation can be performed only on a global catalog server.
 
14273
//
 
14274
  ERROR_DS_GC_REQUIRED = DWORD(8547);
 
14275
  {$EXTERNALSYM ERROR_DS_GC_REQUIRED}
 
14276
 
 
14277
//
 
14278
// MessageId: ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY
 
14279
//
 
14280
// MessageText:
 
14281
//
 
14282
//  A local group can only be a member of other local groups in the same domain.
 
14283
//
 
14284
  ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY = DWORD(8548);
 
14285
  {$EXTERNALSYM ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY}
 
14286
 
 
14287
//
 
14288
// MessageId: ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS
 
14289
//
 
14290
// MessageText:
 
14291
//
 
14292
//  Foreign security principals cannot be members of universal groups.
 
14293
//
 
14294
  ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS = DWORD(8549);
 
14295
  {$EXTERNALSYM ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS}
 
14296
 
 
14297
//
 
14298
// MessageId: ERROR_DS_CANT_ADD_TO_GC
 
14299
//
 
14300
// MessageText:
 
14301
//
 
14302
//  The attribute is not allowed to be replicated to the GC because of security reasons.
 
14303
//
 
14304
  ERROR_DS_CANT_ADD_TO_GC = DWORD(8550);
 
14305
  {$EXTERNALSYM ERROR_DS_CANT_ADD_TO_GC}
 
14306
 
 
14307
//
 
14308
// MessageId: ERROR_DS_NO_CHECKPOINT_WITH_PDC
 
14309
//
 
14310
// MessageText:
 
14311
//
 
14312
//  The checkpoint with the PDC could not be taken because there too many modifications being processed currently.
 
14313
//
 
14314
  ERROR_DS_NO_CHECKPOINT_WITH_PDC = DWORD(8551);
 
14315
  {$EXTERNALSYM ERROR_DS_NO_CHECKPOINT_WITH_PDC}
 
14316
 
 
14317
//
 
14318
// MessageId: ERROR_DS_SOURCE_AUDITING_NOT_ENABLED
 
14319
//
 
14320
// MessageText:
 
14321
//
 
14322
//  The operation requires that source domain auditing be enabled.
 
14323
//
 
14324
  ERROR_DS_SOURCE_AUDITING_NOT_ENABLED = DWORD(8552);
 
14325
  {$EXTERNALSYM ERROR_DS_SOURCE_AUDITING_NOT_ENABLED}
 
14326
 
 
14327
//
 
14328
// MessageId: ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC
 
14329
//
 
14330
// MessageText:
 
14331
//
 
14332
//  Security principal objects can only be created inside domain naming contexts.
 
14333
//
 
14334
  ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC = DWORD(8553);
 
14335
  {$EXTERNALSYM ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC}
 
14336
 
 
14337
//
 
14338
// MessageId: ERROR_DS_INVALID_NAME_FOR_SPN
 
14339
//
 
14340
// MessageText:
 
14341
//
 
14342
//  A Service Principal Name (SPN) could not be constructed because the provided hostname is not in the necessary format.
 
14343
//
 
14344
  ERROR_DS_INVALID_NAME_FOR_SPN = DWORD(8554);
 
14345
  {$EXTERNALSYM ERROR_DS_INVALID_NAME_FOR_SPN}
 
14346
 
 
14347
//
 
14348
// MessageId: ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS
 
14349
//
 
14350
// MessageText:
 
14351
//
 
14352
//  A Filter was passed that uses constructed attributes.
 
14353
//
 
14354
  ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS = DWORD(8555);
 
14355
  {$EXTERNALSYM ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS}
 
14356
 
 
14357
//
 
14358
// MessageId: ERROR_DS_UNICODEPWD_NOT_IN_QUOTES
 
14359
//
 
14360
// MessageText:
 
14361
//
 
14362
//  The unicodePwd attribute value must be enclosed in double quotes.
 
14363
//
 
14364
  ERROR_DS_UNICODEPWD_NOT_IN_QUOTES = DWORD(8556);
 
14365
  {$EXTERNALSYM ERROR_DS_UNICODEPWD_NOT_IN_QUOTES}
 
14366
 
 
14367
//
 
14368
// MessageId: ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED
 
14369
//
 
14370
// MessageText:
 
14371
//
 
14372
//  Your computer could not be joined to the domain. You have exceeded the maximum number of computer accounts you are allowed to create in this domain. Contact your system administrator to have this limit reset or increased.
 
14373
//
 
14374
  ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED = DWORD(8557);
 
14375
  {$EXTERNALSYM ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED}
 
14376
 
 
14377
//
 
14378
// MessageId: ERROR_DS_MUST_BE_RUN_ON_DST_DC
 
14379
//
 
14380
// MessageText:
 
14381
//
 
14382
//  For security reasons, the operation must be run on the destination DC.
 
14383
//
 
14384
  ERROR_DS_MUST_BE_RUN_ON_DST_DC = DWORD(8558);
 
14385
  {$EXTERNALSYM ERROR_DS_MUST_BE_RUN_ON_DST_DC}
 
14386
 
 
14387
//
 
14388
// MessageId: ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER
 
14389
//
 
14390
// MessageText:
 
14391
//
 
14392
//  For security reasons, the source DC must be NT4SP4 or greater.
 
14393
//
 
14394
  ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER = DWORD(8559);
 
14395
  {$EXTERNALSYM ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER}
 
14396
 
 
14397
//
 
14398
// MessageId: ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ
 
14399
//
 
14400
// MessageText:
 
14401
//
 
14402
//  Critical Directory Service System objects cannot be deleted during tree delete operations.  The tree delete may have been partially performed.
 
14403
//
 
14404
  ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ = DWORD(8560);
 
14405
  {$EXTERNALSYM ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ}
 
14406
 
 
14407
//
 
14408
// MessageId: ERROR_DS_INIT_FAILURE_CONSOLE
 
14409
//
 
14410
// MessageText:
 
14411
//
 
14412
//  Directory Services could not start because of the following error: %1.
 
14413
//  Error Status: 0x%2. Please click OK to shutdown the system. You can use the recovery console to diagnose the system further.
 
14414
//
 
14415
  ERROR_DS_INIT_FAILURE_CONSOLE = DWORD(8561);
 
14416
  {$EXTERNALSYM ERROR_DS_INIT_FAILURE_CONSOLE}
 
14417
 
 
14418
//
 
14419
// MessageId: ERROR_DS_SAM_INIT_FAILURE_CONSOLE
 
14420
//
 
14421
// MessageText:
 
14422
//
 
14423
//  Security Accounts Manager initialization failed because of the following error: %1.
 
14424
//  Error Status: 0x%2. Please click OK to shutdown the system. You can use the recovery console to diagnose the system further.
 
14425
//
 
14426
  ERROR_DS_SAM_INIT_FAILURE_CONSOLE = DWORD(8562);
 
14427
  {$EXTERNALSYM ERROR_DS_SAM_INIT_FAILURE_CONSOLE}
 
14428
 
 
14429
//
 
14430
// MessageId: ERROR_DS_FOREST_VERSION_TOO_HIGH
 
14431
//
 
14432
// MessageText:
 
14433
//
 
14434
//  The version of the operating system installed is incompatible with the current forest functional level. You must upgrade to a new version of the operating system before this server can become a domain controller in this forest.
 
14435
//
 
14436
  ERROR_DS_FOREST_VERSION_TOO_HIGH = DWORD(8563);
 
14437
  {$EXTERNALSYM ERROR_DS_FOREST_VERSION_TOO_HIGH}
 
14438
 
 
14439
//
 
14440
// MessageId: ERROR_DS_DOMAIN_VERSION_TOO_HIGH
 
14441
//
 
14442
// MessageText:
 
14443
//
 
14444
//  The version of the operating system installed is incompatible with the current domain functional level. You must upgrade to a new version of the operating system before this server can become a domain controller in this domain.
 
14445
//
 
14446
  ERROR_DS_DOMAIN_VERSION_TOO_HIGH = DWORD(8564);
 
14447
  {$EXTERNALSYM ERROR_DS_DOMAIN_VERSION_TOO_HIGH}
 
14448
 
 
14449
//
 
14450
// MessageId: ERROR_DS_FOREST_VERSION_TOO_LOW
 
14451
//
 
14452
// MessageText:
 
14453
//
 
14454
//  The version of the operating system installed on this server no longer supports the current forest functional level. You must raise the forest functional level before this server can become a domain controller in this forest.
 
14455
//
 
14456
  ERROR_DS_FOREST_VERSION_TOO_LOW = DWORD(8565);
 
14457
  {$EXTERNALSYM ERROR_DS_FOREST_VERSION_TOO_LOW}
 
14458
 
 
14459
//
 
14460
// MessageId: ERROR_DS_DOMAIN_VERSION_TOO_LOW
 
14461
//
 
14462
// MessageText:
 
14463
//
 
14464
//  The version of the operating system installed on this server no longer supports the current domain functional level. You must raise the domain functional level before this server can become a domain controller in this domain.
 
14465
//
 
14466
  ERROR_DS_DOMAIN_VERSION_TOO_LOW = DWORD(8566);
 
14467
  {$EXTERNALSYM ERROR_DS_DOMAIN_VERSION_TOO_LOW}
 
14468
 
 
14469
//
 
14470
// MessageId: ERROR_DS_INCOMPATIBLE_VERSION
 
14471
//
 
14472
// MessageText:
 
14473
//
 
14474
//  The version of the operating system installed on this server is incompatible with the functional level of the domain or forest.
 
14475
//
 
14476
  ERROR_DS_INCOMPATIBLE_VERSION = DWORD(8567);
 
14477
  {$EXTERNALSYM ERROR_DS_INCOMPATIBLE_VERSION}
 
14478
 
 
14479
//
 
14480
// MessageId: ERROR_DS_LOW_DSA_VERSION
 
14481
//
 
14482
// MessageText:
 
14483
//
 
14484
//  The functional level of the domain (or forest) cannot be raised to the requested value, because there exist one or more domain controllers in the domain (or forest) that are at a lower incompatible functional level.
 
14485
//
 
14486
  ERROR_DS_LOW_DSA_VERSION = DWORD(8568);
 
14487
  {$EXTERNALSYM ERROR_DS_LOW_DSA_VERSION}
 
14488
 
 
14489
//
 
14490
// MessageId: ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN
 
14491
//
 
14492
// MessageText:
 
14493
//
 
14494
//  The forest functional level cannot be raised to the requested value since one or more domains are still in mixed domain mode. All domains in the forest must be in native mode, for you to raise the forest functional level.
 
14495
//
 
14496
  ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN = DWORD(8569);
 
14497
  {$EXTERNALSYM ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN}
 
14498
 
 
14499
//
 
14500
// MessageId: ERROR_DS_NOT_SUPPORTED_SORT_ORDER
 
14501
//
 
14502
// MessageText:
 
14503
//
 
14504
//  The sort order requested is not supported.
 
14505
//
 
14506
  ERROR_DS_NOT_SUPPORTED_SORT_ORDER = DWORD(8570);
 
14507
  {$EXTERNALSYM ERROR_DS_NOT_SUPPORTED_SORT_ORDER}
 
14508
 
 
14509
//
 
14510
// MessageId: ERROR_DS_NAME_NOT_UNIQUE
 
14511
//
 
14512
// MessageText:
 
14513
//
 
14514
//  The requested name already exists as a unique identifier.
 
14515
//
 
14516
  ERROR_DS_NAME_NOT_UNIQUE = DWORD(8571);
 
14517
  {$EXTERNALSYM ERROR_DS_NAME_NOT_UNIQUE}
 
14518
 
 
14519
//
 
14520
// MessageId: ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4
 
14521
//
 
14522
// MessageText:
 
14523
//
 
14524
//  The machine account was created pre-NT4.  The account needs to be recreated.
 
14525
//
 
14526
  ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4 = DWORD(8572);
 
14527
  {$EXTERNALSYM ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4}
 
14528
 
 
14529
//
 
14530
// MessageId: ERROR_DS_OUT_OF_VERSION_STORE
 
14531
//
 
14532
// MessageText:
 
14533
//
 
14534
//  The database is out of version store.
 
14535
//
 
14536
  ERROR_DS_OUT_OF_VERSION_STORE = DWORD(8573);
 
14537
  {$EXTERNALSYM ERROR_DS_OUT_OF_VERSION_STORE}
 
14538
 
 
14539
//
 
14540
// MessageId: ERROR_DS_INCOMPATIBLE_CONTROLS_USED
 
14541
//
 
14542
// MessageText:
 
14543
//
 
14544
//  Unable to continue operation because multiple conflicting controls were used.
 
14545
//
 
14546
  ERROR_DS_INCOMPATIBLE_CONTROLS_USED = DWORD(8574);
 
14547
  {$EXTERNALSYM ERROR_DS_INCOMPATIBLE_CONTROLS_USED}
 
14548
 
 
14549
//
 
14550
// MessageId: ERROR_DS_NO_REF_DOMAIN
 
14551
//
 
14552
// MessageText:
 
14553
//
 
14554
//  Unable to find a valid security descriptor reference domain for this partition.
 
14555
//
 
14556
  ERROR_DS_NO_REF_DOMAIN = DWORD(8575);
 
14557
  {$EXTERNALSYM ERROR_DS_NO_REF_DOMAIN}
 
14558
 
 
14559
//
 
14560
// MessageId: ERROR_DS_RESERVED_LINK_ID
 
14561
//
 
14562
// MessageText:
 
14563
//
 
14564
//  Schema update failed: The link identifier is reserved.
 
14565
//
 
14566
  ERROR_DS_RESERVED_LINK_ID = DWORD(8576);
 
14567
  {$EXTERNALSYM ERROR_DS_RESERVED_LINK_ID}
 
14568
 
 
14569
//
 
14570
// MessageId: ERROR_DS_LINK_ID_NOT_AVAILABLE
 
14571
//
 
14572
// MessageText:
 
14573
//
 
14574
//  Schema update failed: There are no link identifiers available.
 
14575
//
 
14576
  ERROR_DS_LINK_ID_NOT_AVAILABLE = DWORD(8577);
 
14577
  {$EXTERNALSYM ERROR_DS_LINK_ID_NOT_AVAILABLE}
 
14578
 
 
14579
//
 
14580
// MessageId: ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER
 
14581
//
 
14582
// MessageText:
 
14583
//
 
14584
//  An account group can not have a universal group as a member.
 
14585
//
 
14586
  ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER = DWORD(8578);
 
14587
  {$EXTERNALSYM ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER}
 
14588
 
 
14589
//
 
14590
// MessageId: ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE
 
14591
//
 
14592
// MessageText:
 
14593
//
 
14594
//  Rename or move operations on naming context heads or read-only objects are not allowed.
 
14595
//
 
14596
  ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE = DWORD(8579);
 
14597
  {$EXTERNALSYM ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE}
 
14598
 
 
14599
//
 
14600
// MessageId: ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC
 
14601
//
 
14602
// MessageText:
 
14603
//
 
14604
//  Move operations on objects in the schema naming context are not allowed.
 
14605
//
 
14606
  ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC = DWORD(8580);
 
14607
  {$EXTERNALSYM ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC}
 
14608
 
 
14609
//
 
14610
// MessageId: ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG
 
14611
//
 
14612
// MessageText:
 
14613
//
 
14614
//  A system flag has been set on the object and does not allow the object to be moved or renamed.
 
14615
//
 
14616
  ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG = DWORD(8581);
 
14617
  {$EXTERNALSYM ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG}
 
14618
 
 
14619
//
 
14620
// MessageId: ERROR_DS_MODIFYDN_WRONG_GRANDPARENT
 
14621
//
 
14622
// MessageText:
 
14623
//
 
14624
//  This object is not allowed to change its grandparent container. Moves are not forbidden on this object, but are restricted to sibling containers.
 
14625
//
 
14626
  ERROR_DS_MODIFYDN_WRONG_GRANDPARENT = DWORD(8582);
 
14627
  {$EXTERNALSYM ERROR_DS_MODIFYDN_WRONG_GRANDPARENT}
 
14628
 
 
14629
//
 
14630
// MessageId: ERROR_DS_NAME_ERROR_TRUST_REFERRAL
 
14631
//
 
14632
// MessageText:
 
14633
//
 
14634
//  Unable to resolve completely, a referral to another forest is generated.
 
14635
//
 
14636
  ERROR_DS_NAME_ERROR_TRUST_REFERRAL = DWORD(8583);
 
14637
  {$EXTERNALSYM ERROR_DS_NAME_ERROR_TRUST_REFERRAL}
 
14638
 
 
14639
//
 
14640
// MessageId: ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER
 
14641
//
 
14642
// MessageText:
 
14643
//
 
14644
//  The requested action is not supported on standard server.
 
14645
//
 
14646
  ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER = DWORD(8584);
 
14647
  {$EXTERNALSYM ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER}
 
14648
 
 
14649
//
 
14650
// MessageId: ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD
 
14651
//
 
14652
// MessageText:
 
14653
//
 
14654
//  Could not access a partition of the Active Directory located on a remote server.  Make sure at least one server is running for the partition in question.
 
14655
//
 
14656
  ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD = DWORD(8585);
 
14657
  {$EXTERNALSYM ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD}
 
14658
 
 
14659
//
 
14660
// MessageId: ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2
 
14661
//
 
14662
// MessageText:
 
14663
//
 
14664
//  The directory cannot validate the proposed naming context (or partition) name because it does not hold a replica nor can it contact a replica of the naming context above the proposed naming context.  Please ensure that the parent naming context is properly registered in DNS, and at least one replica of this naming context is reachable by the Domain Naming master.
 
14665
//
 
14666
  ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2 = DWORD(8586);
 
14667
  {$EXTERNALSYM ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2}
 
14668
 
 
14669
//
 
14670
// MessageId: ERROR_DS_THREAD_LIMIT_EXCEEDED
 
14671
//
 
14672
// MessageText:
 
14673
//
 
14674
//  The thread limit for this request was exceeded.
 
14675
//
 
14676
  ERROR_DS_THREAD_LIMIT_EXCEEDED = DWORD(8587);
 
14677
  {$EXTERNALSYM ERROR_DS_THREAD_LIMIT_EXCEEDED}
 
14678
 
 
14679
//
 
14680
// MessageId: ERROR_DS_NOT_CLOSEST
 
14681
//
 
14682
// MessageText:
 
14683
//
 
14684
//  The Global catalog server is not in the closest site.
 
14685
//
 
14686
  ERROR_DS_NOT_CLOSEST = DWORD(8588);
 
14687
  {$EXTERNALSYM ERROR_DS_NOT_CLOSEST}
 
14688
 
 
14689
//
 
14690
// MessageId: ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF
 
14691
//
 
14692
// MessageText:
 
14693
//
 
14694
//  The DS cannot derive a service principal name (SPN) with which to mutually authenticate the target server because the corresponding server object in the local DS database has no serverReference attribute.
 
14695
//
 
14696
  ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF = DWORD(8589);
 
14697
  {$EXTERNALSYM ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF}
 
14698
 
 
14699
//
 
14700
// MessageId: ERROR_DS_SINGLE_USER_MODE_FAILED
 
14701
//
 
14702
// MessageText:
 
14703
//
 
14704
//  The Directory Service failed to enter single user mode.
 
14705
//
 
14706
  ERROR_DS_SINGLE_USER_MODE_FAILED = DWORD(8590);
 
14707
  {$EXTERNALSYM ERROR_DS_SINGLE_USER_MODE_FAILED}
 
14708
 
 
14709
//
 
14710
// MessageId: ERROR_DS_NTDSCRIPT_SYNTAX_ERROR
 
14711
//
 
14712
// MessageText:
 
14713
//
 
14714
//  The Directory Service cannot parse the script because of a syntax error.
 
14715
//
 
14716
  ERROR_DS_NTDSCRIPT_SYNTAX_ERROR = DWORD(8591);
 
14717
  {$EXTERNALSYM ERROR_DS_NTDSCRIPT_SYNTAX_ERROR}
 
14718
 
 
14719
//
 
14720
// MessageId: ERROR_DS_NTDSCRIPT_PROCESS_ERROR
 
14721
//
 
14722
// MessageText:
 
14723
//
 
14724
//  The Directory Service cannot process the script because of an error.
 
14725
//
 
14726
  ERROR_DS_NTDSCRIPT_PROCESS_ERROR = DWORD(8592);
 
14727
  {$EXTERNALSYM ERROR_DS_NTDSCRIPT_PROCESS_ERROR}
 
14728
 
 
14729
//
 
14730
// MessageId: ERROR_DS_DIFFERENT_REPL_EPOCHS
 
14731
//
 
14732
// MessageText:
 
14733
//
 
14734
//  The directory service cannot perform the requested operation because the servers
 
14735
//  involved are of different replication epochs (which is usually related to a
 
14736
//  domain rename that is in progress).
 
14737
//
 
14738
  ERROR_DS_DIFFERENT_REPL_EPOCHS = DWORD(8593);
 
14739
  {$EXTERNALSYM ERROR_DS_DIFFERENT_REPL_EPOCHS}
 
14740
 
 
14741
//
 
14742
// MessageId: ERROR_DS_DRS_EXTENSIONS_CHANGED
 
14743
//
 
14744
// MessageText:
 
14745
//
 
14746
//  The directory service binding must be renegotiated due to a change in the server
 
14747
//  extensions information.
 
14748
//
 
14749
  ERROR_DS_DRS_EXTENSIONS_CHANGED = DWORD(8594);
 
14750
  {$EXTERNALSYM ERROR_DS_DRS_EXTENSIONS_CHANGED}
 
14751
 
 
14752
//
 
14753
// MessageId: ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR
 
14754
//
 
14755
// MessageText:
 
14756
//
 
14757
//  Operation not allowed on a disabled cross ref.
 
14758
//
 
14759
  ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR = DWORD(8595);
 
14760
  {$EXTERNALSYM ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR}
 
14761
 
 
14762
//
 
14763
// MessageId: ERROR_DS_NO_MSDS_INTID
 
14764
//
 
14765
// MessageText:
 
14766
//
 
14767
//  Schema update failed: No values for msDS-IntId are available.
 
14768
//
 
14769
  ERROR_DS_NO_MSDS_INTID = DWORD(8596);
 
14770
  {$EXTERNALSYM ERROR_DS_NO_MSDS_INTID}
 
14771
 
 
14772
//
 
14773
// MessageId: ERROR_DS_DUP_MSDS_INTID
 
14774
//
 
14775
// MessageText:
 
14776
//
 
14777
//  Schema update failed: Duplicate msDS-INtId. Retry the operation.
 
14778
//
 
14779
  ERROR_DS_DUP_MSDS_INTID = DWORD(8597);
 
14780
  {$EXTERNALSYM ERROR_DS_DUP_MSDS_INTID}
 
14781
 
 
14782
//
 
14783
// MessageId: ERROR_DS_EXISTS_IN_RDNATTID
 
14784
//
 
14785
// MessageText:
 
14786
//
 
14787
//  Schema deletion failed: attribute is used in rDNAttID.
 
14788
//
 
14789
  ERROR_DS_EXISTS_IN_RDNATTID = DWORD(8598);
 
14790
  {$EXTERNALSYM ERROR_DS_EXISTS_IN_RDNATTID}
 
14791
 
 
14792
//
 
14793
// MessageId: ERROR_DS_AUTHORIZATION_FAILED
 
14794
//
 
14795
// MessageText:
 
14796
//
 
14797
//  The directory service failed to authorize the request.
 
14798
//
 
14799
  ERROR_DS_AUTHORIZATION_FAILED = DWORD(8599);
 
14800
  {$EXTERNALSYM ERROR_DS_AUTHORIZATION_FAILED}
 
14801
 
 
14802
//
 
14803
// MessageId: ERROR_DS_INVALID_SCRIPT
 
14804
//
 
14805
// MessageText:
 
14806
//
 
14807
//  The Directory Service cannot process the script because it is invalid.
 
14808
//
 
14809
  ERROR_DS_INVALID_SCRIPT = DWORD(8600);
 
14810
  {$EXTERNALSYM ERROR_DS_INVALID_SCRIPT}
 
14811
 
 
14812
//
 
14813
// MessageId: ERROR_DS_REMOTE_CROSSREF_OP_FAILED
 
14814
//
 
14815
// MessageText:
 
14816
//
 
14817
//  The remote create cross reference operation failed on the Domain Naming Master FSMO.  The operation's error is in the extended data.
 
14818
//
 
14819
  ERROR_DS_REMOTE_CROSSREF_OP_FAILED = DWORD(8601);
 
14820
  {$EXTERNALSYM ERROR_DS_REMOTE_CROSSREF_OP_FAILED}
 
14821
 
 
14822
//
 
14823
// MessageId: ERROR_DS_CROSS_REF_BUSY
 
14824
//
 
14825
// MessageText:
 
14826
//
 
14827
//  A cross reference is in use locally with the same name.
 
14828
//
 
14829
  ERROR_DS_CROSS_REF_BUSY = DWORD(8602);
 
14830
  {$EXTERNALSYM ERROR_DS_CROSS_REF_BUSY}
 
14831
 
 
14832
//
 
14833
// MessageId: ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN
 
14834
//
 
14835
// MessageText:
 
14836
//
 
14837
//  The DS cannot derive a service principal name (SPN) with which to mutually authenticate the target server because the server's domain has been deleted from the forest.
 
14838
//
 
14839
  ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN = DWORD(8603);
 
14840
  {$EXTERNALSYM ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN}
 
14841
 
 
14842
//
 
14843
// MessageId: ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC
 
14844
//
 
14845
// MessageText:
 
14846
//
 
14847
//  Writeable NCs prevent this DC from demoting.
 
14848
//
 
14849
  ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC = DWORD(8604);
 
14850
  {$EXTERNALSYM ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC}
 
14851
 
 
14852
//
 
14853
// MessageId: ERROR_DS_DUPLICATE_ID_FOUND
 
14854
//
 
14855
// MessageText:
 
14856
//
 
14857
//  The requested object has a non-unique identifier and cannot be retrieved.
 
14858
//
 
14859
  ERROR_DS_DUPLICATE_ID_FOUND = DWORD(8605);
 
14860
  {$EXTERNALSYM ERROR_DS_DUPLICATE_ID_FOUND}
 
14861
 
 
14862
//
 
14863
// MessageId: ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT
 
14864
//
 
14865
// MessageText:
 
14866
//
 
14867
//  Insufficient attributes were given to create an object.  This object may not exist because it may have been deleted and already garbage collected.
 
14868
//
 
14869
  ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT = DWORD(8606);
 
14870
  {$EXTERNALSYM ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT}
 
14871
 
 
14872
//
 
14873
// MessageId: ERROR_DS_GROUP_CONVERSION_ERROR
 
14874
//
 
14875
// MessageText:
 
14876
//
 
14877
//  The group cannot be converted due to attribute restrictions on the requested group type.
 
14878
//
 
14879
  ERROR_DS_GROUP_CONVERSION_ERROR = DWORD(8607);
 
14880
  {$EXTERNALSYM ERROR_DS_GROUP_CONVERSION_ERROR}
 
14881
 
 
14882
//
 
14883
// MessageId: ERROR_DS_CANT_MOVE_APP_BASIC_GROUP
 
14884
//
 
14885
// MessageText:
 
14886
//
 
14887
//  Cross-domain move of non-empty basic application groups is not allowed.
 
14888
//
 
14889
  ERROR_DS_CANT_MOVE_APP_BASIC_GROUP = DWORD(8608);
 
14890
  {$EXTERNALSYM ERROR_DS_CANT_MOVE_APP_BASIC_GROUP}
 
14891
 
 
14892
//
 
14893
// MessageId: ERROR_DS_CANT_MOVE_APP_QUERY_GROUP
 
14894
//
 
14895
// MessageText:
 
14896
//
 
14897
//  Cross-domain move of non-empty query based application groups is not allowed.
 
14898
//
 
14899
  ERROR_DS_CANT_MOVE_APP_QUERY_GROUP = DWORD(8609);
 
14900
  {$EXTERNALSYM ERROR_DS_CANT_MOVE_APP_QUERY_GROUP}
 
14901
 
 
14902
//
 
14903
// MessageId: ERROR_DS_ROLE_NOT_VERIFIED
 
14904
//
 
14905
// MessageText:
 
14906
//
 
14907
//  The FSMO role ownership could not be verified because its directory partition has not replicated successfully with atleast one replication partner. 
 
14908
//
 
14909
  ERROR_DS_ROLE_NOT_VERIFIED = DWORD(8610);
 
14910
  {$EXTERNALSYM ERROR_DS_ROLE_NOT_VERIFIED}
 
14911
 
 
14912
//
 
14913
// MessageId: ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL
 
14914
//
 
14915
// MessageText:
 
14916
//
 
14917
//  The target container for a redirection of a well known object container cannot already be a special container.
 
14918
//
 
14919
  ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL = DWORD(8611);
 
14920
  {$EXTERNALSYM ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL}
 
14921
 
 
14922
//
 
14923
// MessageId: ERROR_DS_DOMAIN_RENAME_IN_PROGRESS
 
14924
//
 
14925
// MessageText:
 
14926
//
 
14927
//  The Directory Service cannot perform the requested operation because a domain rename operation is in progress.
 
14928
//
 
14929
  ERROR_DS_DOMAIN_RENAME_IN_PROGRESS = DWORD(8612);
 
14930
  {$EXTERNALSYM ERROR_DS_DOMAIN_RENAME_IN_PROGRESS}
 
14931
 
 
14932
//
 
14933
// MessageId: ERROR_DS_EXISTING_AD_CHILD_NC
 
14934
//
 
14935
// MessageText:
 
14936
//
 
14937
//  The Active Directory detected an Active Directory child partition below the
 
14938
//  requested new partition name.  The Active Directory's partition heiarchy must
 
14939
//  be created in a top down method.
 
14940
//
 
14941
  ERROR_DS_EXISTING_AD_CHILD_NC = DWORD(8613);
 
14942
  {$EXTERNALSYM ERROR_DS_EXISTING_AD_CHILD_NC}
 
14943
 
 
14944
//
 
14945
// MessageId: ERROR_DS_REPL_LIFETIME_EXCEEDED
 
14946
//
 
14947
// MessageText:
 
14948
//
 
14949
//  The Active Directory cannot replicate with this server because the time since the last replication with this server has exceeded the tombstone lifetime.
 
14950
//
 
14951
  ERROR_DS_REPL_LIFETIME_EXCEEDED = DWORD(8614);
 
14952
  {$EXTERNALSYM ERROR_DS_REPL_LIFETIME_EXCEEDED}
 
14953
 
 
14954
//
 
14955
// MessageId: ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER
 
14956
//
 
14957
// MessageText:
 
14958
//
 
14959
//  The requested operation is not allowed on an object under the system container.
 
14960
//
 
14961
  ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER = DWORD(8615);
 
14962
  {$EXTERNALSYM ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER}
 
14963
 
 
14964
//
 
14965
// MessageId: ERROR_DS_LDAP_SEND_QUEUE_FULL
 
14966
//
 
14967
// MessageText:
 
14968
//
 
14969
//  The LDAP servers network send queue has filled up because the client is not
 
14970
//  processing the results of it's requests fast enough.  No more requests will
 
14971
//  be processed until the client catches up.  If the client does not catch up
 
14972
//  then it will be disconnected.
 
14973
//
 
14974
  ERROR_DS_LDAP_SEND_QUEUE_FULL = 8616;
 
14975
  {$EXTERNALSYM ERROR_DS_LDAP_SEND_QUEUE_FULL}
 
14976
 
 
14977
//
 
14978
// MessageId: ERROR_DS_DRA_OUT_SCHEDULE_WINDOW
 
14979
//
 
14980
// MessageText:
 
14981
//
 
14982
//  The scheduled replication did not take place because the system was too busy to execute the request within the schedule window.  The replication queue is overloaded. Consider reducing the number of partners or decreasing the scheduled replication frequency.
 
14983
//
 
14984
  ERROR_DS_DRA_OUT_SCHEDULE_WINDOW = DWORD(8617);
 
14985
  {$EXTERNALSYM ERROR_DS_DRA_OUT_SCHEDULE_WINDOW}
 
14986
 
 
14987
///////////////////////////////////////////////////
 
14988
//                                                /
 
14989
//     End of Active Directory Error Codes        /
 
14990
//                                                /
 
14991
//                  8000 to  8999                 /
 
14992
///////////////////////////////////////////////////
 
14993
 
 
14994
///////////////////////////////////////////////////
 
14995
//                                               //
 
14996
//                  DNS Error Codes              //
 
14997
//                                               //
 
14998
//                   9000 to 9999                //
 
14999
///////////////////////////////////////////////////
 
15000
 
 
15001
// =============================
 
15002
// Facility DNS Error Messages
 
15003
// =============================
 
15004
 
 
15005
//
 
15006
//  DNS response codes.
 
15007
//
 
15008
 
 
15009
  DNS_ERROR_RESPONSE_CODES_BASE = 9000;
 
15010
  {$EXTERNALSYM DNS_ERROR_RESPONSE_CODES_BASE}
 
15011
 
 
15012
  DNS_ERROR_RCODE_NO_ERROR = NO_ERROR;
 
15013
  {$EXTERNALSYM DNS_ERROR_RCODE_NO_ERROR}
 
15014
 
 
15015
  DNS_ERROR_MASK = $00002328;  // 9000 or DNS_ERROR_RESPONSE_CODES_BASE
 
15016
  {$EXTERNALSYM DNS_ERROR_MASK}
 
15017
 
 
15018
// DNS_ERROR_RCODE_FORMAT_ERROR          0x00002329
 
15019
//
 
15020
// MessageId: DNS_ERROR_RCODE_FORMAT_ERROR
 
15021
//
 
15022
// MessageText:
 
15023
//
 
15024
//  DNS server unable to interpret format.
 
15025
//
 
15026
  DNS_ERROR_RCODE_FORMAT_ERROR = DWORD(9001);
 
15027
  {$EXTERNALSYM DNS_ERROR_RCODE_FORMAT_ERROR}
 
15028
 
 
15029
// DNS_ERROR_RCODE_SERVER_FAILURE        0x0000232a
 
15030
//
 
15031
// MessageId: DNS_ERROR_RCODE_SERVER_FAILURE
 
15032
//
 
15033
// MessageText:
 
15034
//
 
15035
//  DNS server failure.
 
15036
//
 
15037
  DNS_ERROR_RCODE_SERVER_FAILURE = DWORD(9002);
 
15038
  {$EXTERNALSYM DNS_ERROR_RCODE_SERVER_FAILURE}
 
15039
 
 
15040
// DNS_ERROR_RCODE_NAME_ERROR            0x0000232b
 
15041
//
 
15042
// MessageId: DNS_ERROR_RCODE_NAME_ERROR
 
15043
//
 
15044
// MessageText:
 
15045
//
 
15046
//  DNS name does not exist.
 
15047
//
 
15048
  DNS_ERROR_RCODE_NAME_ERROR = DWORD(9003);
 
15049
  {$EXTERNALSYM DNS_ERROR_RCODE_NAME_ERROR}
 
15050
 
 
15051
// DNS_ERROR_RCODE_NOT_IMPLEMENTED       0x0000232c
 
15052
//
 
15053
// MessageId: DNS_ERROR_RCODE_NOT_IMPLEMENTED
 
15054
//
 
15055
// MessageText:
 
15056
//
 
15057
//  DNS request not supported by name server.
 
15058
//
 
15059
  DNS_ERROR_RCODE_NOT_IMPLEMENTED = DWORD(9004);
 
15060
  {$EXTERNALSYM DNS_ERROR_RCODE_NOT_IMPLEMENTED}
 
15061
 
 
15062
// DNS_ERROR_RCODE_REFUSED               0x0000232d
 
15063
//
 
15064
// MessageId: DNS_ERROR_RCODE_REFUSED
 
15065
//
 
15066
// MessageText:
 
15067
//
 
15068
//  DNS operation refused.
 
15069
//
 
15070
  DNS_ERROR_RCODE_REFUSED = DWORD(9005);
 
15071
  {$EXTERNALSYM DNS_ERROR_RCODE_REFUSED}
 
15072
 
 
15073
// DNS_ERROR_RCODE_YXDOMAIN              0x0000232e
 
15074
//
 
15075
// MessageId: DNS_ERROR_RCODE_YXDOMAIN
 
15076
//
 
15077
// MessageText:
 
15078
//
 
15079
//  DNS name that ought not exist, does exist.
 
15080
//
 
15081
  DNS_ERROR_RCODE_YXDOMAIN = DWORD(9006);
 
15082
  {$EXTERNALSYM DNS_ERROR_RCODE_YXDOMAIN}
 
15083
 
 
15084
// DNS_ERROR_RCODE_YXRRSET               0x0000232f
 
15085
//
 
15086
// MessageId: DNS_ERROR_RCODE_YXRRSET
 
15087
//
 
15088
// MessageText:
 
15089
//
 
15090
//  DNS RR set that ought not exist, does exist.
 
15091
//
 
15092
  DNS_ERROR_RCODE_YXRRSET = DWORD(9007);
 
15093
  {$EXTERNALSYM DNS_ERROR_RCODE_YXRRSET}
 
15094
 
 
15095
// DNS_ERROR_RCODE_NXRRSET               0x00002330
 
15096
//
 
15097
// MessageId: DNS_ERROR_RCODE_NXRRSET
 
15098
//
 
15099
// MessageText:
 
15100
//
 
15101
//  DNS RR set that ought to exist, does not exist.
 
15102
//
 
15103
  DNS_ERROR_RCODE_NXRRSET = DWORD(9008);
 
15104
  {$EXTERNALSYM DNS_ERROR_RCODE_NXRRSET}
 
15105
 
 
15106
// DNS_ERROR_RCODE_NOTAUTH               0x00002331
 
15107
//
 
15108
// MessageId: DNS_ERROR_RCODE_NOTAUTH
 
15109
//
 
15110
// MessageText:
 
15111
//
 
15112
//  DNS server not authoritative for zone.
 
15113
//
 
15114
  DNS_ERROR_RCODE_NOTAUTH = DWORD(9009);
 
15115
  {$EXTERNALSYM DNS_ERROR_RCODE_NOTAUTH}
 
15116
 
 
15117
// DNS_ERROR_RCODE_NOTZONE               0x00002332
 
15118
//
 
15119
// MessageId: DNS_ERROR_RCODE_NOTZONE
 
15120
//
 
15121
// MessageText:
 
15122
//
 
15123
//  DNS name in update or prereq is not in zone.
 
15124
//
 
15125
  DNS_ERROR_RCODE_NOTZONE = DWORD(9010);
 
15126
  {$EXTERNALSYM DNS_ERROR_RCODE_NOTZONE}
 
15127
 
 
15128
// DNS_ERROR_RCODE_BADSIG                0x00002338
 
15129
//
 
15130
// MessageId: DNS_ERROR_RCODE_BADSIG
 
15131
//
 
15132
// MessageText:
 
15133
//
 
15134
//  DNS signature failed to verify.
 
15135
//
 
15136
  DNS_ERROR_RCODE_BADSIG = DWORD(9016);
 
15137
  {$EXTERNALSYM DNS_ERROR_RCODE_BADSIG}
 
15138
 
 
15139
// DNS_ERROR_RCODE_BADKEY                0x00002339
 
15140
//
 
15141
// MessageId: DNS_ERROR_RCODE_BADKEY
 
15142
//
 
15143
// MessageText:
 
15144
//
 
15145
//  DNS bad key.
 
15146
//
 
15147
  DNS_ERROR_RCODE_BADKEY = DWORD(9017);
 
15148
  {$EXTERNALSYM DNS_ERROR_RCODE_BADKEY}
 
15149
 
 
15150
// DNS_ERROR_RCODE_BADTIME               0x0000233a
 
15151
//
 
15152
// MessageId: DNS_ERROR_RCODE_BADTIME
 
15153
//
 
15154
// MessageText:
 
15155
//
 
15156
//  DNS signature validity expired.
 
15157
//
 
15158
  DNS_ERROR_RCODE_BADTIME = DWORD(9018);
 
15159
  {$EXTERNALSYM DNS_ERROR_RCODE_BADTIME}
 
15160
 
 
15161
  DNS_ERROR_RCODE_LAST = DNS_ERROR_RCODE_BADTIME;
 
15162
  {$EXTERNALSYM DNS_ERROR_RCODE_LAST}
 
15163
 
 
15164
//
 
15165
//  Packet format
 
15166
//
 
15167
 
 
15168
  DNS_ERROR_PACKET_FMT_BASE = 9500;
 
15169
  {$EXTERNALSYM DNS_ERROR_PACKET_FMT_BASE}
 
15170
 
 
15171
// DNS_INFO_NO_RECORDS                   0x0000251d
 
15172
//
 
15173
// MessageId: DNS_INFO_NO_RECORDS
 
15174
//
 
15175
// MessageText:
 
15176
//
 
15177
//  No records found for given DNS query.
 
15178
//
 
15179
  DNS_INFO_NO_RECORDS = DWORD(9501);
 
15180
  {$EXTERNALSYM DNS_INFO_NO_RECORDS}
 
15181
 
 
15182
// DNS_ERROR_BAD_PACKET                  0x0000251e
 
15183
//
 
15184
// MessageId: DNS_ERROR_BAD_PACKET
 
15185
//
 
15186
// MessageText:
 
15187
//
 
15188
//  Bad DNS packet.
 
15189
//
 
15190
  DNS_ERROR_BAD_PACKET = DWORD(9502);
 
15191
  {$EXTERNALSYM DNS_ERROR_BAD_PACKET}
 
15192
 
 
15193
// DNS_ERROR_NO_PACKET                   0x0000251f
 
15194
//
 
15195
// MessageId: DNS_ERROR_NO_PACKET
 
15196
//
 
15197
// MessageText:
 
15198
//
 
15199
//  No DNS packet.
 
15200
//
 
15201
  DNS_ERROR_NO_PACKET = DWORD(9503);
 
15202
  {$EXTERNALSYM DNS_ERROR_NO_PACKET}
 
15203
 
 
15204
// DNS_ERROR_RCODE                       0x00002520
 
15205
//
 
15206
// MessageId: DNS_ERROR_RCODE
 
15207
//
 
15208
// MessageText:
 
15209
//
 
15210
//  DNS error, check rcode.
 
15211
//
 
15212
  DNS_ERROR_RCODE = DWORD(9504);
 
15213
  {$EXTERNALSYM DNS_ERROR_RCODE}
 
15214
 
 
15215
// DNS_ERROR_UNSECURE_PACKET             0x00002521
 
15216
//
 
15217
// MessageId: DNS_ERROR_UNSECURE_PACKET
 
15218
//
 
15219
// MessageText:
 
15220
//
 
15221
//  Unsecured DNS packet.
 
15222
//
 
15223
  DNS_ERROR_UNSECURE_PACKET = DWORD(9505);
 
15224
  {$EXTERNALSYM DNS_ERROR_UNSECURE_PACKET}
 
15225
 
 
15226
  DNS_STATUS_PACKET_UNSECURE = DNS_ERROR_UNSECURE_PACKET;
 
15227
  {$EXTERNALSYM DNS_STATUS_PACKET_UNSECURE}
 
15228
 
 
15229
//
 
15230
//  General API errors
 
15231
//
 
15232
 
 
15233
  DNS_ERROR_NO_MEMORY = ERROR_OUTOFMEMORY;
 
15234
  {$EXTERNALSYM DNS_ERROR_NO_MEMORY}
 
15235
  DNS_ERROR_INVALID_NAME = ERROR_INVALID_NAME;
 
15236
  {$EXTERNALSYM DNS_ERROR_INVALID_NAME}
 
15237
  DNS_ERROR_INVALID_DATA = ERROR_INVALID_DATA;
 
15238
  {$EXTERNALSYM DNS_ERROR_INVALID_DATA}
 
15239
 
 
15240
  DNS_ERROR_GENERAL_API_BASE = 9550;
 
15241
  {$EXTERNALSYM DNS_ERROR_GENERAL_API_BASE}
 
15242
 
 
15243
// DNS_ERROR_INVALID_TYPE                0x0000254f
 
15244
//
 
15245
// MessageId: DNS_ERROR_INVALID_TYPE
 
15246
//
 
15247
// MessageText:
 
15248
//
 
15249
//  Invalid DNS type.
 
15250
//
 
15251
  DNS_ERROR_INVALID_TYPE = DWORD(9551);
 
15252
  {$EXTERNALSYM DNS_ERROR_INVALID_TYPE}
 
15253
 
 
15254
// DNS_ERROR_INVALID_IP_ADDRESS          0x00002550
 
15255
//
 
15256
// MessageId: DNS_ERROR_INVALID_IP_ADDRESS
 
15257
//
 
15258
// MessageText:
 
15259
//
 
15260
//  Invalid IP address.
 
15261
//
 
15262
  DNS_ERROR_INVALID_IP_ADDRESS = DWORD(9552);
 
15263
  {$EXTERNALSYM DNS_ERROR_INVALID_IP_ADDRESS}
 
15264
 
 
15265
// DNS_ERROR_INVALID_PROPERTY            0x00002551
 
15266
//
 
15267
// MessageId: DNS_ERROR_INVALID_PROPERTY
 
15268
//
 
15269
// MessageText:
 
15270
//
 
15271
//  Invalid property.
 
15272
//
 
15273
  DNS_ERROR_INVALID_PROPERTY = DWORD(9553);
 
15274
  {$EXTERNALSYM DNS_ERROR_INVALID_PROPERTY}
 
15275
 
 
15276
// DNS_ERROR_TRY_AGAIN_LATER             0x00002552
 
15277
//
 
15278
// MessageId: DNS_ERROR_TRY_AGAIN_LATER
 
15279
//
 
15280
// MessageText:
 
15281
//
 
15282
//  Try DNS operation again later.
 
15283
//
 
15284
  DNS_ERROR_TRY_AGAIN_LATER = DWORD(9554);
 
15285
  {$EXTERNALSYM DNS_ERROR_TRY_AGAIN_LATER}
 
15286
 
 
15287
// DNS_ERROR_NOT_UNIQUE                  0x00002553
 
15288
//
 
15289
// MessageId: DNS_ERROR_NOT_UNIQUE
 
15290
//
 
15291
// MessageText:
 
15292
//
 
15293
//  Record for given name and type is not unique.
 
15294
//
 
15295
  DNS_ERROR_NOT_UNIQUE = DWORD(9555);
 
15296
  {$EXTERNALSYM DNS_ERROR_NOT_UNIQUE}
 
15297
 
 
15298
// DNS_ERROR_NON_RFC_NAME                0x00002554
 
15299
//
 
15300
// MessageId: DNS_ERROR_NON_RFC_NAME
 
15301
//
 
15302
// MessageText:
 
15303
//
 
15304
//  DNS name does not comply with RFC specifications.
 
15305
//
 
15306
  DNS_ERROR_NON_RFC_NAME = DWORD(9556);
 
15307
  {$EXTERNALSYM DNS_ERROR_NON_RFC_NAME}
 
15308
 
 
15309
// DNS_STATUS_FQDN                       0x00002555
 
15310
//
 
15311
// MessageId: DNS_STATUS_FQDN
 
15312
//
 
15313
// MessageText:
 
15314
//
 
15315
//  DNS name is a fully-qualified DNS name.
 
15316
//
 
15317
  DNS_STATUS_FQDN = DWORD(9557);
 
15318
  {$EXTERNALSYM DNS_STATUS_FQDN}
 
15319
 
 
15320
// DNS_STATUS_DOTTED_NAME                0x00002556
 
15321
//
 
15322
// MessageId: DNS_STATUS_DOTTED_NAME
 
15323
//
 
15324
// MessageText:
 
15325
//
 
15326
//  DNS name is dotted (multi-label).
 
15327
//
 
15328
  DNS_STATUS_DOTTED_NAME = DWORD(9558);
 
15329
  {$EXTERNALSYM DNS_STATUS_DOTTED_NAME}
 
15330
 
 
15331
// DNS_STATUS_SINGLE_PART_NAME           0x00002557
 
15332
//
 
15333
// MessageId: DNS_STATUS_SINGLE_PART_NAME
 
15334
//
 
15335
// MessageText:
 
15336
//
 
15337
//  DNS name is a single-part name.
 
15338
//
 
15339
  DNS_STATUS_SINGLE_PART_NAME = DWORD(9559);
 
15340
  {$EXTERNALSYM DNS_STATUS_SINGLE_PART_NAME}
 
15341
 
 
15342
// DNS_ERROR_INVALID_NAME_CHAR           0x00002558
 
15343
//
 
15344
// MessageId: DNS_ERROR_INVALID_NAME_CHAR
 
15345
//
 
15346
// MessageText:
 
15347
//
 
15348
//  DNS name contains an invalid character.
 
15349
//
 
15350
  DNS_ERROR_INVALID_NAME_CHAR = DWORD(9560);
 
15351
  {$EXTERNALSYM DNS_ERROR_INVALID_NAME_CHAR}
 
15352
 
 
15353
// DNS_ERROR_NUMERIC_NAME                0x00002559
 
15354
//
 
15355
// MessageId: DNS_ERROR_NUMERIC_NAME
 
15356
//
 
15357
// MessageText:
 
15358
//
 
15359
//  DNS name is entirely numeric.
 
15360
//
 
15361
  DNS_ERROR_NUMERIC_NAME = DWORD(9561);
 
15362
  {$EXTERNALSYM DNS_ERROR_NUMERIC_NAME}
 
15363
 
 
15364
// DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER  0x0000255A
 
15365
//
 
15366
// MessageId: DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER
 
15367
//
 
15368
// MessageText:
 
15369
//
 
15370
//  The operation requested is not permitted on a DNS root server.
 
15371
//
 
15372
  DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER = DWORD(9562);
 
15373
  {$EXTERNALSYM DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER}
 
15374
 
 
15375
// DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION  0x0000255B
 
15376
//
 
15377
// MessageId: DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION
 
15378
//
 
15379
// MessageText:
 
15380
//
 
15381
//  The record could not be created because this part of the DNS namespace has
 
15382
//  been delegated to another server.
 
15383
//
 
15384
  DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION = DWORD(9563);
 
15385
  {$EXTERNALSYM DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION}
 
15386
 
 
15387
// DNS_ERROR_CANNOT_FIND_ROOT_HINTS  0x0000255C
 
15388
//
 
15389
// MessageId: DNS_ERROR_CANNOT_FIND_ROOT_HINTS
 
15390
//
 
15391
// MessageText:
 
15392
//
 
15393
//  The DNS server could not find a set of root hints.
 
15394
//
 
15395
  DNS_ERROR_CANNOT_FIND_ROOT_HINTS = DWORD(9564);
 
15396
  {$EXTERNALSYM DNS_ERROR_CANNOT_FIND_ROOT_HINTS}
 
15397
 
 
15398
// DNS_ERROR_INCONSISTENT_ROOT_HINTS  0x0000255D
 
15399
//
 
15400
// MessageId: DNS_ERROR_INCONSISTENT_ROOT_HINTS
 
15401
//
 
15402
// MessageText:
 
15403
//
 
15404
//  The DNS server found root hints but they were not consistent across
 
15405
//  all adapters.
 
15406
//
 
15407
  DNS_ERROR_INCONSISTENT_ROOT_HINTS = DWORD(9565);
 
15408
  {$EXTERNALSYM DNS_ERROR_INCONSISTENT_ROOT_HINTS}
 
15409
 
 
15410
//
 
15411
//  Zone errors
 
15412
//
 
15413
 
 
15414
  DNS_ERROR_ZONE_BASE = 9600;
 
15415
  {$EXTERNALSYM DNS_ERROR_ZONE_BASE}
 
15416
 
 
15417
// DNS_ERROR_ZONE_DOES_NOT_EXIST         0x00002581
 
15418
//
 
15419
// MessageId: DNS_ERROR_ZONE_DOES_NOT_EXIST
 
15420
//
 
15421
// MessageText:
 
15422
//
 
15423
//  DNS zone does not exist.
 
15424
//
 
15425
  DNS_ERROR_ZONE_DOES_NOT_EXIST = DWORD(9601);
 
15426
  {$EXTERNALSYM DNS_ERROR_ZONE_DOES_NOT_EXIST}
 
15427
 
 
15428
// DNS_ERROR_NO_ZONE_INFO                0x00002582
 
15429
//
 
15430
// MessageId: DNS_ERROR_NO_ZONE_INFO
 
15431
//
 
15432
// MessageText:
 
15433
//
 
15434
//  DNS zone information not available.
 
15435
//
 
15436
  DNS_ERROR_NO_ZONE_INFO = DWORD(9602);
 
15437
  {$EXTERNALSYM DNS_ERROR_NO_ZONE_INFO}
 
15438
 
 
15439
// DNS_ERROR_INVALID_ZONE_OPERATION      0x00002583
 
15440
//
 
15441
// MessageId: DNS_ERROR_INVALID_ZONE_OPERATION
 
15442
//
 
15443
// MessageText:
 
15444
//
 
15445
//  Invalid operation for DNS zone.
 
15446
//
 
15447
  DNS_ERROR_INVALID_ZONE_OPERATION = DWORD(9603);
 
15448
  {$EXTERNALSYM DNS_ERROR_INVALID_ZONE_OPERATION}
 
15449
 
 
15450
// DNS_ERROR_ZONE_CONFIGURATION_ERROR    0x00002584
 
15451
//
 
15452
// MessageId: DNS_ERROR_ZONE_CONFIGURATION_ERROR
 
15453
//
 
15454
// MessageText:
 
15455
//
 
15456
//  Invalid DNS zone configuration.
 
15457
//
 
15458
  DNS_ERROR_ZONE_CONFIGURATION_ERROR = DWORD(9604);
 
15459
  {$EXTERNALSYM DNS_ERROR_ZONE_CONFIGURATION_ERROR}
 
15460
 
 
15461
// DNS_ERROR_ZONE_HAS_NO_SOA_RECORD      0x00002585
 
15462
//
 
15463
// MessageId: DNS_ERROR_ZONE_HAS_NO_SOA_RECORD
 
15464
//
 
15465
// MessageText:
 
15466
//
 
15467
//  DNS zone has no start of authority (SOA) record.
 
15468
//
 
15469
  DNS_ERROR_ZONE_HAS_NO_SOA_RECORD = DWORD(9605);
 
15470
  {$EXTERNALSYM DNS_ERROR_ZONE_HAS_NO_SOA_RECORD}
 
15471
 
 
15472
// DNS_ERROR_ZONE_HAS_NO_NS_RECORDS      0x00002586
 
15473
//
 
15474
// MessageId: DNS_ERROR_ZONE_HAS_NO_NS_RECORDS
 
15475
//
 
15476
// MessageText:
 
15477
//
 
15478
//  DNS zone has no Name Server (NS) record.
 
15479
//
 
15480
  DNS_ERROR_ZONE_HAS_NO_NS_RECORDS = DWORD(9606);
 
15481
  {$EXTERNALSYM DNS_ERROR_ZONE_HAS_NO_NS_RECORDS}
 
15482
 
 
15483
// DNS_ERROR_ZONE_LOCKED                 0x00002587
 
15484
//
 
15485
// MessageId: DNS_ERROR_ZONE_LOCKED
 
15486
//
 
15487
// MessageText:
 
15488
//
 
15489
//  DNS zone is locked.
 
15490
//
 
15491
  DNS_ERROR_ZONE_LOCKED = DWORD(9607);
 
15492
  {$EXTERNALSYM DNS_ERROR_ZONE_LOCKED}
 
15493
 
 
15494
// DNS_ERROR_ZONE_CREATION_FAILED        0x00002588
 
15495
//
 
15496
// MessageId: DNS_ERROR_ZONE_CREATION_FAILED
 
15497
//
 
15498
// MessageText:
 
15499
//
 
15500
//  DNS zone creation failed.
 
15501
//
 
15502
  DNS_ERROR_ZONE_CREATION_FAILED = DWORD(9608);
 
15503
  {$EXTERNALSYM DNS_ERROR_ZONE_CREATION_FAILED}
 
15504
 
 
15505
// DNS_ERROR_ZONE_ALREADY_EXISTS         0x00002589
 
15506
//
 
15507
// MessageId: DNS_ERROR_ZONE_ALREADY_EXISTS
 
15508
//
 
15509
// MessageText:
 
15510
//
 
15511
//  DNS zone already exists.
 
15512
//
 
15513
  DNS_ERROR_ZONE_ALREADY_EXISTS = DWORD(9609);
 
15514
  {$EXTERNALSYM DNS_ERROR_ZONE_ALREADY_EXISTS}
 
15515
 
 
15516
// DNS_ERROR_AUTOZONE_ALREADY_EXISTS     0x0000258a
 
15517
//
 
15518
// MessageId: DNS_ERROR_AUTOZONE_ALREADY_EXISTS
 
15519
//
 
15520
// MessageText:
 
15521
//
 
15522
//  DNS automatic zone already exists.
 
15523
//
 
15524
  DNS_ERROR_AUTOZONE_ALREADY_EXISTS = DWORD(9610);
 
15525
  {$EXTERNALSYM DNS_ERROR_AUTOZONE_ALREADY_EXISTS}
 
15526
 
 
15527
// DNS_ERROR_INVALID_ZONE_TYPE           0x0000258b
 
15528
//
 
15529
// MessageId: DNS_ERROR_INVALID_ZONE_TYPE
 
15530
//
 
15531
// MessageText:
 
15532
//
 
15533
//  Invalid DNS zone type.
 
15534
//
 
15535
  DNS_ERROR_INVALID_ZONE_TYPE = DWORD(9611);
 
15536
  {$EXTERNALSYM DNS_ERROR_INVALID_ZONE_TYPE}
 
15537
 
 
15538
// DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP 0x0000258c
 
15539
//
 
15540
// MessageId: DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP
 
15541
//
 
15542
// MessageText:
 
15543
//
 
15544
//  Secondary DNS zone requires master IP address.
 
15545
//
 
15546
  DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP = DWORD(9612);
 
15547
  {$EXTERNALSYM DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP}
 
15548
 
 
15549
// DNS_ERROR_ZONE_NOT_SECONDARY          0x0000258d
 
15550
//
 
15551
// MessageId: DNS_ERROR_ZONE_NOT_SECONDARY
 
15552
//
 
15553
// MessageText:
 
15554
//
 
15555
//  DNS zone not secondary.
 
15556
//
 
15557
  DNS_ERROR_ZONE_NOT_SECONDARY = DWORD(9613);
 
15558
  {$EXTERNALSYM DNS_ERROR_ZONE_NOT_SECONDARY}
 
15559
 
 
15560
// DNS_ERROR_NEED_SECONDARY_ADDRESSES    0x0000258e
 
15561
//
 
15562
// MessageId: DNS_ERROR_NEED_SECONDARY_ADDRESSES
 
15563
//
 
15564
// MessageText:
 
15565
//
 
15566
//  Need secondary IP address.
 
15567
//
 
15568
  DNS_ERROR_NEED_SECONDARY_ADDRESSES = DWORD(9614);
 
15569
  {$EXTERNALSYM DNS_ERROR_NEED_SECONDARY_ADDRESSES}
 
15570
 
 
15571
// DNS_ERROR_WINS_INIT_FAILED            0x0000258f
 
15572
//
 
15573
// MessageId: DNS_ERROR_WINS_INIT_FAILED
 
15574
//
 
15575
// MessageText:
 
15576
//
 
15577
//  WINS initialization failed.
 
15578
//
 
15579
  DNS_ERROR_WINS_INIT_FAILED = DWORD(9615);
 
15580
  {$EXTERNALSYM DNS_ERROR_WINS_INIT_FAILED}
 
15581
 
 
15582
// DNS_ERROR_NEED_WINS_SERVERS           0x00002590
 
15583
//
 
15584
// MessageId: DNS_ERROR_NEED_WINS_SERVERS
 
15585
//
 
15586
// MessageText:
 
15587
//
 
15588
//  Need WINS servers.
 
15589
//
 
15590
  DNS_ERROR_NEED_WINS_SERVERS = DWORD(9616);
 
15591
  {$EXTERNALSYM DNS_ERROR_NEED_WINS_SERVERS}
 
15592
 
 
15593
// DNS_ERROR_NBSTAT_INIT_FAILED          0x00002591
 
15594
//
 
15595
// MessageId: DNS_ERROR_NBSTAT_INIT_FAILED
 
15596
//
 
15597
// MessageText:
 
15598
//
 
15599
//  NBTSTAT initialization call failed.
 
15600
//
 
15601
  DNS_ERROR_NBSTAT_INIT_FAILED = DWORD(9617);
 
15602
  {$EXTERNALSYM DNS_ERROR_NBSTAT_INIT_FAILED}
 
15603
 
 
15604
// DNS_ERROR_SOA_DELETE_INVALID          0x00002592
 
15605
//
 
15606
// MessageId: DNS_ERROR_SOA_DELETE_INVALID
 
15607
//
 
15608
// MessageText:
 
15609
//
 
15610
//  Invalid delete of start of authority (SOA)
 
15611
//
 
15612
  DNS_ERROR_SOA_DELETE_INVALID = DWORD(9618);
 
15613
  {$EXTERNALSYM DNS_ERROR_SOA_DELETE_INVALID}
 
15614
 
 
15615
// DNS_ERROR_FORWARDER_ALREADY_EXISTS    0x00002593
 
15616
//
 
15617
// MessageId: DNS_ERROR_FORWARDER_ALREADY_EXISTS
 
15618
//
 
15619
// MessageText:
 
15620
//
 
15621
//  A conditional forwarding zone already exists for that name.
 
15622
//
 
15623
  DNS_ERROR_FORWARDER_ALREADY_EXISTS = DWORD(9619);
 
15624
  {$EXTERNALSYM DNS_ERROR_FORWARDER_ALREADY_EXISTS}
 
15625
 
 
15626
// DNS_ERROR_ZONE_REQUIRES_MASTER_IP     0x00002594
 
15627
//
 
15628
// MessageId: DNS_ERROR_ZONE_REQUIRES_MASTER_IP
 
15629
//
 
15630
// MessageText:
 
15631
//
 
15632
//  This zone must be configured with one or more master DNS server IP addresses.
 
15633
//
 
15634
  DNS_ERROR_ZONE_REQUIRES_MASTER_IP = DWORD(9620);
 
15635
  {$EXTERNALSYM DNS_ERROR_ZONE_REQUIRES_MASTER_IP}
 
15636
 
 
15637
// DNS_ERROR_ZONE_IS_SHUTDOWN            0x00002595
 
15638
//
 
15639
// MessageId: DNS_ERROR_ZONE_IS_SHUTDOWN
 
15640
//
 
15641
// MessageText:
 
15642
//
 
15643
//  The operation cannot be performed because this zone is shutdown.
 
15644
//
 
15645
  DNS_ERROR_ZONE_IS_SHUTDOWN = DWORD(9621);
 
15646
  {$EXTERNALSYM DNS_ERROR_ZONE_IS_SHUTDOWN}
 
15647
 
 
15648
//
 
15649
//  Datafile errors
 
15650
//
 
15651
 
 
15652
  DNS_ERROR_DATAFILE_BASE = 9650;
 
15653
  {$EXTERNALSYM DNS_ERROR_DATAFILE_BASE}
 
15654
 
 
15655
// DNS                                   0x000025b3
 
15656
//
 
15657
// MessageId: DNS_ERROR_PRIMARY_REQUIRES_DATAFILE
 
15658
//
 
15659
// MessageText:
 
15660
//
 
15661
//  Primary DNS zone requires datafile.
 
15662
//
 
15663
  DNS_ERROR_PRIMARY_REQUIRES_DATAFILE = DWORD(9651);
 
15664
  {$EXTERNALSYM DNS_ERROR_PRIMARY_REQUIRES_DATAFILE}
 
15665
 
 
15666
// DNS                                   0x000025b4
 
15667
//
 
15668
// MessageId: DNS_ERROR_INVALID_DATAFILE_NAME
 
15669
//
 
15670
// MessageText:
 
15671
//
 
15672
//  Invalid datafile name for DNS zone.
 
15673
//
 
15674
  DNS_ERROR_INVALID_DATAFILE_NAME = DWORD(9652);
 
15675
  {$EXTERNALSYM DNS_ERROR_INVALID_DATAFILE_NAME}
 
15676
 
 
15677
// DNS                                   0x000025b5
 
15678
//
 
15679
// MessageId: DNS_ERROR_DATAFILE_OPEN_FAILURE
 
15680
//
 
15681
// MessageText:
 
15682
//
 
15683
//  Failed to open datafile for DNS zone.
 
15684
//
 
15685
  DNS_ERROR_DATAFILE_OPEN_FAILURE = DWORD(9653);
 
15686
  {$EXTERNALSYM DNS_ERROR_DATAFILE_OPEN_FAILURE}
 
15687
 
 
15688
// DNS                                   0x000025b6
 
15689
//
 
15690
// MessageId: DNS_ERROR_FILE_WRITEBACK_FAILED
 
15691
//
 
15692
// MessageText:
 
15693
//
 
15694
//  Failed to write datafile for DNS zone.
 
15695
//
 
15696
  DNS_ERROR_FILE_WRITEBACK_FAILED = DWORD(9654);
 
15697
  {$EXTERNALSYM DNS_ERROR_FILE_WRITEBACK_FAILED}
 
15698
 
 
15699
// DNS                                   0x000025b7
 
15700
//
 
15701
// MessageId: DNS_ERROR_DATAFILE_PARSING
 
15702
//
 
15703
// MessageText:
 
15704
//
 
15705
//  Failure while reading datafile for DNS zone.
 
15706
//
 
15707
  DNS_ERROR_DATAFILE_PARSING = DWORD(9655);
 
15708
  {$EXTERNALSYM DNS_ERROR_DATAFILE_PARSING}
 
15709
 
 
15710
//
 
15711
//  Database errors
 
15712
//
 
15713
 
 
15714
  DNS_ERROR_DATABASE_BASE = 9700;
 
15715
  {$EXTERNALSYM DNS_ERROR_DATABASE_BASE}
 
15716
 
 
15717
// DNS_ERROR_RECORD_DOES_NOT_EXIST       0x000025e5
 
15718
//
 
15719
// MessageId: DNS_ERROR_RECORD_DOES_NOT_EXIST
 
15720
//
 
15721
// MessageText:
 
15722
//
 
15723
//  DNS record does not exist.
 
15724
//
 
15725
  DNS_ERROR_RECORD_DOES_NOT_EXIST = DWORD(9701);
 
15726
  {$EXTERNALSYM DNS_ERROR_RECORD_DOES_NOT_EXIST}
 
15727
 
 
15728
// DNS_ERROR_RECORD_FORMAT               0x000025e6
 
15729
//
 
15730
// MessageId: DNS_ERROR_RECORD_FORMAT
 
15731
//
 
15732
// MessageText:
 
15733
//
 
15734
//  DNS record format error.
 
15735
//
 
15736
  DNS_ERROR_RECORD_FORMAT = DWORD(9702);
 
15737
  {$EXTERNALSYM DNS_ERROR_RECORD_FORMAT}
 
15738
 
 
15739
// DNS_ERROR_NODE_CREATION_FAILED        0x000025e7
 
15740
//
 
15741
// MessageId: DNS_ERROR_NODE_CREATION_FAILED
 
15742
//
 
15743
// MessageText:
 
15744
//
 
15745
//  Node creation failure in DNS.
 
15746
//
 
15747
  DNS_ERROR_NODE_CREATION_FAILED = DWORD(9703);
 
15748
  {$EXTERNALSYM DNS_ERROR_NODE_CREATION_FAILED}
 
15749
 
 
15750
// DNS_ERROR_UNKNOWN_RECORD_TYPE         0x000025e8
 
15751
//
 
15752
// MessageId: DNS_ERROR_UNKNOWN_RECORD_TYPE
 
15753
//
 
15754
// MessageText:
 
15755
//
 
15756
//  Unknown DNS record type.
 
15757
//
 
15758
  DNS_ERROR_UNKNOWN_RECORD_TYPE = DWORD(9704);
 
15759
  {$EXTERNALSYM DNS_ERROR_UNKNOWN_RECORD_TYPE}
 
15760
 
 
15761
// DNS_ERROR_RECORD_TIMED_OUT            0x000025e9
 
15762
//
 
15763
// MessageId: DNS_ERROR_RECORD_TIMED_OUT
 
15764
//
 
15765
// MessageText:
 
15766
//
 
15767
//  DNS record timed out.
 
15768
//
 
15769
  DNS_ERROR_RECORD_TIMED_OUT = DWORD(9705);
 
15770
  {$EXTERNALSYM DNS_ERROR_RECORD_TIMED_OUT}
 
15771
 
 
15772
// DNS_ERROR_NAME_NOT_IN_ZONE            0x000025ea
 
15773
//
 
15774
// MessageId: DNS_ERROR_NAME_NOT_IN_ZONE
 
15775
//
 
15776
// MessageText:
 
15777
//
 
15778
//  Name not in DNS zone.
 
15779
//
 
15780
  DNS_ERROR_NAME_NOT_IN_ZONE = DWORD(9706);
 
15781
  {$EXTERNALSYM DNS_ERROR_NAME_NOT_IN_ZONE}
 
15782
 
 
15783
// DNS_ERROR_CNAME_LOOP                  0x000025eb
 
15784
//
 
15785
// MessageId: DNS_ERROR_CNAME_LOOP
 
15786
//
 
15787
// MessageText:
 
15788
//
 
15789
//  CNAME loop detected.
 
15790
//
 
15791
  DNS_ERROR_CNAME_LOOP = DWORD(9707);
 
15792
  {$EXTERNALSYM DNS_ERROR_CNAME_LOOP}
 
15793
 
 
15794
// DNS_ERROR_NODE_IS_CNAME               0x000025ec
 
15795
//
 
15796
// MessageId: DNS_ERROR_NODE_IS_CNAME
 
15797
//
 
15798
// MessageText:
 
15799
//
 
15800
//  Node is a CNAME DNS record.
 
15801
//
 
15802
  DNS_ERROR_NODE_IS_CNAME = DWORD(9708);
 
15803
  {$EXTERNALSYM DNS_ERROR_NODE_IS_CNAME}
 
15804
 
 
15805
// DNS_ERROR_CNAME_COLLISION             0x000025ed
 
15806
//
 
15807
// MessageId: DNS_ERROR_CNAME_COLLISION
 
15808
//
 
15809
// MessageText:
 
15810
//
 
15811
//  A CNAME record already exists for given name.
 
15812
//
 
15813
  DNS_ERROR_CNAME_COLLISION = DWORD(9709);
 
15814
  {$EXTERNALSYM DNS_ERROR_CNAME_COLLISION}
 
15815
 
 
15816
// DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT    0x000025ee
 
15817
//
 
15818
// MessageId: DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT
 
15819
//
 
15820
// MessageText:
 
15821
//
 
15822
//  Record only at DNS zone root.
 
15823
//
 
15824
  DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT = DWORD(9710);
 
15825
  {$EXTERNALSYM DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT}
 
15826
 
 
15827
// DNS_ERROR_RECORD_ALREADY_EXISTS       0x000025ef
 
15828
//
 
15829
// MessageId: DNS_ERROR_RECORD_ALREADY_EXISTS
 
15830
//
 
15831
// MessageText:
 
15832
//
 
15833
//  DNS record already exists.
 
15834
//
 
15835
  DNS_ERROR_RECORD_ALREADY_EXISTS = DWORD(9711);
 
15836
  {$EXTERNALSYM DNS_ERROR_RECORD_ALREADY_EXISTS}
 
15837
 
 
15838
// DNS_ERROR_SECONDARY_DATA              0x000025f0
 
15839
//
 
15840
// MessageId: DNS_ERROR_SECONDARY_DATA
 
15841
//
 
15842
// MessageText:
 
15843
//
 
15844
//  Secondary DNS zone data error.
 
15845
//
 
15846
  DNS_ERROR_SECONDARY_DATA = DWORD(9712);
 
15847
  {$EXTERNALSYM DNS_ERROR_SECONDARY_DATA}
 
15848
 
 
15849
// DNS_ERROR_NO_CREATE_CACHE_DATA        0x000025f1
 
15850
//
 
15851
// MessageId: DNS_ERROR_NO_CREATE_CACHE_DATA
 
15852
//
 
15853
// MessageText:
 
15854
//
 
15855
//  Could not create DNS cache data.
 
15856
//
 
15857
  DNS_ERROR_NO_CREATE_CACHE_DATA = DWORD(9713);
 
15858
  {$EXTERNALSYM DNS_ERROR_NO_CREATE_CACHE_DATA}
 
15859
 
 
15860
// DNS_ERROR_NAME_DOES_NOT_EXIST         0x000025f2
 
15861
//
 
15862
// MessageId: DNS_ERROR_NAME_DOES_NOT_EXIST
 
15863
//
 
15864
// MessageText:
 
15865
//
 
15866
//  DNS name does not exist.
 
15867
//
 
15868
  DNS_ERROR_NAME_DOES_NOT_EXIST = DWORD(9714);
 
15869
  {$EXTERNALSYM DNS_ERROR_NAME_DOES_NOT_EXIST}
 
15870
 
 
15871
// DNS_WARNING_PTR_CREATE_FAILED         0x000025f3
 
15872
//
 
15873
// MessageId: DNS_WARNING_PTR_CREATE_FAILED
 
15874
//
 
15875
// MessageText:
 
15876
//
 
15877
//  Could not create pointer (PTR) record.
 
15878
//
 
15879
  DNS_WARNING_PTR_CREATE_FAILED = DWORD(9715);
 
15880
  {$EXTERNALSYM DNS_WARNING_PTR_CREATE_FAILED}
 
15881
 
 
15882
// DNS_WARNING_DOMAIN_UNDELETED          0x000025f4
 
15883
//
 
15884
// MessageId: DNS_WARNING_DOMAIN_UNDELETED
 
15885
//
 
15886
// MessageText:
 
15887
//
 
15888
//  DNS domain was undeleted.
 
15889
//
 
15890
  DNS_WARNING_DOMAIN_UNDELETED = DWORD(9716);
 
15891
  {$EXTERNALSYM DNS_WARNING_DOMAIN_UNDELETED}
 
15892
 
 
15893
// DNS_ERROR_DS_UNAVAILABLE              0x000025f5
 
15894
//
 
15895
// MessageId: DNS_ERROR_DS_UNAVAILABLE
 
15896
//
 
15897
// MessageText:
 
15898
//
 
15899
//  The directory service is unavailable.
 
15900
//
 
15901
  DNS_ERROR_DS_UNAVAILABLE = DWORD(9717);
 
15902
  {$EXTERNALSYM DNS_ERROR_DS_UNAVAILABLE}
 
15903
 
 
15904
// DNS_ERROR_DS_ZONE_ALREADY_EXISTS      0x000025f6
 
15905
//
 
15906
// MessageId: DNS_ERROR_DS_ZONE_ALREADY_EXISTS
 
15907
//
 
15908
// MessageText:
 
15909
//
 
15910
//  DNS zone already exists in the directory service.
 
15911
//
 
15912
  DNS_ERROR_DS_ZONE_ALREADY_EXISTS = DWORD(9718);
 
15913
  {$EXTERNALSYM DNS_ERROR_DS_ZONE_ALREADY_EXISTS}
 
15914
 
 
15915
// DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE      0x000025f7
 
15916
//
 
15917
// MessageId: DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE
 
15918
//
 
15919
// MessageText:
 
15920
//
 
15921
//  DNS server not creating or reading the boot file for the directory service integrated DNS zone.
 
15922
//
 
15923
  DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE = DWORD(9719);
 
15924
  {$EXTERNALSYM DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE}
 
15925
 
 
15926
//
 
15927
//  Operation errors
 
15928
//
 
15929
 
 
15930
  DNS_ERROR_OPERATION_BASE = 9750;
 
15931
  {$EXTERNALSYM DNS_ERROR_OPERATION_BASE}
 
15932
 
 
15933
// DNS_INFO_AXFR_COMPLETE                0x00002617
 
15934
//
 
15935
// MessageId: DNS_INFO_AXFR_COMPLETE
 
15936
//
 
15937
// MessageText:
 
15938
//
 
15939
//  DNS AXFR (zone transfer) complete.
 
15940
//
 
15941
  DNS_INFO_AXFR_COMPLETE = DWORD(9751);
 
15942
  {$EXTERNALSYM DNS_INFO_AXFR_COMPLETE}
 
15943
 
 
15944
// DNS_ERROR_AXFR                        0x00002618
 
15945
//
 
15946
// MessageId: DNS_ERROR_AXFR
 
15947
//
 
15948
// MessageText:
 
15949
//
 
15950
//  DNS zone transfer failed.
 
15951
//
 
15952
  DNS_ERROR_AXFR = DWORD(9752);
 
15953
  {$EXTERNALSYM DNS_ERROR_AXFR}
 
15954
 
 
15955
// DNS_INFO_ADDED_LOCAL_WINS             0x00002619
 
15956
//
 
15957
// MessageId: DNS_INFO_ADDED_LOCAL_WINS
 
15958
//
 
15959
// MessageText:
 
15960
//
 
15961
//  Added local WINS server.
 
15962
//
 
15963
  DNS_INFO_ADDED_LOCAL_WINS = DWORD(9753);
 
15964
  {$EXTERNALSYM DNS_INFO_ADDED_LOCAL_WINS}
 
15965
 
 
15966
//
 
15967
//  Secure update
 
15968
//
 
15969
 
 
15970
  DNS_ERROR_SECURE_BASE = 9800;
 
15971
  {$EXTERNALSYM DNS_ERROR_SECURE_BASE}
 
15972
 
 
15973
// DNS_STATUS_CONTINUE_NEEDED            0x00002649
 
15974
//
 
15975
// MessageId: DNS_STATUS_CONTINUE_NEEDED
 
15976
//
 
15977
// MessageText:
 
15978
//
 
15979
//  Secure update call needs to continue update request.
 
15980
//
 
15981
  DNS_STATUS_CONTINUE_NEEDED = DWORD(9801);
 
15982
  {$EXTERNALSYM DNS_STATUS_CONTINUE_NEEDED}
 
15983
 
 
15984
//
 
15985
//  Setup errors
 
15986
//
 
15987
 
 
15988
  DNS_ERROR_SETUP_BASE = 9850;
 
15989
  {$EXTERNALSYM DNS_ERROR_SETUP_BASE}
 
15990
 
 
15991
// DNS_ERROR_NO_TCPIP                    0x0000267b
 
15992
//
 
15993
// MessageId: DNS_ERROR_NO_TCPIP
 
15994
//
 
15995
// MessageText:
 
15996
//
 
15997
//  TCP/IP network protocol not installed.
 
15998
//
 
15999
  DNS_ERROR_NO_TCPIP = DWORD(9851);
 
16000
  {$EXTERNALSYM DNS_ERROR_NO_TCPIP}
 
16001
 
 
16002
// DNS_ERROR_NO_DNS_SERVERS              0x0000267c
 
16003
//
 
16004
// MessageId: DNS_ERROR_NO_DNS_SERVERS
 
16005
//
 
16006
// MessageText:
 
16007
//
 
16008
//  No DNS servers configured for local system.
 
16009
//
 
16010
  DNS_ERROR_NO_DNS_SERVERS = DWORD(9852);
 
16011
  {$EXTERNALSYM DNS_ERROR_NO_DNS_SERVERS}
 
16012
 
 
16013
//
 
16014
//  Directory partition (DP) errors
 
16015
//
 
16016
 
 
16017
  DNS_ERROR_DP_BASE = 9900;
 
16018
  {$EXTERNALSYM DNS_ERROR_DP_BASE}
 
16019
 
 
16020
// DNS_ERROR_DP_DOES_NOT_EXIST           0x000026ad
 
16021
//
 
16022
// MessageId: DNS_ERROR_DP_DOES_NOT_EXIST
 
16023
//
 
16024
// MessageText:
 
16025
//
 
16026
//  The specified directory partition does not exist.
 
16027
//
 
16028
  DNS_ERROR_DP_DOES_NOT_EXIST = DWORD(9901);
 
16029
  {$EXTERNALSYM DNS_ERROR_DP_DOES_NOT_EXIST}
 
16030
 
 
16031
// DNS_ERROR_DP_ALREADY_EXISTS           0x000026ae
 
16032
//
 
16033
// MessageId: DNS_ERROR_DP_ALREADY_EXISTS
 
16034
//
 
16035
// MessageText:
 
16036
//
 
16037
//  The specified directory partition already exists.
 
16038
//
 
16039
  DNS_ERROR_DP_ALREADY_EXISTS = DWORD(9902);
 
16040
  {$EXTERNALSYM DNS_ERROR_DP_ALREADY_EXISTS}
 
16041
 
 
16042
// DNS_ERROR_DP_NOT_ENLISTED             0x000026af
 
16043
//
 
16044
// MessageId: DNS_ERROR_DP_NOT_ENLISTED
 
16045
//
 
16046
// MessageText:
 
16047
//
 
16048
//  This DNS server is not enlisted in the specified directory partition.
 
16049
//
 
16050
  DNS_ERROR_DP_NOT_ENLISTED = DWORD(9903);
 
16051
  {$EXTERNALSYM DNS_ERROR_DP_NOT_ENLISTED}
 
16052
 
 
16053
// DNS_ERROR_DP_ALREADY_ENLISTED         0x000026b0
 
16054
//
 
16055
// MessageId: DNS_ERROR_DP_ALREADY_ENLISTED
 
16056
//
 
16057
// MessageText:
 
16058
//
 
16059
//  This DNS server is already enlisted in the specified directory partition.
 
16060
//
 
16061
  DNS_ERROR_DP_ALREADY_ENLISTED = DWORD(9904);
 
16062
  {$EXTERNALSYM DNS_ERROR_DP_ALREADY_ENLISTED}
 
16063
 
 
16064
// DNS_ERROR_DP_NOT_AVAILABLE            0x000026b1
 
16065
//
 
16066
// MessageId: DNS_ERROR_DP_NOT_AVAILABLE
 
16067
//
 
16068
// MessageText:
 
16069
//
 
16070
//  The directory partition is not available at this time. Please wait
 
16071
//  a few minutes and try again.
 
16072
//
 
16073
  DNS_ERROR_DP_NOT_AVAILABLE = DWORD(9905);
 
16074
  {$EXTERNALSYM DNS_ERROR_DP_NOT_AVAILABLE}
 
16075
 
 
16076
// DNS_ERROR_DP_FSMO_ERROR               0x000026b2
 
16077
//
 
16078
// MessageId: DNS_ERROR_DP_FSMO_ERROR
 
16079
//
 
16080
// MessageText:
 
16081
//
 
16082
//  The application directory partition operation failed. The domain controller
 
16083
//  holding the domain naming master role is down or unable to service the
 
16084
//  request or is not running Windows Server 2003.
 
16085
//
 
16086
  DNS_ERROR_DP_FSMO_ERROR = DWORD(9906);
 
16087
  {$EXTERNALSYM DNS_ERROR_DP_FSMO_ERROR}
 
16088
 
 
16089
///////////////////////////////////////////////////
 
16090
//                                               //
 
16091
//             End of DNS Error Codes            //
 
16092
//                                               //
 
16093
//                  9000 to 9999                 //
 
16094
///////////////////////////////////////////////////
 
16095
 
 
16096
///////////////////////////////////////////////////
 
16097
//                                               //
 
16098
//               WinSock Error Codes             //
 
16099
//                                               //
 
16100
//                 10000 to 11999                //
 
16101
///////////////////////////////////////////////////
 
16102
 
 
16103
//
 
16104
// WinSock error codes are also defined in WinSock.h
 
16105
// and WinSock2.h, hence the IFDEF
 
16106
//
 
16107
  WSABASEERR = 10000;
 
16108
  {$EXTERNALSYM WSABASEERR}
 
16109
//
 
16110
// MessageId: WSAEINTR
 
16111
//
 
16112
// MessageText:
 
16113
//
 
16114
//  A blocking operation was interrupted by a call to WSACancelBlockingCall.
 
16115
//
 
16116
  WSAEINTR = DWORD(10004);
 
16117
  {$EXTERNALSYM WSAEINTR}
 
16118
 
 
16119
//
 
16120
// MessageId: WSAEBADF
 
16121
//
 
16122
// MessageText:
 
16123
//
 
16124
//  The file handle supplied is not valid.
 
16125
//
 
16126
  WSAEBADF = DWORD(10009);
 
16127
  {$EXTERNALSYM WSAEBADF}
 
16128
 
 
16129
//
 
16130
// MessageId: WSAEACCES
 
16131
//
 
16132
// MessageText:
 
16133
//
 
16134
//  An attempt was made to access a socket in a way forbidden by its access permissions.
 
16135
//
 
16136
  WSAEACCES = DWORD(10013);
 
16137
  {$EXTERNALSYM WSAEACCES}
 
16138
 
 
16139
//
 
16140
// MessageId: WSAEFAULT
 
16141
//
 
16142
// MessageText:
 
16143
//
 
16144
//  The system detected an invalid pointer address in attempting to use a pointer argument in a call.
 
16145
//
 
16146
  WSAEFAULT = DWORD(10014);
 
16147
  {$EXTERNALSYM WSAEFAULT}
 
16148
 
 
16149
//
 
16150
// MessageId: WSAEINVAL
 
16151
//
 
16152
// MessageText:
 
16153
//
 
16154
//  An invalid argument was supplied.
 
16155
//
 
16156
  WSAEINVAL = DWORD(10022);
 
16157
  {$EXTERNALSYM WSAEINVAL}
 
16158
 
 
16159
//
 
16160
// MessageId: WSAEMFILE
 
16161
//
 
16162
// MessageText:
 
16163
//
 
16164
//  Too many open sockets.
 
16165
//
 
16166
  WSAEMFILE = DWORD(10024);
 
16167
  {$EXTERNALSYM WSAEMFILE}
 
16168
 
 
16169
//
 
16170
// MessageId: WSAEWOULDBLOCK
 
16171
//
 
16172
// MessageText:
 
16173
//
 
16174
//  A non-blocking socket operation could not be completed immediately.
 
16175
//
 
16176
  WSAEWOULDBLOCK = DWORD(10035);
 
16177
  {$EXTERNALSYM WSAEWOULDBLOCK}
 
16178
 
 
16179
//
 
16180
// MessageId: WSAEINPROGRESS
 
16181
//
 
16182
// MessageText:
 
16183
//
 
16184
//  A blocking operation is currently executing.
 
16185
//
 
16186
  WSAEINPROGRESS = DWORD(10036);
 
16187
  {$EXTERNALSYM WSAEINPROGRESS}
 
16188
 
 
16189
//
 
16190
// MessageId: WSAEALREADY
 
16191
//
 
16192
// MessageText:
 
16193
//
 
16194
//  An operation was attempted on a non-blocking socket that already had an operation in progress.
 
16195
//
 
16196
  WSAEALREADY = DWORD(10037);
 
16197
  {$EXTERNALSYM WSAEALREADY}
 
16198
 
 
16199
//
 
16200
// MessageId: WSAENOTSOCK
 
16201
//
 
16202
// MessageText:
 
16203
//
 
16204
//  An operation was attempted on something that is not a socket.
 
16205
//
 
16206
  WSAENOTSOCK = DWORD(10038);
 
16207
  {$EXTERNALSYM WSAENOTSOCK}
 
16208
 
 
16209
//
 
16210
// MessageId: WSAEDESTADDRREQ
 
16211
//
 
16212
// MessageText:
 
16213
//
 
16214
//  A required address was omitted from an operation on a socket.
 
16215
//
 
16216
  WSAEDESTADDRREQ = DWORD(10039);
 
16217
  {$EXTERNALSYM WSAEDESTADDRREQ}
 
16218
 
 
16219
//
 
16220
// MessageId: WSAEMSGSIZE
 
16221
//
 
16222
// MessageText:
 
16223
//
 
16224
//  A message sent on a datagram socket was larger than the internal message buffer or some other network limit, or the buffer used to receive a datagram into was smaller than the datagram itself.
 
16225
//
 
16226
  WSAEMSGSIZE = DWORD(10040);
 
16227
  {$EXTERNALSYM WSAEMSGSIZE}
 
16228
 
 
16229
//
 
16230
// MessageId: WSAEPROTOTYPE
 
16231
//
 
16232
// MessageText:
 
16233
//
 
16234
//  A protocol was specified in the socket function call that does not support the semantics of the socket type requested.
 
16235
//
 
16236
  WSAEPROTOTYPE = DWORD(10041);
 
16237
  {$EXTERNALSYM WSAEPROTOTYPE}
 
16238
 
 
16239
//
 
16240
// MessageId: WSAENOPROTOOPT
 
16241
//
 
16242
// MessageText:
 
16243
//
 
16244
//  An unknown, invalid, or unsupported option or level was specified in a getsockopt or setsockopt call.
 
16245
//
 
16246
  WSAENOPROTOOPT = DWORD(10042);
 
16247
  {$EXTERNALSYM WSAENOPROTOOPT}
 
16248
 
 
16249
//
 
16250
// MessageId: WSAEPROTONOSUPPORT
 
16251
//
 
16252
// MessageText:
 
16253
//
 
16254
//  The requested protocol has not been configured into the system, or no implementation for it exists.
 
16255
//
 
16256
  WSAEPROTONOSUPPORT = DWORD(10043);
 
16257
  {$EXTERNALSYM WSAEPROTONOSUPPORT}
 
16258
 
 
16259
//
 
16260
// MessageId: WSAESOCKTNOSUPPORT
 
16261
//
 
16262
// MessageText:
 
16263
//
 
16264
//  The support for the specified socket type does not exist in this address family.
 
16265
//
 
16266
  WSAESOCKTNOSUPPORT = DWORD(10044);
 
16267
  {$EXTERNALSYM WSAESOCKTNOSUPPORT}
 
16268
 
 
16269
//
 
16270
// MessageId: WSAEOPNOTSUPP
 
16271
//
 
16272
// MessageText:
 
16273
//
 
16274
//  The attempted operation is not supported for the type of object referenced.
 
16275
//
 
16276
  WSAEOPNOTSUPP = DWORD(10045);
 
16277
  {$EXTERNALSYM WSAEOPNOTSUPP}
 
16278
 
 
16279
//
 
16280
// MessageId: WSAEPFNOSUPPORT
 
16281
//
 
16282
// MessageText:
 
16283
//
 
16284
//  The protocol family has not been configured into the system or no implementation for it exists.
 
16285
//
 
16286
  WSAEPFNOSUPPORT = DWORD(10046);
 
16287
  {$EXTERNALSYM WSAEPFNOSUPPORT}
 
16288
 
 
16289
//
 
16290
// MessageId: WSAEAFNOSUPPORT
 
16291
//
 
16292
// MessageText:
 
16293
//
 
16294
//  An address incompatible with the requested protocol was used.
 
16295
//
 
16296
  WSAEAFNOSUPPORT = DWORD(10047);
 
16297
  {$EXTERNALSYM WSAEAFNOSUPPORT}
 
16298
 
 
16299
//
 
16300
// MessageId: WSAEADDRINUSE
 
16301
//
 
16302
// MessageText:
 
16303
//
 
16304
//  Only one usage of each socket address (protocol/network address/port) is normally permitted.
 
16305
//
 
16306
  WSAEADDRINUSE = DWORD(10048);
 
16307
  {$EXTERNALSYM WSAEADDRINUSE}
 
16308
 
 
16309
//
 
16310
// MessageId: WSAEADDRNOTAVAIL
 
16311
//
 
16312
// MessageText:
 
16313
//
 
16314
//  The requested address is not valid in its context.
 
16315
//
 
16316
  WSAEADDRNOTAVAIL = DWORD(10049);
 
16317
  {$EXTERNALSYM WSAEADDRNOTAVAIL}
 
16318
 
 
16319
//
 
16320
// MessageId: WSAENETDOWN
 
16321
//
 
16322
// MessageText:
 
16323
//
 
16324
//  A socket operation encountered a dead network.
 
16325
//
 
16326
  WSAENETDOWN = DWORD(10050);
 
16327
  {$EXTERNALSYM WSAENETDOWN}
 
16328
 
 
16329
//
 
16330
// MessageId: WSAENETUNREACH
 
16331
//
 
16332
// MessageText:
 
16333
//
 
16334
//  A socket operation was attempted to an unreachable network.
 
16335
//
 
16336
  WSAENETUNREACH = DWORD(10051);
 
16337
  {$EXTERNALSYM WSAENETUNREACH}
 
16338
 
 
16339
//
 
16340
// MessageId: WSAENETRESET
 
16341
//
 
16342
// MessageText:
 
16343
//
 
16344
//  The connection has been broken due to keep-alive activity detecting a failure while the operation was in progress.
 
16345
//
 
16346
  WSAENETRESET = DWORD(10052);
 
16347
  {$EXTERNALSYM WSAENETRESET}
 
16348
 
 
16349
//
 
16350
// MessageId: WSAECONNABORTED
 
16351
//
 
16352
// MessageText:
 
16353
//
 
16354
//  An established connection was aborted by the software in your host machine.
 
16355
//
 
16356
  WSAECONNABORTED = DWORD(10053);
 
16357
  {$EXTERNALSYM WSAECONNABORTED}
 
16358
 
 
16359
//
 
16360
// MessageId: WSAECONNRESET
 
16361
//
 
16362
// MessageText:
 
16363
//
 
16364
//  An existing connection was forcibly closed by the remote host.
 
16365
//
 
16366
  WSAECONNRESET = DWORD(10054);
 
16367
  {$EXTERNALSYM WSAECONNRESET}
 
16368
 
 
16369
//
 
16370
// MessageId: WSAENOBUFS
 
16371
//
 
16372
// MessageText:
 
16373
//
 
16374
//  An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full.
 
16375
//
 
16376
  WSAENOBUFS = DWORD(10055);
 
16377
  {$EXTERNALSYM WSAENOBUFS}
 
16378
 
 
16379
//
 
16380
// MessageId: WSAEISCONN
 
16381
//
 
16382
// MessageText:
 
16383
//
 
16384
//  A connect request was made on an already connected socket.
 
16385
//
 
16386
  WSAEISCONN = DWORD(10056);
 
16387
  {$EXTERNALSYM WSAEISCONN}
 
16388
 
 
16389
//
 
16390
// MessageId: WSAENOTCONN
 
16391
//
 
16392
// MessageText:
 
16393
//
 
16394
//  A request to send or receive data was disallowed because the socket is not connected and (when sending on a datagram socket using a sendto call) no address was supplied.
 
16395
//
 
16396
  WSAENOTCONN = DWORD(10057);
 
16397
  {$EXTERNALSYM WSAENOTCONN}
 
16398
 
 
16399
//
 
16400
// MessageId: WSAESHUTDOWN
 
16401
//
 
16402
// MessageText:
 
16403
//
 
16404
//  A request to send or receive data was disallowed because the socket had already been shut down in that direction with a previous shutdown call.
 
16405
//
 
16406
  WSAESHUTDOWN = DWORD(10058);
 
16407
  {$EXTERNALSYM WSAESHUTDOWN}
 
16408
 
 
16409
//
 
16410
// MessageId: WSAETOOMANYREFS
 
16411
//
 
16412
// MessageText:
 
16413
//
 
16414
//  Too many references to some kernel object.
 
16415
//
 
16416
  WSAETOOMANYREFS = DWORD(10059);
 
16417
  {$EXTERNALSYM WSAETOOMANYREFS}
 
16418
 
 
16419
//
 
16420
// MessageId: WSAETIMEDOUT
 
16421
//
 
16422
// MessageText:
 
16423
//
 
16424
//  A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
 
16425
//
 
16426
  WSAETIMEDOUT = DWORD(10060);
 
16427
  {$EXTERNALSYM WSAETIMEDOUT}
 
16428
 
 
16429
//
 
16430
// MessageId: WSAECONNREFUSED
 
16431
//
 
16432
// MessageText:
 
16433
//
 
16434
//  No connection could be made because the target machine actively refused it.
 
16435
//
 
16436
  WSAECONNREFUSED = DWORD(10061);
 
16437
  {$EXTERNALSYM WSAECONNREFUSED}
 
16438
 
 
16439
//
 
16440
// MessageId: WSAELOOP
 
16441
//
 
16442
// MessageText:
 
16443
//
 
16444
//  Cannot translate name.
 
16445
//
 
16446
  WSAELOOP = DWORD(10062);
 
16447
  {$EXTERNALSYM WSAELOOP}
 
16448
 
 
16449
//
 
16450
// MessageId: WSAENAMETOOLONG
 
16451
//
 
16452
// MessageText:
 
16453
//
 
16454
//  Name component or name was too long.
 
16455
//
 
16456
  WSAENAMETOOLONG = DWORD(10063);
 
16457
  {$EXTERNALSYM WSAENAMETOOLONG}
 
16458
 
 
16459
//
 
16460
// MessageId: WSAEHOSTDOWN
 
16461
//
 
16462
// MessageText:
 
16463
//
 
16464
//  A socket operation failed because the destination host was down.
 
16465
//
 
16466
  WSAEHOSTDOWN = DWORD(10064);
 
16467
  {$EXTERNALSYM WSAEHOSTDOWN}
 
16468
 
 
16469
//
 
16470
// MessageId: WSAEHOSTUNREACH
 
16471
//
 
16472
// MessageText:
 
16473
//
 
16474
//  A socket operation was attempted to an unreachable host.
 
16475
//
 
16476
  WSAEHOSTUNREACH = DWORD(10065);
 
16477
  {$EXTERNALSYM WSAEHOSTUNREACH}
 
16478
 
 
16479
//
 
16480
// MessageId: WSAENOTEMPTY
 
16481
//
 
16482
// MessageText:
 
16483
//
 
16484
//  Cannot remove a directory that is not empty.
 
16485
//
 
16486
  WSAENOTEMPTY = DWORD(10066);
 
16487
  {$EXTERNALSYM WSAENOTEMPTY}
 
16488
 
 
16489
//
 
16490
// MessageId: WSAEPROCLIM
 
16491
//
 
16492
// MessageText:
 
16493
//
 
16494
//  A Windows Sockets implementation may have a limit on the number of applications that may use it simultaneously.
 
16495
//
 
16496
  WSAEPROCLIM = DWORD(10067);
 
16497
  {$EXTERNALSYM WSAEPROCLIM}
 
16498
 
 
16499
//
 
16500
// MessageId: WSAEUSERS
 
16501
//
 
16502
// MessageText:
 
16503
//
 
16504
//  Ran out of quota.
 
16505
//
 
16506
  WSAEUSERS = DWORD(10068);
 
16507
  {$EXTERNALSYM WSAEUSERS}
 
16508
 
 
16509
//
 
16510
// MessageId: WSAEDQUOT
 
16511
//
 
16512
// MessageText:
 
16513
//
 
16514
//  Ran out of disk quota.
 
16515
//
 
16516
  WSAEDQUOT = DWORD(10069);
 
16517
  {$EXTERNALSYM WSAEDQUOT}
 
16518
 
 
16519
//
 
16520
// MessageId: WSAESTALE
 
16521
//
 
16522
// MessageText:
 
16523
//
 
16524
//  File handle reference is no longer available.
 
16525
//
 
16526
  WSAESTALE = DWORD(10070);
 
16527
  {$EXTERNALSYM WSAESTALE}
 
16528
 
 
16529
//
 
16530
// MessageId: WSAEREMOTE
 
16531
//
 
16532
// MessageText:
 
16533
//
 
16534
//  Item is not available locally.
 
16535
//
 
16536
  WSAEREMOTE = DWORD(10071);
 
16537
  {$EXTERNALSYM WSAEREMOTE}
 
16538
 
 
16539
//
 
16540
// MessageId: WSASYSNOTREADY
 
16541
//
 
16542
// MessageText:
 
16543
//
 
16544
//  WSAStartup cannot function at this time because the underlying system it uses to provide network services is currently unavailable.
 
16545
//
 
16546
  WSASYSNOTREADY = DWORD(10091);
 
16547
  {$EXTERNALSYM WSASYSNOTREADY}
 
16548
 
 
16549
//
 
16550
// MessageId: WSAVERNOTSUPPORTED
 
16551
//
 
16552
// MessageText:
 
16553
//
 
16554
//  The Windows Sockets version requested is not supported.
 
16555
//
 
16556
  WSAVERNOTSUPPORTED = DWORD(10092);
 
16557
  {$EXTERNALSYM WSAVERNOTSUPPORTED}
 
16558
 
 
16559
//
 
16560
// MessageId: WSANOTINITIALISED
 
16561
//
 
16562
// MessageText:
 
16563
//
 
16564
//  Either the application has not called WSAStartup, or WSAStartup failed.
 
16565
//
 
16566
  WSANOTINITIALISED = DWORD(10093);
 
16567
  {$EXTERNALSYM WSANOTINITIALISED}
 
16568
 
 
16569
//
 
16570
// MessageId: WSAEDISCON
 
16571
//
 
16572
// MessageText:
 
16573
//
 
16574
//  Returned by WSARecv or WSARecvFrom to indicate the remote party has initiated a graceful shutdown sequence.
 
16575
//
 
16576
  WSAEDISCON = DWORD(10101);
 
16577
  {$EXTERNALSYM WSAEDISCON}
 
16578
 
 
16579
//
 
16580
// MessageId: WSAENOMORE
 
16581
//
 
16582
// MessageText:
 
16583
//
 
16584
//  No more results can be returned by WSALookupServiceNext.
 
16585
//
 
16586
  WSAENOMORE = DWORD(10102);
 
16587
  {$EXTERNALSYM WSAENOMORE}
 
16588
 
 
16589
//
 
16590
// MessageId: WSAECANCELLED
 
16591
//
 
16592
// MessageText:
 
16593
//
 
16594
//  A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled.
 
16595
//
 
16596
  WSAECANCELLED = DWORD(10103);
 
16597
  {$EXTERNALSYM WSAECANCELLED}
 
16598
 
 
16599
//
 
16600
// MessageId: WSAEINVALIDPROCTABLE
 
16601
//
 
16602
// MessageText:
 
16603
//
 
16604
//  The procedure call table is invalid.
 
16605
//
 
16606
  WSAEINVALIDPROCTABLE = DWORD(10104);
 
16607
  {$EXTERNALSYM WSAEINVALIDPROCTABLE}
 
16608
 
 
16609
//
 
16610
// MessageId: WSAEINVALIDPROVIDER
 
16611
//
 
16612
// MessageText:
 
16613
//
 
16614
//  The requested service provider is invalid.
 
16615
//
 
16616
  WSAEINVALIDPROVIDER = DWORD(10105);
 
16617
  {$EXTERNALSYM WSAEINVALIDPROVIDER}
 
16618
 
 
16619
//
 
16620
// MessageId: WSAEPROVIDERFAILEDINIT
 
16621
//
 
16622
// MessageText:
 
16623
//
 
16624
//  The requested service provider could not be loaded or initialized.
 
16625
//
 
16626
  WSAEPROVIDERFAILEDINIT = DWORD(10106);
 
16627
  {$EXTERNALSYM WSAEPROVIDERFAILEDINIT}
 
16628
 
 
16629
//
 
16630
// MessageId: WSASYSCALLFAILURE
 
16631
//
 
16632
// MessageText:
 
16633
//
 
16634
//  A system call that should never fail has failed.
 
16635
//
 
16636
  WSASYSCALLFAILURE = DWORD(10107);
 
16637
  {$EXTERNALSYM WSASYSCALLFAILURE}
 
16638
 
 
16639
//
 
16640
// MessageId: WSASERVICE_NOT_FOUND
 
16641
//
 
16642
// MessageText:
 
16643
//
 
16644
//  No such service is known. The service cannot be found in the specified name space.
 
16645
//
 
16646
  WSASERVICE_NOT_FOUND = DWORD(10108);
 
16647
  {$EXTERNALSYM WSASERVICE_NOT_FOUND}
 
16648
 
 
16649
//
 
16650
// MessageId: WSATYPE_NOT_FOUND
 
16651
//
 
16652
// MessageText:
 
16653
//
 
16654
//  The specified class was not found.
 
16655
//
 
16656
  WSATYPE_NOT_FOUND = DWORD(10109);
 
16657
  {$EXTERNALSYM WSATYPE_NOT_FOUND}
 
16658
 
 
16659
//
 
16660
// MessageId: WSA_E_NO_MORE
 
16661
//
 
16662
// MessageText:
 
16663
//
 
16664
//  No more results can be returned by WSALookupServiceNext.
 
16665
//
 
16666
  WSA_E_NO_MORE = DWORD(10110);
 
16667
  {$EXTERNALSYM WSA_E_NO_MORE}
 
16668
 
 
16669
//
 
16670
// MessageId: WSA_E_CANCELLED
 
16671
//
 
16672
// MessageText:
 
16673
//
 
16674
//  A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled.
 
16675
//
 
16676
  WSA_E_CANCELLED = DWORD(10111);
 
16677
  {$EXTERNALSYM WSA_E_CANCELLED}
 
16678
 
 
16679
//
 
16680
// MessageId: WSAEREFUSED
 
16681
//
 
16682
// MessageText:
 
16683
//
 
16684
//  A database query failed because it was actively refused.
 
16685
//
 
16686
  WSAEREFUSED = DWORD(10112);
 
16687
  {$EXTERNALSYM WSAEREFUSED}
 
16688
 
 
16689
//
 
16690
// MessageId: WSAHOST_NOT_FOUND
 
16691
//
 
16692
// MessageText:
 
16693
//
 
16694
//  No such host is known.
 
16695
//
 
16696
  WSAHOST_NOT_FOUND = DWORD(11001);
 
16697
  {$EXTERNALSYM WSAHOST_NOT_FOUND}
 
16698
 
 
16699
//
 
16700
// MessageId: WSATRY_AGAIN
 
16701
//
 
16702
// MessageText:
 
16703
//
 
16704
//  This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server.
 
16705
//
 
16706
  WSATRY_AGAIN = DWORD(11002);
 
16707
  {$EXTERNALSYM WSATRY_AGAIN}
 
16708
 
 
16709
//
 
16710
// MessageId: WSANO_RECOVERY
 
16711
//
 
16712
// MessageText:
 
16713
//
 
16714
//  A non-recoverable error occurred during a database lookup.
 
16715
//
 
16716
  WSANO_RECOVERY = DWORD(11003);
 
16717
  {$EXTERNALSYM WSANO_RECOVERY}
 
16718
 
 
16719
//
 
16720
// MessageId: WSANO_DATA
 
16721
//
 
16722
// MessageText:
 
16723
//
 
16724
//  The requested name is valid, but no data of the requested type was found.
 
16725
//
 
16726
  WSANO_DATA = DWORD(11004);
 
16727
  {$EXTERNALSYM WSANO_DATA}
 
16728
 
 
16729
//
 
16730
// MessageId: WSA_QOS_RECEIVERS
 
16731
//
 
16732
// MessageText:
 
16733
//
 
16734
//  At least one reserve has arrived.
 
16735
//
 
16736
  WSA_QOS_RECEIVERS = DWORD(11005);
 
16737
  {$EXTERNALSYM WSA_QOS_RECEIVERS}
 
16738
 
 
16739
//
 
16740
// MessageId: WSA_QOS_SENDERS
 
16741
//
 
16742
// MessageText:
 
16743
//
 
16744
//  At least one path has arrived.
 
16745
//
 
16746
  WSA_QOS_SENDERS = DWORD(11006);
 
16747
  {$EXTERNALSYM WSA_QOS_SENDERS}
 
16748
 
 
16749
//
 
16750
// MessageId: WSA_QOS_NO_SENDERS
 
16751
//
 
16752
// MessageText:
 
16753
//
 
16754
//  There are no senders.
 
16755
//
 
16756
  WSA_QOS_NO_SENDERS = DWORD(11007);
 
16757
  {$EXTERNALSYM WSA_QOS_NO_SENDERS}
 
16758
 
 
16759
//
 
16760
// MessageId: WSA_QOS_NO_RECEIVERS
 
16761
//
 
16762
// MessageText:
 
16763
//
 
16764
//  There are no receivers.
 
16765
//
 
16766
  WSA_QOS_NO_RECEIVERS = DWORD(11008);
 
16767
  {$EXTERNALSYM WSA_QOS_NO_RECEIVERS}
 
16768
 
 
16769
//
 
16770
// MessageId: WSA_QOS_REQUEST_CONFIRMED
 
16771
//
 
16772
// MessageText:
 
16773
//
 
16774
//  Reserve has been confirmed.
 
16775
//
 
16776
  WSA_QOS_REQUEST_CONFIRMED = DWORD(11009);
 
16777
  {$EXTERNALSYM WSA_QOS_REQUEST_CONFIRMED}
 
16778
 
 
16779
//
 
16780
// MessageId: WSA_QOS_ADMISSION_FAILURE
 
16781
//
 
16782
// MessageText:
 
16783
//
 
16784
//  Error due to lack of resources.
 
16785
//
 
16786
  WSA_QOS_ADMISSION_FAILURE = DWORD(11010);
 
16787
  {$EXTERNALSYM WSA_QOS_ADMISSION_FAILURE}
 
16788
 
 
16789
//
 
16790
// MessageId: WSA_QOS_POLICY_FAILURE
 
16791
//
 
16792
// MessageText:
 
16793
//
 
16794
//  Rejected for administrative reasons - bad credentials.
 
16795
//
 
16796
  WSA_QOS_POLICY_FAILURE = DWORD(11011);
 
16797
  {$EXTERNALSYM WSA_QOS_POLICY_FAILURE}
 
16798
 
 
16799
//
 
16800
// MessageId: WSA_QOS_BAD_STYLE
 
16801
//
 
16802
// MessageText:
 
16803
//
 
16804
//  Unknown or conflicting style.
 
16805
//
 
16806
  WSA_QOS_BAD_STYLE = DWORD(11012);
 
16807
  {$EXTERNALSYM WSA_QOS_BAD_STYLE}
 
16808
 
 
16809
//
 
16810
// MessageId: WSA_QOS_BAD_OBJECT
 
16811
//
 
16812
// MessageText:
 
16813
//
 
16814
//  Problem with some part of the filterspec or providerspecific buffer in general.
 
16815
//
 
16816
  WSA_QOS_BAD_OBJECT = DWORD(11013);
 
16817
  {$EXTERNALSYM WSA_QOS_BAD_OBJECT}
 
16818
 
 
16819
//
 
16820
// MessageId: WSA_QOS_TRAFFIC_CTRL_ERROR
 
16821
//
 
16822
// MessageText:
 
16823
//
 
16824
//  Problem with some part of the flowspec.
 
16825
//
 
16826
  WSA_QOS_TRAFFIC_CTRL_ERROR = DWORD(11014);
 
16827
  {$EXTERNALSYM WSA_QOS_TRAFFIC_CTRL_ERROR}
 
16828
 
 
16829
//
 
16830
// MessageId: WSA_QOS_GENERIC_ERROR
 
16831
//
 
16832
// MessageText:
 
16833
//
 
16834
//  General QOS error.
 
16835
//
 
16836
  WSA_QOS_GENERIC_ERROR = DWORD(11015);
 
16837
  {$EXTERNALSYM WSA_QOS_GENERIC_ERROR}
 
16838
 
 
16839
//
 
16840
// MessageId: WSA_QOS_ESERVICETYPE
 
16841
//
 
16842
// MessageText:
 
16843
//
 
16844
//  An invalid or unrecognized service type was found in the flowspec.
 
16845
//
 
16846
  WSA_QOS_ESERVICETYPE = DWORD(11016);
 
16847
  {$EXTERNALSYM WSA_QOS_ESERVICETYPE}
 
16848
 
 
16849
//
 
16850
// MessageId: WSA_QOS_EFLOWSPEC
 
16851
//
 
16852
// MessageText:
 
16853
//
 
16854
//  An invalid or inconsistent flowspec was found in the QOS structure.
 
16855
//
 
16856
  WSA_QOS_EFLOWSPEC = DWORD(11017);
 
16857
  {$EXTERNALSYM WSA_QOS_EFLOWSPEC}
 
16858
 
 
16859
//
 
16860
// MessageId: WSA_QOS_EPROVSPECBUF
 
16861
//
 
16862
// MessageText:
 
16863
//
 
16864
//  Invalid QOS provider-specific buffer.
 
16865
//
 
16866
  WSA_QOS_EPROVSPECBUF = DWORD(11018);
 
16867
  {$EXTERNALSYM WSA_QOS_EPROVSPECBUF}
 
16868
 
 
16869
//
 
16870
// MessageId: WSA_QOS_EFILTERSTYLE
 
16871
//
 
16872
// MessageText:
 
16873
//
 
16874
//  An invalid QOS filter style was used.
 
16875
//
 
16876
  WSA_QOS_EFILTERSTYLE = DWORD(11019);
 
16877
  {$EXTERNALSYM WSA_QOS_EFILTERSTYLE}
 
16878
 
 
16879
//
 
16880
// MessageId: WSA_QOS_EFILTERTYPE
 
16881
//
 
16882
// MessageText:
 
16883
//
 
16884
//  An invalid QOS filter type was used.
 
16885
//
 
16886
  WSA_QOS_EFILTERTYPE = DWORD(11020);
 
16887
  {$EXTERNALSYM WSA_QOS_EFILTERTYPE}
 
16888
 
 
16889
//
 
16890
// MessageId: WSA_QOS_EFILTERCOUNT
 
16891
//
 
16892
// MessageText:
 
16893
//
 
16894
//  An incorrect number of QOS FILTERSPECs were specified in the FLOWDESCRIPTOR.
 
16895
//
 
16896
  WSA_QOS_EFILTERCOUNT = DWORD(11021);
 
16897
  {$EXTERNALSYM WSA_QOS_EFILTERCOUNT}
 
16898
 
 
16899
//
 
16900
// MessageId: WSA_QOS_EOBJLENGTH
 
16901
//
 
16902
// MessageText:
 
16903
//
 
16904
//  An object with an invalid ObjectLength field was specified in the QOS provider-specific buffer.
 
16905
//
 
16906
  WSA_QOS_EOBJLENGTH = DWORD(11022);
 
16907
  {$EXTERNALSYM WSA_QOS_EOBJLENGTH}
 
16908
 
 
16909
//
 
16910
// MessageId: WSA_QOS_EFLOWCOUNT
 
16911
//
 
16912
// MessageText:
 
16913
//
 
16914
//  An incorrect number of flow descriptors was specified in the QOS structure.
 
16915
//
 
16916
  WSA_QOS_EFLOWCOUNT = DWORD(11023);
 
16917
  {$EXTERNALSYM WSA_QOS_EFLOWCOUNT}
 
16918
 
 
16919
//
 
16920
// MessageId: WSA_QOS_EUNKOWNPSOBJ
 
16921
//
 
16922
// MessageText:
 
16923
//
 
16924
//  An unrecognized object was found in the QOS provider-specific buffer.
 
16925
//
 
16926
  WSA_QOS_EUNKOWNPSOBJ = DWORD(11024);
 
16927
  {$EXTERNALSYM WSA_QOS_EUNKOWNPSOBJ}
 
16928
 
 
16929
//
 
16930
// MessageId: WSA_QOS_EPOLICYOBJ
 
16931
//
 
16932
// MessageText:
 
16933
//
 
16934
//  An invalid policy object was found in the QOS provider-specific buffer.
 
16935
//
 
16936
  WSA_QOS_EPOLICYOBJ = DWORD(11025);
 
16937
  {$EXTERNALSYM WSA_QOS_EPOLICYOBJ}
 
16938
 
 
16939
//
 
16940
// MessageId: WSA_QOS_EFLOWDESC
 
16941
//
 
16942
// MessageText:
 
16943
//
 
16944
//  An invalid QOS flow descriptor was found in the flow descriptor list.
 
16945
//
 
16946
  WSA_QOS_EFLOWDESC = DWORD(11026);
 
16947
  {$EXTERNALSYM WSA_QOS_EFLOWDESC}
 
16948
 
 
16949
//
 
16950
// MessageId: WSA_QOS_EPSFLOWSPEC
 
16951
//
 
16952
// MessageText:
 
16953
//
 
16954
//  An invalid or inconsistent flowspec was found in the QOS provider specific buffer.
 
16955
//
 
16956
  WSA_QOS_EPSFLOWSPEC = DWORD(11027);
 
16957
  {$EXTERNALSYM WSA_QOS_EPSFLOWSPEC}
 
16958
 
 
16959
//
 
16960
// MessageId: WSA_QOS_EPSFILTERSPEC
 
16961
//
 
16962
// MessageText:
 
16963
//
 
16964
//  An invalid FILTERSPEC was found in the QOS provider-specific buffer.
 
16965
//
 
16966
  WSA_QOS_EPSFILTERSPEC = DWORD(11028);
 
16967
  {$EXTERNALSYM WSA_QOS_EPSFILTERSPEC}
 
16968
 
 
16969
//
 
16970
// MessageId: WSA_QOS_ESDMODEOBJ
 
16971
//
 
16972
// MessageText:
 
16973
//
 
16974
//  An invalid shape discard mode object was found in the QOS provider specific buffer.
 
16975
//
 
16976
  WSA_QOS_ESDMODEOBJ = DWORD(11029);
 
16977
  {$EXTERNALSYM WSA_QOS_ESDMODEOBJ}
 
16978
 
 
16979
//
 
16980
// MessageId: WSA_QOS_ESHAPERATEOBJ
 
16981
//
 
16982
// MessageText:
 
16983
//
 
16984
//  An invalid shaping rate object was found in the QOS provider-specific buffer.
 
16985
//
 
16986
  WSA_QOS_ESHAPERATEOBJ = DWORD(11030);
 
16987
  {$EXTERNALSYM WSA_QOS_ESHAPERATEOBJ}
 
16988
 
 
16989
//
 
16990
// MessageId: WSA_QOS_RESERVED_PETYPE
 
16991
//
 
16992
// MessageText:
 
16993
//
 
16994
//  A reserved policy element was found in the QOS provider-specific buffer.
 
16995
//
 
16996
  WSA_QOS_RESERVED_PETYPE = DWORD(11031);
 
16997
  {$EXTERNALSYM WSA_QOS_RESERVED_PETYPE}
 
16998
 
 
16999
///////////////////////////////////////////////////
 
17000
//                                               //
 
17001
//           End of WinSock Error Codes          //
 
17002
//                                               //
 
17003
//                 10000 to 11999                //
 
17004
///////////////////////////////////////////////////
 
17005
 
 
17006
 
 
17007
///////////////////////////////////////////////////
 
17008
//                                               //
 
17009
//             Side By Side Error Codes          //
 
17010
//                                               //
 
17011
//                 14000 to 14999                //
 
17012
///////////////////////////////////////////////////
 
17013
 
 
17014
//
 
17015
// MessageId: ERROR_SXS_SECTION_NOT_FOUND
 
17016
//
 
17017
// MessageText:
 
17018
//
 
17019
//  The requested section was not present in the activation context.
 
17020
//
 
17021
  ERROR_SXS_SECTION_NOT_FOUND = DWORD(14000);
 
17022
  {$EXTERNALSYM ERROR_SXS_SECTION_NOT_FOUND}
 
17023
 
 
17024
//
 
17025
// MessageId: ERROR_SXS_CANT_GEN_ACTCTX
 
17026
//
 
17027
// MessageText:
 
17028
//
 
17029
//  This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem.
 
17030
//
 
17031
  ERROR_SXS_CANT_GEN_ACTCTX = DWORD(14001);
 
17032
  {$EXTERNALSYM ERROR_SXS_CANT_GEN_ACTCTX}
 
17033
 
 
17034
//
 
17035
// MessageId: ERROR_SXS_INVALID_ACTCTXDATA_FORMAT
 
17036
//
 
17037
// MessageText:
 
17038
//
 
17039
//  The application binding data format is invalid.
 
17040
//
 
17041
  ERROR_SXS_INVALID_ACTCTXDATA_FORMAT = DWORD(14002);
 
17042
  {$EXTERNALSYM ERROR_SXS_INVALID_ACTCTXDATA_FORMAT}
 
17043
 
 
17044
//
 
17045
// MessageId: ERROR_SXS_ASSEMBLY_NOT_FOUND
 
17046
//
 
17047
// MessageText:
 
17048
//
 
17049
//  The referenced assembly is not installed on your system.
 
17050
//
 
17051
  ERROR_SXS_ASSEMBLY_NOT_FOUND = DWORD(14003);
 
17052
  {$EXTERNALSYM ERROR_SXS_ASSEMBLY_NOT_FOUND}
 
17053
 
 
17054
//
 
17055
// MessageId: ERROR_SXS_MANIFEST_FORMAT_ERROR
 
17056
//
 
17057
// MessageText:
 
17058
//
 
17059
//  The manifest file does not begin with the required tag and format information.
 
17060
//
 
17061
  ERROR_SXS_MANIFEST_FORMAT_ERROR = DWORD(14004);
 
17062
  {$EXTERNALSYM ERROR_SXS_MANIFEST_FORMAT_ERROR}
 
17063
 
 
17064
//
 
17065
// MessageId: ERROR_SXS_MANIFEST_PARSE_ERROR
 
17066
//
 
17067
// MessageText:
 
17068
//
 
17069
//  The manifest file contains one or more syntax errors.
 
17070
//
 
17071
  ERROR_SXS_MANIFEST_PARSE_ERROR = DWORD(14005);
 
17072
  {$EXTERNALSYM ERROR_SXS_MANIFEST_PARSE_ERROR}
 
17073
 
 
17074
//
 
17075
// MessageId: ERROR_SXS_ACTIVATION_CONTEXT_DISABLED
 
17076
//
 
17077
// MessageText:
 
17078
//
 
17079
//  The application attempted to activate a disabled activation context.
 
17080
//
 
17081
  ERROR_SXS_ACTIVATION_CONTEXT_DISABLED = DWORD(14006);
 
17082
  {$EXTERNALSYM ERROR_SXS_ACTIVATION_CONTEXT_DISABLED}
 
17083
 
 
17084
//
 
17085
// MessageId: ERROR_SXS_KEY_NOT_FOUND
 
17086
//
 
17087
// MessageText:
 
17088
//
 
17089
//  The requested lookup key was not found in any active activation context.
 
17090
//
 
17091
  ERROR_SXS_KEY_NOT_FOUND = DWORD(14007);
 
17092
  {$EXTERNALSYM ERROR_SXS_KEY_NOT_FOUND}
 
17093
 
 
17094
//
 
17095
// MessageId: ERROR_SXS_VERSION_CONFLICT
 
17096
//
 
17097
// MessageText:
 
17098
//
 
17099
//  A component version required by the application conflicts with another component version already active.
 
17100
//
 
17101
  ERROR_SXS_VERSION_CONFLICT = DWORD(14008);
 
17102
  {$EXTERNALSYM ERROR_SXS_VERSION_CONFLICT}
 
17103
 
 
17104
//
 
17105
// MessageId: ERROR_SXS_WRONG_SECTION_TYPE
 
17106
//
 
17107
// MessageText:
 
17108
//
 
17109
//  The type requested activation context section does not match the query API used.
 
17110
//
 
17111
  ERROR_SXS_WRONG_SECTION_TYPE = DWORD(14009);
 
17112
  {$EXTERNALSYM ERROR_SXS_WRONG_SECTION_TYPE}
 
17113
 
 
17114
//
 
17115
// MessageId: ERROR_SXS_THREAD_QUERIES_DISABLED
 
17116
//
 
17117
// MessageText:
 
17118
//
 
17119
//  Lack of system resources has required isolated activation to be disabled for the current thread of execution.
 
17120
//
 
17121
  ERROR_SXS_THREAD_QUERIES_DISABLED = DWORD(14010);
 
17122
  {$EXTERNALSYM ERROR_SXS_THREAD_QUERIES_DISABLED}
 
17123
 
 
17124
//
 
17125
// MessageId: ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET
 
17126
//
 
17127
// MessageText:
 
17128
//
 
17129
//  An attempt to set the process default activation context failed because the process default activation context was already set.
 
17130
//
 
17131
  ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET = DWORD(14011);
 
17132
  {$EXTERNALSYM ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET}
 
17133
 
 
17134
//
 
17135
// MessageId: ERROR_SXS_UNKNOWN_ENCODING_GROUP
 
17136
//
 
17137
// MessageText:
 
17138
//
 
17139
//  The encoding group identifier specified is not recognized.
 
17140
//
 
17141
  ERROR_SXS_UNKNOWN_ENCODING_GROUP = DWORD(14012);
 
17142
  {$EXTERNALSYM ERROR_SXS_UNKNOWN_ENCODING_GROUP}
 
17143
 
 
17144
//
 
17145
// MessageId: ERROR_SXS_UNKNOWN_ENCODING
 
17146
//
 
17147
// MessageText:
 
17148
//
 
17149
//  The encoding requested is not recognized.
 
17150
//
 
17151
  ERROR_SXS_UNKNOWN_ENCODING = DWORD(14013);
 
17152
  {$EXTERNALSYM ERROR_SXS_UNKNOWN_ENCODING}
 
17153
 
 
17154
//
 
17155
// MessageId: ERROR_SXS_INVALID_XML_NAMESPACE_URI
 
17156
//
 
17157
// MessageText:
 
17158
//
 
17159
//  The manifest contains a reference to an invalid URI.
 
17160
//
 
17161
  ERROR_SXS_INVALID_XML_NAMESPACE_URI = DWORD(14014);
 
17162
  {$EXTERNALSYM ERROR_SXS_INVALID_XML_NAMESPACE_URI}
 
17163
 
 
17164
//
 
17165
// MessageId: ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED
 
17166
//
 
17167
// MessageText:
 
17168
//
 
17169
//  The application manifest contains a reference to a dependent assembly which is not installed
 
17170
//
 
17171
  ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED = DWORD(14015);
 
17172
  {$EXTERNALSYM ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED}
 
17173
 
 
17174
//
 
17175
// MessageId: ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED
 
17176
//
 
17177
// MessageText:
 
17178
//
 
17179
//  The manifest for an assembly used by the application has a reference to a dependent assembly which is not installed
 
17180
//
 
17181
  ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED = DWORD(14016);
 
17182
  {$EXTERNALSYM ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED}
 
17183
 
 
17184
//
 
17185
// MessageId: ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE
 
17186
//
 
17187
// MessageText:
 
17188
//
 
17189
//  The manifest contains an attribute for the assembly identity which is not valid.
 
17190
//
 
17191
  ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE = DWORD(14017);
 
17192
  {$EXTERNALSYM ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE}
 
17193
 
 
17194
//
 
17195
// MessageId: ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE
 
17196
//
 
17197
// MessageText:
 
17198
//
 
17199
//  The manifest is missing the required default namespace specification on the assembly element.
 
17200
//
 
17201
  ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE = DWORD(14018);
 
17202
  {$EXTERNALSYM ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE}
 
17203
 
 
17204
//
 
17205
// MessageId: ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE
 
17206
//
 
17207
// MessageText:
 
17208
//
 
17209
//  The manifest has a default namespace specified on the assembly element but its value is not "urn:schemas-microsoft-com:asm.v1".
 
17210
//
 
17211
  ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE = DWORD(14019);
 
17212
  {$EXTERNALSYM ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE}
 
17213
 
 
17214
//
 
17215
// MessageId: ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT
 
17216
//
 
17217
// MessageText:
 
17218
//
 
17219
//  The private manifest probed has crossed reparse-point-associated path
 
17220
//
 
17221
  ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT = DWORD(14020);
 
17222
  {$EXTERNALSYM ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT}
 
17223
 
 
17224
//
 
17225
// MessageId: ERROR_SXS_DUPLICATE_DLL_NAME
 
17226
//
 
17227
// MessageText:
 
17228
//
 
17229
//  Two or more components referenced directly or indirectly by the application manifest have files by the same name.
 
17230
//
 
17231
  ERROR_SXS_DUPLICATE_DLL_NAME = DWORD(14021);
 
17232
  {$EXTERNALSYM ERROR_SXS_DUPLICATE_DLL_NAME}
 
17233
 
 
17234
//
 
17235
// MessageId: ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME
 
17236
//
 
17237
// MessageText:
 
17238
//
 
17239
//  Two or more components referenced directly or indirectly by the application manifest have window classes with the same name.
 
17240
//
 
17241
  ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME = DWORD(14022);
 
17242
  {$EXTERNALSYM ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME}
 
17243
 
 
17244
//
 
17245
// MessageId: ERROR_SXS_DUPLICATE_CLSID
 
17246
//
 
17247
// MessageText:
 
17248
//
 
17249
//  Two or more components referenced directly or indirectly by the application manifest have the same COM server CLSIDs.
 
17250
//
 
17251
  ERROR_SXS_DUPLICATE_CLSID = DWORD(14023);
 
17252
  {$EXTERNALSYM ERROR_SXS_DUPLICATE_CLSID}
 
17253
 
 
17254
//
 
17255
// MessageId: ERROR_SXS_DUPLICATE_IID
 
17256
//
 
17257
// MessageText:
 
17258
//
 
17259
//  Two or more components referenced directly or indirectly by the application manifest have proxies for the same COM interface IIDs.
 
17260
//
 
17261
  ERROR_SXS_DUPLICATE_IID = DWORD(14024);
 
17262
  {$EXTERNALSYM ERROR_SXS_DUPLICATE_IID}
 
17263
 
 
17264
//
 
17265
// MessageId: ERROR_SXS_DUPLICATE_TLBID
 
17266
//
 
17267
// MessageText:
 
17268
//
 
17269
//  Two or more components referenced directly or indirectly by the application manifest have the same COM type library TLBIDs.
 
17270
//
 
17271
  ERROR_SXS_DUPLICATE_TLBID = DWORD(14025);
 
17272
  {$EXTERNALSYM ERROR_SXS_DUPLICATE_TLBID}
 
17273
 
 
17274
//
 
17275
// MessageId: ERROR_SXS_DUPLICATE_PROGID
 
17276
//
 
17277
// MessageText:
 
17278
//
 
17279
//  Two or more components referenced directly or indirectly by the application manifest have the same COM ProgIDs.
 
17280
//
 
17281
  ERROR_SXS_DUPLICATE_PROGID = DWORD(14026);
 
17282
  {$EXTERNALSYM ERROR_SXS_DUPLICATE_PROGID}
 
17283
 
 
17284
//
 
17285
// MessageId: ERROR_SXS_DUPLICATE_ASSEMBLY_NAME
 
17286
//
 
17287
// MessageText:
 
17288
//
 
17289
//  Two or more components referenced directly or indirectly by the application manifest are different versions of the same component which is not permitted.
 
17290
//
 
17291
  ERROR_SXS_DUPLICATE_ASSEMBLY_NAME = DWORD(14027);
 
17292
  {$EXTERNALSYM ERROR_SXS_DUPLICATE_ASSEMBLY_NAME}
 
17293
 
 
17294
//
 
17295
// MessageId: ERROR_SXS_FILE_HASH_MISMATCH
 
17296
//
 
17297
// MessageText:
 
17298
//
 
17299
//  A component's file does not match the verification information present in the
 
17300
//  component manifest.
 
17301
//
 
17302
  ERROR_SXS_FILE_HASH_MISMATCH = DWORD(14028);
 
17303
  {$EXTERNALSYM ERROR_SXS_FILE_HASH_MISMATCH}
 
17304
 
 
17305
//
 
17306
// MessageId: ERROR_SXS_POLICY_PARSE_ERROR
 
17307
//
 
17308
// MessageText:
 
17309
//
 
17310
//  The policy manifest contains one or more syntax errors.
 
17311
//
 
17312
  ERROR_SXS_POLICY_PARSE_ERROR = DWORD(14029);
 
17313
  {$EXTERNALSYM ERROR_SXS_POLICY_PARSE_ERROR}
 
17314
 
 
17315
//
 
17316
// MessageId: ERROR_SXS_XML_E_MISSINGQUOTE
 
17317
//
 
17318
// MessageText:
 
17319
//
 
17320
//  Manifest Parse Error : A string literal was expected, but no opening quote character was found.
 
17321
//
 
17322
  ERROR_SXS_XML_E_MISSINGQUOTE = DWORD(14030);
 
17323
  {$EXTERNALSYM ERROR_SXS_XML_E_MISSINGQUOTE}
 
17324
 
 
17325
//
 
17326
// MessageId: ERROR_SXS_XML_E_COMMENTSYNTAX
 
17327
//
 
17328
// MessageText:
 
17329
//
 
17330
//  Manifest Parse Error : Incorrect syntax was used in a comment.
 
17331
//
 
17332
  ERROR_SXS_XML_E_COMMENTSYNTAX = DWORD(14031);
 
17333
  {$EXTERNALSYM ERROR_SXS_XML_E_COMMENTSYNTAX}
 
17334
 
 
17335
//
 
17336
// MessageId: ERROR_SXS_XML_E_BADSTARTNAMECHAR
 
17337
//
 
17338
// MessageText:
 
17339
//
 
17340
//  Manifest Parse Error : A name was started with an invalid character.
 
17341
//
 
17342
  ERROR_SXS_XML_E_BADSTARTNAMECHAR = DWORD(14032);
 
17343
  {$EXTERNALSYM ERROR_SXS_XML_E_BADSTARTNAMECHAR}
 
17344
 
 
17345
//
 
17346
// MessageId: ERROR_SXS_XML_E_BADNAMECHAR
 
17347
//
 
17348
// MessageText:
 
17349
//
 
17350
//  Manifest Parse Error : A name contained an invalid character.
 
17351
//
 
17352
  ERROR_SXS_XML_E_BADNAMECHAR = DWORD(14033);
 
17353
  {$EXTERNALSYM ERROR_SXS_XML_E_BADNAMECHAR}
 
17354
 
 
17355
//
 
17356
// MessageId: ERROR_SXS_XML_E_BADCHARINSTRING
 
17357
//
 
17358
// MessageText:
 
17359
//
 
17360
//  Manifest Parse Error : A string literal contained an invalid character.
 
17361
//
 
17362
  ERROR_SXS_XML_E_BADCHARINSTRING = DWORD(14034);
 
17363
  {$EXTERNALSYM ERROR_SXS_XML_E_BADCHARINSTRING}
 
17364
 
 
17365
//
 
17366
// MessageId: ERROR_SXS_XML_E_XMLDECLSYNTAX
 
17367
//
 
17368
// MessageText:
 
17369
//
 
17370
//  Manifest Parse Error : Invalid syntax for an xml declaration.
 
17371
//
 
17372
  ERROR_SXS_XML_E_XMLDECLSYNTAX = DWORD(14035);
 
17373
  {$EXTERNALSYM ERROR_SXS_XML_E_XMLDECLSYNTAX}
 
17374
 
 
17375
//
 
17376
// MessageId: ERROR_SXS_XML_E_BADCHARDATA
 
17377
//
 
17378
// MessageText:
 
17379
//
 
17380
//  Manifest Parse Error : An Invalid character was found in text content.
 
17381
//
 
17382
  ERROR_SXS_XML_E_BADCHARDATA = DWORD(14036);
 
17383
  {$EXTERNALSYM ERROR_SXS_XML_E_BADCHARDATA}
 
17384
 
 
17385
//
 
17386
// MessageId: ERROR_SXS_XML_E_MISSINGWHITESPACE
 
17387
//
 
17388
// MessageText:
 
17389
//
 
17390
//  Manifest Parse Error : Required white space was missing.
 
17391
//
 
17392
  ERROR_SXS_XML_E_MISSINGWHITESPACE = DWORD(14037);
 
17393
  {$EXTERNALSYM ERROR_SXS_XML_E_MISSINGWHITESPACE}
 
17394
 
 
17395
//
 
17396
// MessageId: ERROR_SXS_XML_E_EXPECTINGTAGEND
 
17397
//
 
17398
// MessageText:
 
17399
//
 
17400
//  Manifest Parse Error : The character '>' was expected.
 
17401
//
 
17402
  ERROR_SXS_XML_E_EXPECTINGTAGEND = DWORD(14038);
 
17403
  {$EXTERNALSYM ERROR_SXS_XML_E_EXPECTINGTAGEND}
 
17404
 
 
17405
//
 
17406
// MessageId: ERROR_SXS_XML_E_MISSINGSEMICOLON
 
17407
//
 
17408
// MessageText:
 
17409
//
 
17410
//  Manifest Parse Error : A semi colon character was expected.
 
17411
//
 
17412
  ERROR_SXS_XML_E_MISSINGSEMICOLON = DWORD(14039);
 
17413
  {$EXTERNALSYM ERROR_SXS_XML_E_MISSINGSEMICOLON}
 
17414
 
 
17415
//
 
17416
// MessageId: ERROR_SXS_XML_E_UNBALANCEDPAREN
 
17417
//
 
17418
// MessageText:
 
17419
//
 
17420
//  Manifest Parse Error : Unbalanced parentheses.
 
17421
//
 
17422
  ERROR_SXS_XML_E_UNBALANCEDPAREN = DWORD(14040);
 
17423
  {$EXTERNALSYM ERROR_SXS_XML_E_UNBALANCEDPAREN}
 
17424
 
 
17425
//
 
17426
// MessageId: ERROR_SXS_XML_E_INTERNALERROR
 
17427
//
 
17428
// MessageText:
 
17429
//
 
17430
//  Manifest Parse Error : Internal error.
 
17431
//
 
17432
  ERROR_SXS_XML_E_INTERNALERROR = DWORD(14041);
 
17433
  {$EXTERNALSYM ERROR_SXS_XML_E_INTERNALERROR}
 
17434
 
 
17435
//
 
17436
// MessageId: ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE
 
17437
//
 
17438
// MessageText:
 
17439
//
 
17440
//  Manifest Parse Error : Whitespace is not allowed at this location.
 
17441
//
 
17442
  ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE = DWORD(14042);
 
17443
  {$EXTERNALSYM ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE}
 
17444
 
 
17445
//
 
17446
// MessageId: ERROR_SXS_XML_E_INCOMPLETE_ENCODING
 
17447
//
 
17448
// MessageText:
 
17449
//
 
17450
//  Manifest Parse Error : End of file reached in invalid state for current encoding.
 
17451
//
 
17452
  ERROR_SXS_XML_E_INCOMPLETE_ENCODING = DWORD(14043);
 
17453
  {$EXTERNALSYM ERROR_SXS_XML_E_INCOMPLETE_ENCODING}
 
17454
 
 
17455
//
 
17456
// MessageId: ERROR_SXS_XML_E_MISSING_PAREN
 
17457
//
 
17458
// MessageText:
 
17459
//
 
17460
//  Manifest Parse Error : Missing parenthesis.
 
17461
//
 
17462
  ERROR_SXS_XML_E_MISSING_PAREN = DWORD(14044);
 
17463
  {$EXTERNALSYM ERROR_SXS_XML_E_MISSING_PAREN}
 
17464
 
 
17465
//
 
17466
// MessageId: ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE
 
17467
//
 
17468
// MessageText:
 
17469
//
 
17470
//  Manifest Parse Error : A single or double closing quote character (\' or \") is missing.
 
17471
//
 
17472
  ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE = DWORD(14045);
 
17473
  {$EXTERNALSYM ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE}
 
17474
 
 
17475
//
 
17476
// MessageId: ERROR_SXS_XML_E_MULTIPLE_COLONS
 
17477
//
 
17478
// MessageText:
 
17479
//
 
17480
//  Manifest Parse Error : Multiple colons are not allowed in a name.
 
17481
//
 
17482
  ERROR_SXS_XML_E_MULTIPLE_COLONS = DWORD(14046);
 
17483
  {$EXTERNALSYM ERROR_SXS_XML_E_MULTIPLE_COLONS}
 
17484
 
 
17485
//
 
17486
// MessageId: ERROR_SXS_XML_E_INVALID_DECIMAL
 
17487
//
 
17488
// MessageText:
 
17489
//
 
17490
//  Manifest Parse Error : Invalid character for decimal digit.
 
17491
//
 
17492
  ERROR_SXS_XML_E_INVALID_DECIMAL = DWORD(14047);
 
17493
  {$EXTERNALSYM ERROR_SXS_XML_E_INVALID_DECIMAL}
 
17494
 
 
17495
//
 
17496
// MessageId: ERROR_SXS_XML_E_INVALID_HEXIDECIMAL
 
17497
//
 
17498
// MessageText:
 
17499
//
 
17500
//  Manifest Parse Error : Invalid character for hexidecimal digit.
 
17501
//
 
17502
  ERROR_SXS_XML_E_INVALID_HEXIDECIMAL = DWORD(14048);
 
17503
  {$EXTERNALSYM ERROR_SXS_XML_E_INVALID_HEXIDECIMAL}
 
17504
 
 
17505
//
 
17506
// MessageId: ERROR_SXS_XML_E_INVALID_UNICODE
 
17507
//
 
17508
// MessageText:
 
17509
//
 
17510
//  Manifest Parse Error : Invalid unicode character value for this platform.
 
17511
//
 
17512
  ERROR_SXS_XML_E_INVALID_UNICODE = DWORD(14049);
 
17513
  {$EXTERNALSYM ERROR_SXS_XML_E_INVALID_UNICODE}
 
17514
 
 
17515
//
 
17516
// MessageId: ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK
 
17517
//
 
17518
// MessageText:
 
17519
//
 
17520
//  Manifest Parse Error : Expecting whitespace or '?'.
 
17521
//
 
17522
  ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK = DWORD(14050);
 
17523
  {$EXTERNALSYM ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK}
 
17524
 
 
17525
//
 
17526
// MessageId: ERROR_SXS_XML_E_UNEXPECTEDENDTAG
 
17527
//
 
17528
// MessageText:
 
17529
//
 
17530
//  Manifest Parse Error : End tag was not expected at this location.
 
17531
//
 
17532
  ERROR_SXS_XML_E_UNEXPECTEDENDTAG = DWORD(14051);
 
17533
  {$EXTERNALSYM ERROR_SXS_XML_E_UNEXPECTEDENDTAG}
 
17534
 
 
17535
//
 
17536
// MessageId: ERROR_SXS_XML_E_UNCLOSEDTAG
 
17537
//
 
17538
// MessageText:
 
17539
//
 
17540
//  Manifest Parse Error : The following tags were not closed: %1.
 
17541
//
 
17542
  ERROR_SXS_XML_E_UNCLOSEDTAG = DWORD(14052);
 
17543
  {$EXTERNALSYM ERROR_SXS_XML_E_UNCLOSEDTAG}
 
17544
 
 
17545
//
 
17546
// MessageId: ERROR_SXS_XML_E_DUPLICATEATTRIBUTE
 
17547
//
 
17548
// MessageText:
 
17549
//
 
17550
//  Manifest Parse Error : Duplicate attribute.
 
17551
//
 
17552
  ERROR_SXS_XML_E_DUPLICATEATTRIBUTE = DWORD(14053);
 
17553
  {$EXTERNALSYM ERROR_SXS_XML_E_DUPLICATEATTRIBUTE}
 
17554
 
 
17555
//
 
17556
// MessageId: ERROR_SXS_XML_E_MULTIPLEROOTS
 
17557
//
 
17558
// MessageText:
 
17559
//
 
17560
//  Manifest Parse Error : Only one top level element is allowed in an XML document.
 
17561
//
 
17562
  ERROR_SXS_XML_E_MULTIPLEROOTS = DWORD(14054);
 
17563
  {$EXTERNALSYM ERROR_SXS_XML_E_MULTIPLEROOTS}
 
17564
 
 
17565
//
 
17566
// MessageId: ERROR_SXS_XML_E_INVALIDATROOTLEVEL
 
17567
//
 
17568
// MessageText:
 
17569
//
 
17570
//  Manifest Parse Error : Invalid at the top level of the document.
 
17571
//
 
17572
  ERROR_SXS_XML_E_INVALIDATROOTLEVEL = DWORD(14055);
 
17573
  {$EXTERNALSYM ERROR_SXS_XML_E_INVALIDATROOTLEVEL}
 
17574
 
 
17575
//
 
17576
// MessageId: ERROR_SXS_XML_E_BADXMLDECL
 
17577
//
 
17578
// MessageText:
 
17579
//
 
17580
//  Manifest Parse Error : Invalid xml declaration.
 
17581
//
 
17582
  ERROR_SXS_XML_E_BADXMLDECL = DWORD(14056);
 
17583
  {$EXTERNALSYM ERROR_SXS_XML_E_BADXMLDECL}
 
17584
 
 
17585
//
 
17586
// MessageId: ERROR_SXS_XML_E_MISSINGROOT
 
17587
//
 
17588
// MessageText:
 
17589
//
 
17590
//  Manifest Parse Error : XML document must have a top level element.
 
17591
//
 
17592
  ERROR_SXS_XML_E_MISSINGROOT = DWORD(14057);
 
17593
  {$EXTERNALSYM ERROR_SXS_XML_E_MISSINGROOT}
 
17594
 
 
17595
//
 
17596
// MessageId: ERROR_SXS_XML_E_UNEXPECTEDEOF
 
17597
//
 
17598
// MessageText:
 
17599
//
 
17600
//  Manifest Parse Error : Unexpected end of file.
 
17601
//
 
17602
  ERROR_SXS_XML_E_UNEXPECTEDEOF = DWORD(14058);
 
17603
  {$EXTERNALSYM ERROR_SXS_XML_E_UNEXPECTEDEOF}
 
17604
 
 
17605
//
 
17606
// MessageId: ERROR_SXS_XML_E_BADPEREFINSUBSET
 
17607
//
 
17608
// MessageText:
 
17609
//
 
17610
//  Manifest Parse Error : Parameter entities cannot be used inside markup declarations in an internal subset.
 
17611
//
 
17612
  ERROR_SXS_XML_E_BADPEREFINSUBSET = DWORD(14059);
 
17613
  {$EXTERNALSYM ERROR_SXS_XML_E_BADPEREFINSUBSET}
 
17614
 
 
17615
//
 
17616
// MessageId: ERROR_SXS_XML_E_UNCLOSEDSTARTTAG
 
17617
//
 
17618
// MessageText:
 
17619
//
 
17620
//  Manifest Parse Error : Element was not closed.
 
17621
//
 
17622
  ERROR_SXS_XML_E_UNCLOSEDSTARTTAG = DWORD(14060);
 
17623
  {$EXTERNALSYM ERROR_SXS_XML_E_UNCLOSEDSTARTTAG}
 
17624
 
 
17625
//
 
17626
// MessageId: ERROR_SXS_XML_E_UNCLOSEDENDTAG
 
17627
//
 
17628
// MessageText:
 
17629
//
 
17630
//  Manifest Parse Error : End element was missing the character '>'.
 
17631
//
 
17632
  ERROR_SXS_XML_E_UNCLOSEDENDTAG = DWORD(14061);
 
17633
  {$EXTERNALSYM ERROR_SXS_XML_E_UNCLOSEDENDTAG}
 
17634
 
 
17635
//
 
17636
// MessageId: ERROR_SXS_XML_E_UNCLOSEDSTRING
 
17637
//
 
17638
// MessageText:
 
17639
//
 
17640
//  Manifest Parse Error : A string literal was not closed.
 
17641
//
 
17642
  ERROR_SXS_XML_E_UNCLOSEDSTRING = DWORD(14062);
 
17643
  {$EXTERNALSYM ERROR_SXS_XML_E_UNCLOSEDSTRING}
 
17644
 
 
17645
//
 
17646
// MessageId: ERROR_SXS_XML_E_UNCLOSEDCOMMENT
 
17647
//
 
17648
// MessageText:
 
17649
//
 
17650
//  Manifest Parse Error : A comment was not closed.
 
17651
//
 
17652
  ERROR_SXS_XML_E_UNCLOSEDCOMMENT = DWORD(14063);
 
17653
  {$EXTERNALSYM ERROR_SXS_XML_E_UNCLOSEDCOMMENT}
 
17654
 
 
17655
//
 
17656
// MessageId: ERROR_SXS_XML_E_UNCLOSEDDECL
 
17657
//
 
17658
// MessageText:
 
17659
//
 
17660
//  Manifest Parse Error : A declaration was not closed.
 
17661
//
 
17662
  ERROR_SXS_XML_E_UNCLOSEDDECL = DWORD(14064);
 
17663
  {$EXTERNALSYM ERROR_SXS_XML_E_UNCLOSEDDECL}
 
17664
 
 
17665
//
 
17666
// MessageId: ERROR_SXS_XML_E_UNCLOSEDCDATA
 
17667
//
 
17668
// MessageText:
 
17669
//
 
17670
//  Manifest Parse Error : A CDATA section was not closed.
 
17671
//
 
17672
  ERROR_SXS_XML_E_UNCLOSEDCDATA = DWORD(14065);
 
17673
  {$EXTERNALSYM ERROR_SXS_XML_E_UNCLOSEDCDATA}
 
17674
 
 
17675
//
 
17676
// MessageId: ERROR_SXS_XML_E_RESERVEDNAMESPACE
 
17677
//
 
17678
// MessageText:
 
17679
//
 
17680
//  Manifest Parse Error : The namespace prefix is not allowed to start with the reserved string "xml".
 
17681
//
 
17682
  ERROR_SXS_XML_E_RESERVEDNAMESPACE = DWORD(14066);
 
17683
  {$EXTERNALSYM ERROR_SXS_XML_E_RESERVEDNAMESPACE}
 
17684
 
 
17685
//
 
17686
// MessageId: ERROR_SXS_XML_E_INVALIDENCODING
 
17687
//
 
17688
// MessageText:
 
17689
//
 
17690
//  Manifest Parse Error : System does not support the specified encoding.
 
17691
//
 
17692
  ERROR_SXS_XML_E_INVALIDENCODING = DWORD(14067);
 
17693
  {$EXTERNALSYM ERROR_SXS_XML_E_INVALIDENCODING}
 
17694
 
 
17695
//
 
17696
// MessageId: ERROR_SXS_XML_E_INVALIDSWITCH
 
17697
//
 
17698
// MessageText:
 
17699
//
 
17700
//  Manifest Parse Error : Switch from current encoding to specified encoding not supported.
 
17701
//
 
17702
  ERROR_SXS_XML_E_INVALIDSWITCH = DWORD(14068);
 
17703
  {$EXTERNALSYM ERROR_SXS_XML_E_INVALIDSWITCH}
 
17704
 
 
17705
//
 
17706
// MessageId: ERROR_SXS_XML_E_BADXMLCASE
 
17707
//
 
17708
// MessageText:
 
17709
//
 
17710
//  Manifest Parse Error : The name 'xml' is reserved and must be lower case.
 
17711
//
 
17712
  ERROR_SXS_XML_E_BADXMLCASE = DWORD(14069);
 
17713
  {$EXTERNALSYM ERROR_SXS_XML_E_BADXMLCASE}
 
17714
 
 
17715
//
 
17716
// MessageId: ERROR_SXS_XML_E_INVALID_STANDALONE
 
17717
//
 
17718
// MessageText:
 
17719
//
 
17720
//  Manifest Parse Error : The standalone attribute must have the value 'yes' or 'no'.
 
17721
//
 
17722
  ERROR_SXS_XML_E_INVALID_STANDALONE = DWORD(14070);
 
17723
  {$EXTERNALSYM ERROR_SXS_XML_E_INVALID_STANDALONE}
 
17724
 
 
17725
//
 
17726
// MessageId: ERROR_SXS_XML_E_UNEXPECTED_STANDALONE
 
17727
//
 
17728
// MessageText:
 
17729
//
 
17730
//  Manifest Parse Error : The standalone attribute cannot be used in external entities.
 
17731
//
 
17732
  ERROR_SXS_XML_E_UNEXPECTED_STANDALONE = DWORD(14071);
 
17733
  {$EXTERNALSYM ERROR_SXS_XML_E_UNEXPECTED_STANDALONE}
 
17734
 
 
17735
//
 
17736
// MessageId: ERROR_SXS_XML_E_INVALID_VERSION
 
17737
//
 
17738
// MessageText:
 
17739
//
 
17740
//  Manifest Parse Error : Invalid version number.
 
17741
//
 
17742
  ERROR_SXS_XML_E_INVALID_VERSION = DWORD(14072);
 
17743
  {$EXTERNALSYM ERROR_SXS_XML_E_INVALID_VERSION}
 
17744
 
 
17745
//
 
17746
// MessageId: ERROR_SXS_XML_E_MISSINGEQUALS
 
17747
//
 
17748
// MessageText:
 
17749
//
 
17750
//  Manifest Parse Error : Missing equals sign between attribute and attribute value.
 
17751
//
 
17752
  ERROR_SXS_XML_E_MISSINGEQUALS = DWORD(14073);
 
17753
  {$EXTERNALSYM ERROR_SXS_XML_E_MISSINGEQUALS}
 
17754
 
 
17755
//
 
17756
// MessageId: ERROR_SXS_PROTECTION_RECOVERY_FAILED
 
17757
//
 
17758
// MessageText:
 
17759
//
 
17760
//  Assembly Protection Error : Unable to recover the specified assembly.
 
17761
//
 
17762
  ERROR_SXS_PROTECTION_RECOVERY_FAILED = DWORD(14074);
 
17763
  {$EXTERNALSYM ERROR_SXS_PROTECTION_RECOVERY_FAILED}
 
17764
 
 
17765
//
 
17766
// MessageId: ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT
 
17767
//
 
17768
// MessageText:
 
17769
//
 
17770
//  Assembly Protection Error : The public key for an assembly was too short to be allowed.
 
17771
//
 
17772
  ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT = DWORD(14075);
 
17773
  {$EXTERNALSYM ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT}
 
17774
 
 
17775
//
 
17776
// MessageId: ERROR_SXS_PROTECTION_CATALOG_NOT_VALID
 
17777
//
 
17778
// MessageText:
 
17779
//
 
17780
//  Assembly Protection Error : The catalog for an assembly is not valid, or does not match the assembly's manifest.
 
17781
//
 
17782
  ERROR_SXS_PROTECTION_CATALOG_NOT_VALID = DWORD(14076);
 
17783
  {$EXTERNALSYM ERROR_SXS_PROTECTION_CATALOG_NOT_VALID}
 
17784
 
 
17785
//
 
17786
// MessageId: ERROR_SXS_UNTRANSLATABLE_HRESULT
 
17787
//
 
17788
// MessageText:
 
17789
//
 
17790
//  An HRESULT could not be translated to a corresponding Win32 error code.
 
17791
//
 
17792
  ERROR_SXS_UNTRANSLATABLE_HRESULT = DWORD(14077);
 
17793
  {$EXTERNALSYM ERROR_SXS_UNTRANSLATABLE_HRESULT}
 
17794
 
 
17795
//
 
17796
// MessageId: ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING
 
17797
//
 
17798
// MessageText:
 
17799
//
 
17800
//  Assembly Protection Error : The catalog for an assembly is missing.
 
17801
//
 
17802
  ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING = DWORD(14078);
 
17803
  {$EXTERNALSYM ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING}
 
17804
 
 
17805
//
 
17806
// MessageId: ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE
 
17807
//
 
17808
// MessageText:
 
17809
//
 
17810
//  The supplied assembly identity is missing one or more attributes which must be present in this context.
 
17811
//
 
17812
  ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE = DWORD(14079);
 
17813
  {$EXTERNALSYM ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE}
 
17814
 
 
17815
//
 
17816
// MessageId: ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME
 
17817
//
 
17818
// MessageText:
 
17819
//
 
17820
//  The supplied assembly identity has one or more attribute names that contain characters not permitted in XML names.
 
17821
//
 
17822
  ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME = DWORD(14080);
 
17823
  {$EXTERNALSYM ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME}
 
17824
 
 
17825
///////////////////////////////////////////////////
 
17826
//                                               //
 
17827
//           End of Side By Side Error Codes     //
 
17828
//                                               //
 
17829
//                 14000 to 14999                //
 
17830
///////////////////////////////////////////////////
 
17831
 
 
17832
 
 
17833
///////////////////////////////////////////////////
 
17834
//                                               //
 
17835
//           Start of IPSec Error codes          //
 
17836
//                                               //
 
17837
//                 13000 to 13999                //
 
17838
///////////////////////////////////////////////////
 
17839
 
 
17840
//
 
17841
// MessageId: ERROR_IPSEC_QM_POLICY_EXISTS
 
17842
//
 
17843
// MessageText:
 
17844
//
 
17845
//  The specified quick mode policy already exists.
 
17846
//
 
17847
  ERROR_IPSEC_QM_POLICY_EXISTS = DWORD(13000);
 
17848
  {$EXTERNALSYM ERROR_IPSEC_QM_POLICY_EXISTS}
 
17849
 
 
17850
//
 
17851
// MessageId: ERROR_IPSEC_QM_POLICY_NOT_FOUND
 
17852
//
 
17853
// MessageText:
 
17854
//
 
17855
//  The specified quick mode policy was not found.
 
17856
//
 
17857
  ERROR_IPSEC_QM_POLICY_NOT_FOUND = DWORD(13001);
 
17858
  {$EXTERNALSYM ERROR_IPSEC_QM_POLICY_NOT_FOUND}
 
17859
 
 
17860
//
 
17861
// MessageId: ERROR_IPSEC_QM_POLICY_IN_USE
 
17862
//
 
17863
// MessageText:
 
17864
//
 
17865
//  The specified quick mode policy is being used.
 
17866
//
 
17867
  ERROR_IPSEC_QM_POLICY_IN_USE = DWORD(13002);
 
17868
  {$EXTERNALSYM ERROR_IPSEC_QM_POLICY_IN_USE}
 
17869
 
 
17870
//
 
17871
// MessageId: ERROR_IPSEC_MM_POLICY_EXISTS
 
17872
//
 
17873
// MessageText:
 
17874
//
 
17875
//  The specified main mode policy already exists.
 
17876
//
 
17877
  ERROR_IPSEC_MM_POLICY_EXISTS = DWORD(13003);
 
17878
  {$EXTERNALSYM ERROR_IPSEC_MM_POLICY_EXISTS}
 
17879
 
 
17880
//
 
17881
// MessageId: ERROR_IPSEC_MM_POLICY_NOT_FOUND
 
17882
//
 
17883
// MessageText:
 
17884
//
 
17885
//  The specified main mode policy was not found
 
17886
//
 
17887
  ERROR_IPSEC_MM_POLICY_NOT_FOUND = DWORD(13004);
 
17888
  {$EXTERNALSYM ERROR_IPSEC_MM_POLICY_NOT_FOUND}
 
17889
 
 
17890
//
 
17891
// MessageId: ERROR_IPSEC_MM_POLICY_IN_USE
 
17892
//
 
17893
// MessageText:
 
17894
//
 
17895
//  The specified main mode policy is being used.
 
17896
//
 
17897
  ERROR_IPSEC_MM_POLICY_IN_USE = DWORD(13005);
 
17898
  {$EXTERNALSYM ERROR_IPSEC_MM_POLICY_IN_USE}
 
17899
 
 
17900
//
 
17901
// MessageId: ERROR_IPSEC_MM_FILTER_EXISTS
 
17902
//
 
17903
// MessageText:
 
17904
//
 
17905
//  The specified main mode filter already exists.
 
17906
//
 
17907
  ERROR_IPSEC_MM_FILTER_EXISTS = DWORD(13006);
 
17908
  {$EXTERNALSYM ERROR_IPSEC_MM_FILTER_EXISTS}
 
17909
 
 
17910
//
 
17911
// MessageId: ERROR_IPSEC_MM_FILTER_NOT_FOUND
 
17912
//
 
17913
// MessageText:
 
17914
//
 
17915
//  The specified main mode filter was not found.
 
17916
//
 
17917
  ERROR_IPSEC_MM_FILTER_NOT_FOUND = DWORD(13007);
 
17918
  {$EXTERNALSYM ERROR_IPSEC_MM_FILTER_NOT_FOUND}
 
17919
 
 
17920
//
 
17921
// MessageId: ERROR_IPSEC_TRANSPORT_FILTER_EXISTS
 
17922
//
 
17923
// MessageText:
 
17924
//
 
17925
//  The specified transport mode filter already exists.
 
17926
//
 
17927
  ERROR_IPSEC_TRANSPORT_FILTER_EXISTS = DWORD(13008);
 
17928
  {$EXTERNALSYM ERROR_IPSEC_TRANSPORT_FILTER_EXISTS}
 
17929
 
 
17930
//
 
17931
// MessageId: ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND
 
17932
//
 
17933
// MessageText:
 
17934
//
 
17935
//  The specified transport mode filter does not exist.
 
17936
//
 
17937
  ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND = DWORD(13009);
 
17938
  {$EXTERNALSYM ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND}
 
17939
 
 
17940
//
 
17941
// MessageId: ERROR_IPSEC_MM_AUTH_EXISTS
 
17942
//
 
17943
// MessageText:
 
17944
//
 
17945
//  The specified main mode authentication list exists.
 
17946
//
 
17947
  ERROR_IPSEC_MM_AUTH_EXISTS = DWORD(13010);
 
17948
  {$EXTERNALSYM ERROR_IPSEC_MM_AUTH_EXISTS}
 
17949
 
 
17950
//
 
17951
// MessageId: ERROR_IPSEC_MM_AUTH_NOT_FOUND
 
17952
//
 
17953
// MessageText:
 
17954
//
 
17955
//  The specified main mode authentication list was not found.
 
17956
//
 
17957
  ERROR_IPSEC_MM_AUTH_NOT_FOUND = DWORD(13011);
 
17958
  {$EXTERNALSYM ERROR_IPSEC_MM_AUTH_NOT_FOUND}
 
17959
 
 
17960
//
 
17961
// MessageId: ERROR_IPSEC_MM_AUTH_IN_USE
 
17962
//
 
17963
// MessageText:
 
17964
//
 
17965
//  The specified quick mode policy is being used.
 
17966
//
 
17967
  ERROR_IPSEC_MM_AUTH_IN_USE = DWORD(13012);
 
17968
  {$EXTERNALSYM ERROR_IPSEC_MM_AUTH_IN_USE}
 
17969
 
 
17970
//
 
17971
// MessageId: ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND
 
17972
//
 
17973
// MessageText:
 
17974
//
 
17975
//  The specified main mode policy was not found.
 
17976
//
 
17977
  ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND = DWORD(13013);
 
17978
  {$EXTERNALSYM ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND}
 
17979
 
 
17980
//
 
17981
// MessageId: ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND
 
17982
//
 
17983
// MessageText:
 
17984
//
 
17985
//  The specified quick mode policy was not found
 
17986
//
 
17987
  ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND = DWORD(13014);
 
17988
  {$EXTERNALSYM ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND}
 
17989
 
 
17990
//
 
17991
// MessageId: ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND
 
17992
//
 
17993
// MessageText:
 
17994
//
 
17995
//  The manifest file contains one or more syntax errors.
 
17996
//
 
17997
  ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND = DWORD(13015);
 
17998
  {$EXTERNALSYM ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND}
 
17999
 
 
18000
//
 
18001
// MessageId: ERROR_IPSEC_TUNNEL_FILTER_EXISTS
 
18002
//
 
18003
// MessageText:
 
18004
//
 
18005
//  The application attempted to activate a disabled activation context.
 
18006
//
 
18007
  ERROR_IPSEC_TUNNEL_FILTER_EXISTS = DWORD(13016);
 
18008
  {$EXTERNALSYM ERROR_IPSEC_TUNNEL_FILTER_EXISTS}
 
18009
 
 
18010
//
 
18011
// MessageId: ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND
 
18012
//
 
18013
// MessageText:
 
18014
//
 
18015
//  The requested lookup key was not found in any active activation context.
 
18016
//
 
18017
  ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND = DWORD(13017);
 
18018
  {$EXTERNALSYM ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND}
 
18019
 
 
18020
//
 
18021
// MessageId: ERROR_IPSEC_MM_FILTER_PENDING_DELETION
 
18022
//
 
18023
// MessageText:
 
18024
//
 
18025
//  The Main Mode filter is pending deletion.
 
18026
//
 
18027
  ERROR_IPSEC_MM_FILTER_PENDING_DELETION = DWORD(13018);
 
18028
  {$EXTERNALSYM ERROR_IPSEC_MM_FILTER_PENDING_DELETION}
 
18029
 
 
18030
//
 
18031
// MessageId: ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION
 
18032
//
 
18033
// MessageText:
 
18034
//
 
18035
//  The transport filter is pending deletion.
 
18036
//
 
18037
  ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION = DWORD(13019);
 
18038
  {$EXTERNALSYM ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION}
 
18039
 
 
18040
//
 
18041
// MessageId: ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION
 
18042
//
 
18043
// MessageText:
 
18044
//
 
18045
//  The tunnel filter is pending deletion.
 
18046
//
 
18047
  ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION = DWORD(13020);
 
18048
  {$EXTERNALSYM ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION}
 
18049
 
 
18050
//
 
18051
// MessageId: ERROR_IPSEC_MM_POLICY_PENDING_DELETION
 
18052
//
 
18053
// MessageText:
 
18054
//
 
18055
//  The Main Mode policy is pending deletion.
 
18056
//
 
18057
  ERROR_IPSEC_MM_POLICY_PENDING_DELETION = DWORD(13021);
 
18058
  {$EXTERNALSYM ERROR_IPSEC_MM_POLICY_PENDING_DELETION}
 
18059
 
 
18060
//
 
18061
// MessageId: ERROR_IPSEC_MM_AUTH_PENDING_DELETION
 
18062
//
 
18063
// MessageText:
 
18064
//
 
18065
//  The Main Mode authentication bundle is pending deletion.
 
18066
//
 
18067
  ERROR_IPSEC_MM_AUTH_PENDING_DELETION = DWORD(13022);
 
18068
  {$EXTERNALSYM ERROR_IPSEC_MM_AUTH_PENDING_DELETION}
 
18069
 
 
18070
//
 
18071
// MessageId: ERROR_IPSEC_QM_POLICY_PENDING_DELETION
 
18072
//
 
18073
// MessageText:
 
18074
//
 
18075
//  The Quick Mode policy is pending deletion.
 
18076
//
 
18077
  ERROR_IPSEC_QM_POLICY_PENDING_DELETION = DWORD(13023);
 
18078
  {$EXTERNALSYM ERROR_IPSEC_QM_POLICY_PENDING_DELETION}
 
18079
 
 
18080
//
 
18081
// MessageId: WARNING_IPSEC_MM_POLICY_PRUNED
 
18082
//
 
18083
// MessageText:
 
18084
//
 
18085
//  The Main Mode policy was successfully added, but some of the requested offers are not supported.
 
18086
//
 
18087
  WARNING_IPSEC_MM_POLICY_PRUNED = DWORD(13024);
 
18088
  {$EXTERNALSYM WARNING_IPSEC_MM_POLICY_PRUNED}
 
18089
 
 
18090
//
 
18091
// MessageId: WARNING_IPSEC_QM_POLICY_PRUNED
 
18092
//
 
18093
// MessageText:
 
18094
//
 
18095
//  The Quick Mode policy was successfully added, but some of the requested offers are not supported.
 
18096
//
 
18097
  WARNING_IPSEC_QM_POLICY_PRUNED = DWORD(13025);
 
18098
  {$EXTERNALSYM WARNING_IPSEC_QM_POLICY_PRUNED}
 
18099
 
 
18100
//
 
18101
// MessageId: ERROR_IPSEC_IKE_NEG_STATUS_BEGIN
 
18102
//
 
18103
// MessageText:
 
18104
//
 
18105
//  ERROR_IPSEC_IKE_NEG_STATUS_BEGIN
 
18106
//
 
18107
  ERROR_IPSEC_IKE_NEG_STATUS_BEGIN = DWORD(13800);
 
18108
  {$EXTERNALSYM ERROR_IPSEC_IKE_NEG_STATUS_BEGIN}
 
18109
 
 
18110
//
 
18111
// MessageId: ERROR_IPSEC_IKE_AUTH_FAIL
 
18112
//
 
18113
// MessageText:
 
18114
//
 
18115
//  IKE authentication credentials are unacceptable
 
18116
//
 
18117
  ERROR_IPSEC_IKE_AUTH_FAIL = DWORD(13801);
 
18118
  {$EXTERNALSYM ERROR_IPSEC_IKE_AUTH_FAIL}
 
18119
 
 
18120
//
 
18121
// MessageId: ERROR_IPSEC_IKE_ATTRIB_FAIL
 
18122
//
 
18123
// MessageText:
 
18124
//
 
18125
//  IKE security attributes are unacceptable
 
18126
//
 
18127
  ERROR_IPSEC_IKE_ATTRIB_FAIL = DWORD(13802);
 
18128
  {$EXTERNALSYM ERROR_IPSEC_IKE_ATTRIB_FAIL}
 
18129
 
 
18130
//
 
18131
// MessageId: ERROR_IPSEC_IKE_NEGOTIATION_PENDING
 
18132
//
 
18133
// MessageText:
 
18134
//
 
18135
//  IKE Negotiation in progress
 
18136
//
 
18137
  ERROR_IPSEC_IKE_NEGOTIATION_PENDING = DWORD(13803);
 
18138
  {$EXTERNALSYM ERROR_IPSEC_IKE_NEGOTIATION_PENDING}
 
18139
 
 
18140
//
 
18141
// MessageId: ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR
 
18142
//
 
18143
// MessageText:
 
18144
//
 
18145
//  General processing error
 
18146
//
 
18147
  ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR = DWORD(13804);
 
18148
  {$EXTERNALSYM ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR}
 
18149
 
 
18150
//
 
18151
// MessageId: ERROR_IPSEC_IKE_TIMED_OUT
 
18152
//
 
18153
// MessageText:
 
18154
//
 
18155
//  Negotiation timed out
 
18156
//
 
18157
  ERROR_IPSEC_IKE_TIMED_OUT = DWORD(13805);
 
18158
  {$EXTERNALSYM ERROR_IPSEC_IKE_TIMED_OUT}
 
18159
 
 
18160
//
 
18161
// MessageId: ERROR_IPSEC_IKE_NO_CERT
 
18162
//
 
18163
// MessageText:
 
18164
//
 
18165
//  IKE failed to find valid machine certificate
 
18166
//
 
18167
  ERROR_IPSEC_IKE_NO_CERT = DWORD(13806);
 
18168
  {$EXTERNALSYM ERROR_IPSEC_IKE_NO_CERT}
 
18169
 
 
18170
//
 
18171
// MessageId: ERROR_IPSEC_IKE_SA_DELETED
 
18172
//
 
18173
// MessageText:
 
18174
//
 
18175
//  IKE SA deleted by peer before establishment completed
 
18176
//
 
18177
  ERROR_IPSEC_IKE_SA_DELETED = DWORD(13807);
 
18178
  {$EXTERNALSYM ERROR_IPSEC_IKE_SA_DELETED}
 
18179
 
 
18180
//
 
18181
// MessageId: ERROR_IPSEC_IKE_SA_REAPED
 
18182
//
 
18183
// MessageText:
 
18184
//
 
18185
//  IKE SA deleted before establishment completed
 
18186
//
 
18187
  ERROR_IPSEC_IKE_SA_REAPED = DWORD(13808);
 
18188
  {$EXTERNALSYM ERROR_IPSEC_IKE_SA_REAPED}
 
18189
 
 
18190
//
 
18191
// MessageId: ERROR_IPSEC_IKE_MM_ACQUIRE_DROP
 
18192
//
 
18193
// MessageText:
 
18194
//
 
18195
//  Negotiation request sat in Queue too long
 
18196
//
 
18197
  ERROR_IPSEC_IKE_MM_ACQUIRE_DROP = DWORD(13809);
 
18198
  {$EXTERNALSYM ERROR_IPSEC_IKE_MM_ACQUIRE_DROP}
 
18199
 
 
18200
//
 
18201
// MessageId: ERROR_IPSEC_IKE_QM_ACQUIRE_DROP
 
18202
//
 
18203
// MessageText:
 
18204
//
 
18205
//  Negotiation request sat in Queue too long
 
18206
//
 
18207
  ERROR_IPSEC_IKE_QM_ACQUIRE_DROP = DWORD(13810);
 
18208
  {$EXTERNALSYM ERROR_IPSEC_IKE_QM_ACQUIRE_DROP}
 
18209
 
 
18210
//
 
18211
// MessageId: ERROR_IPSEC_IKE_QUEUE_DROP_MM
 
18212
//
 
18213
// MessageText:
 
18214
//
 
18215
//  Negotiation request sat in Queue too long
 
18216
//
 
18217
  ERROR_IPSEC_IKE_QUEUE_DROP_MM = DWORD(13811);
 
18218
  {$EXTERNALSYM ERROR_IPSEC_IKE_QUEUE_DROP_MM}
 
18219
 
 
18220
//
 
18221
// MessageId: ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM
 
18222
//
 
18223
// MessageText:
 
18224
//
 
18225
//  Negotiation request sat in Queue too long
 
18226
//
 
18227
  ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM = DWORD(13812);
 
18228
  {$EXTERNALSYM ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM}
 
18229
 
 
18230
//
 
18231
// MessageId: ERROR_IPSEC_IKE_DROP_NO_RESPONSE
 
18232
//
 
18233
// MessageText:
 
18234
//
 
18235
//  No response from peer
 
18236
//
 
18237
  ERROR_IPSEC_IKE_DROP_NO_RESPONSE = DWORD(13813);
 
18238
  {$EXTERNALSYM ERROR_IPSEC_IKE_DROP_NO_RESPONSE}
 
18239
 
 
18240
//
 
18241
// MessageId: ERROR_IPSEC_IKE_MM_DELAY_DROP
 
18242
//
 
18243
// MessageText:
 
18244
//
 
18245
//  Negotiation took too long
 
18246
//
 
18247
  ERROR_IPSEC_IKE_MM_DELAY_DROP = DWORD(13814);
 
18248
  {$EXTERNALSYM ERROR_IPSEC_IKE_MM_DELAY_DROP}
 
18249
 
 
18250
//
 
18251
// MessageId: ERROR_IPSEC_IKE_QM_DELAY_DROP
 
18252
//
 
18253
// MessageText:
 
18254
//
 
18255
//  Negotiation took too long
 
18256
//
 
18257
  ERROR_IPSEC_IKE_QM_DELAY_DROP = DWORD(13815);
 
18258
  {$EXTERNALSYM ERROR_IPSEC_IKE_QM_DELAY_DROP}
 
18259
 
 
18260
//
 
18261
// MessageId: ERROR_IPSEC_IKE_ERROR
 
18262
//
 
18263
// MessageText:
 
18264
//
 
18265
//  Unknown error occurred
 
18266
//
 
18267
  ERROR_IPSEC_IKE_ERROR = DWORD(13816);
 
18268
  {$EXTERNALSYM ERROR_IPSEC_IKE_ERROR}
 
18269
 
 
18270
//
 
18271
// MessageId: ERROR_IPSEC_IKE_CRL_FAILED
 
18272
//
 
18273
// MessageText:
 
18274
//
 
18275
//  Certificate Revocation Check failed
 
18276
//
 
18277
  ERROR_IPSEC_IKE_CRL_FAILED = DWORD(13817);
 
18278
  {$EXTERNALSYM ERROR_IPSEC_IKE_CRL_FAILED}
 
18279
 
 
18280
//
 
18281
// MessageId: ERROR_IPSEC_IKE_INVALID_KEY_USAGE
 
18282
//
 
18283
// MessageText:
 
18284
//
 
18285
//  Invalid certificate key usage
 
18286
//
 
18287
  ERROR_IPSEC_IKE_INVALID_KEY_USAGE = DWORD(13818);
 
18288
  {$EXTERNALSYM ERROR_IPSEC_IKE_INVALID_KEY_USAGE}
 
18289
 
 
18290
//
 
18291
// MessageId: ERROR_IPSEC_IKE_INVALID_CERT_TYPE
 
18292
//
 
18293
// MessageText:
 
18294
//
 
18295
//  Invalid certificate type
 
18296
//
 
18297
  ERROR_IPSEC_IKE_INVALID_CERT_TYPE = DWORD(13819);
 
18298
  {$EXTERNALSYM ERROR_IPSEC_IKE_INVALID_CERT_TYPE}
 
18299
 
 
18300
//
 
18301
// MessageId: ERROR_IPSEC_IKE_NO_PRIVATE_KEY
 
18302
//
 
18303
// MessageText:
 
18304
//
 
18305
//  No private key associated with machine certificate
 
18306
//
 
18307
  ERROR_IPSEC_IKE_NO_PRIVATE_KEY = DWORD(13820);
 
18308
  {$EXTERNALSYM ERROR_IPSEC_IKE_NO_PRIVATE_KEY}
 
18309
 
 
18310
//
 
18311
// MessageId: ERROR_IPSEC_IKE_DH_FAIL
 
18312
//
 
18313
// MessageText:
 
18314
//
 
18315
//  Failure in Diffie-Helman computation
 
18316
//
 
18317
  ERROR_IPSEC_IKE_DH_FAIL = DWORD(13822);
 
18318
  {$EXTERNALSYM ERROR_IPSEC_IKE_DH_FAIL}
 
18319
 
 
18320
//
 
18321
// MessageId: ERROR_IPSEC_IKE_INVALID_HEADER
 
18322
//
 
18323
// MessageText:
 
18324
//
 
18325
//  Invalid header
 
18326
//
 
18327
  ERROR_IPSEC_IKE_INVALID_HEADER = DWORD(13824);
 
18328
  {$EXTERNALSYM ERROR_IPSEC_IKE_INVALID_HEADER}
 
18329
 
 
18330
//
 
18331
// MessageId: ERROR_IPSEC_IKE_NO_POLICY
 
18332
//
 
18333
// MessageText:
 
18334
//
 
18335
//  No policy configured
 
18336
//
 
18337
  ERROR_IPSEC_IKE_NO_POLICY = DWORD(13825);
 
18338
  {$EXTERNALSYM ERROR_IPSEC_IKE_NO_POLICY}
 
18339
 
 
18340
//
 
18341
// MessageId: ERROR_IPSEC_IKE_INVALID_SIGNATURE
 
18342
//
 
18343
// MessageText:
 
18344
//
 
18345
//  Failed to verify signature
 
18346
//
 
18347
  ERROR_IPSEC_IKE_INVALID_SIGNATURE = DWORD(13826);
 
18348
  {$EXTERNALSYM ERROR_IPSEC_IKE_INVALID_SIGNATURE}
 
18349
 
 
18350
//
 
18351
// MessageId: ERROR_IPSEC_IKE_KERBEROS_ERROR
 
18352
//
 
18353
// MessageText:
 
18354
//
 
18355
//  Failed to authenticate using kerberos
 
18356
//
 
18357
  ERROR_IPSEC_IKE_KERBEROS_ERROR = DWORD(13827);
 
18358
  {$EXTERNALSYM ERROR_IPSEC_IKE_KERBEROS_ERROR}
 
18359
 
 
18360
//
 
18361
// MessageId: ERROR_IPSEC_IKE_NO_PUBLIC_KEY
 
18362
//
 
18363
// MessageText:
 
18364
//
 
18365
//  Peer's certificate did not have a public key
 
18366
//
 
18367
  ERROR_IPSEC_IKE_NO_PUBLIC_KEY = DWORD(13828);
 
18368
  {$EXTERNALSYM ERROR_IPSEC_IKE_NO_PUBLIC_KEY}
 
18369
 
 
18370
// These must stay as a unit.
 
18371
//
 
18372
// MessageId: ERROR_IPSEC_IKE_PROCESS_ERR
 
18373
//
 
18374
// MessageText:
 
18375
//
 
18376
//  Error processing error payload
 
18377
//
 
18378
  ERROR_IPSEC_IKE_PROCESS_ERR = DWORD(13829);
 
18379
  {$EXTERNALSYM ERROR_IPSEC_IKE_PROCESS_ERR}
 
18380
 
 
18381
//
 
18382
// MessageId: ERROR_IPSEC_IKE_PROCESS_ERR_SA
 
18383
//
 
18384
// MessageText:
 
18385
//
 
18386
//  Error processing SA payload
 
18387
//
 
18388
  ERROR_IPSEC_IKE_PROCESS_ERR_SA = DWORD(13830);
 
18389
  {$EXTERNALSYM ERROR_IPSEC_IKE_PROCESS_ERR_SA}
 
18390
 
 
18391
//
 
18392
// MessageId: ERROR_IPSEC_IKE_PROCESS_ERR_PROP
 
18393
//
 
18394
// MessageText:
 
18395
//
 
18396
//  Error processing Proposal payload
 
18397
//
 
18398
  ERROR_IPSEC_IKE_PROCESS_ERR_PROP = DWORD(13831);
 
18399
  {$EXTERNALSYM ERROR_IPSEC_IKE_PROCESS_ERR_PROP}
 
18400
 
 
18401
//
 
18402
// MessageId: ERROR_IPSEC_IKE_PROCESS_ERR_TRANS
 
18403
//
 
18404
// MessageText:
 
18405
//
 
18406
//  Error processing Transform payload
 
18407
//
 
18408
  ERROR_IPSEC_IKE_PROCESS_ERR_TRANS = DWORD(13832);
 
18409
  {$EXTERNALSYM ERROR_IPSEC_IKE_PROCESS_ERR_TRANS}
 
18410
 
 
18411
//
 
18412
// MessageId: ERROR_IPSEC_IKE_PROCESS_ERR_KE
 
18413
//
 
18414
// MessageText:
 
18415
//
 
18416
//  Error processing KE payload
 
18417
//
 
18418
  ERROR_IPSEC_IKE_PROCESS_ERR_KE = DWORD(13833);
 
18419
  {$EXTERNALSYM ERROR_IPSEC_IKE_PROCESS_ERR_KE}
 
18420
 
 
18421
//
 
18422
// MessageId: ERROR_IPSEC_IKE_PROCESS_ERR_ID
 
18423
//
 
18424
// MessageText:
 
18425
//
 
18426
//  Error processing ID payload
 
18427
//
 
18428
  ERROR_IPSEC_IKE_PROCESS_ERR_ID = DWORD(13834);
 
18429
  {$EXTERNALSYM ERROR_IPSEC_IKE_PROCESS_ERR_ID}
 
18430
 
 
18431
//
 
18432
// MessageId: ERROR_IPSEC_IKE_PROCESS_ERR_CERT
 
18433
//
 
18434
// MessageText:
 
18435
//
 
18436
//  Error processing Cert payload
 
18437
//
 
18438
  ERROR_IPSEC_IKE_PROCESS_ERR_CERT = DWORD(13835);
 
18439
  {$EXTERNALSYM ERROR_IPSEC_IKE_PROCESS_ERR_CERT}
 
18440
 
 
18441
//
 
18442
// MessageId: ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ
 
18443
//
 
18444
// MessageText:
 
18445
//
 
18446
//  Error processing Certificate Request payload
 
18447
//
 
18448
  ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ = DWORD(13836);
 
18449
  {$EXTERNALSYM ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ}
 
18450
 
 
18451
//
 
18452
// MessageId: ERROR_IPSEC_IKE_PROCESS_ERR_HASH
 
18453
//
 
18454
// MessageText:
 
18455
//
 
18456
//  Error processing Hash payload
 
18457
//
 
18458
  ERROR_IPSEC_IKE_PROCESS_ERR_HASH = DWORD(13837);
 
18459
  {$EXTERNALSYM ERROR_IPSEC_IKE_PROCESS_ERR_HASH}
 
18460
 
 
18461
//
 
18462
// MessageId: ERROR_IPSEC_IKE_PROCESS_ERR_SIG
 
18463
//
 
18464
// MessageText:
 
18465
//
 
18466
//  Error processing Signature payload
 
18467
//
 
18468
  ERROR_IPSEC_IKE_PROCESS_ERR_SIG = DWORD(13838);
 
18469
  {$EXTERNALSYM ERROR_IPSEC_IKE_PROCESS_ERR_SIG}
 
18470
 
 
18471
//
 
18472
// MessageId: ERROR_IPSEC_IKE_PROCESS_ERR_NONCE
 
18473
//
 
18474
// MessageText:
 
18475
//
 
18476
//  Error processing Nonce payload
 
18477
//
 
18478
  ERROR_IPSEC_IKE_PROCESS_ERR_NONCE = DWORD(13839);
 
18479
  {$EXTERNALSYM ERROR_IPSEC_IKE_PROCESS_ERR_NONCE}
 
18480
 
 
18481
//
 
18482
// MessageId: ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY
 
18483
//
 
18484
// MessageText:
 
18485
//
 
18486
//  Error processing Notify payload
 
18487
//
 
18488
  ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY = DWORD(13840);
 
18489
  {$EXTERNALSYM ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY}
 
18490
 
 
18491
//
 
18492
// MessageId: ERROR_IPSEC_IKE_PROCESS_ERR_DELETE
 
18493
//
 
18494
// MessageText:
 
18495
//
 
18496
//  Error processing Delete Payload
 
18497
//
 
18498
  ERROR_IPSEC_IKE_PROCESS_ERR_DELETE = DWORD(13841);
 
18499
  {$EXTERNALSYM ERROR_IPSEC_IKE_PROCESS_ERR_DELETE}
 
18500
 
 
18501
//
 
18502
// MessageId: ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR
 
18503
//
 
18504
// MessageText:
 
18505
//
 
18506
//  Error processing VendorId payload
 
18507
//
 
18508
  ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR = DWORD(13842);
 
18509
  {$EXTERNALSYM ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR}
 
18510
 
 
18511
//
 
18512
// MessageId: ERROR_IPSEC_IKE_INVALID_PAYLOAD
 
18513
//
 
18514
// MessageText:
 
18515
//
 
18516
//  Invalid payload received
 
18517
//
 
18518
  ERROR_IPSEC_IKE_INVALID_PAYLOAD = DWORD(13843);
 
18519
  {$EXTERNALSYM ERROR_IPSEC_IKE_INVALID_PAYLOAD}
 
18520
 
 
18521
//
 
18522
// MessageId: ERROR_IPSEC_IKE_LOAD_SOFT_SA
 
18523
//
 
18524
// MessageText:
 
18525
//
 
18526
//  Soft SA loaded
 
18527
//
 
18528
  ERROR_IPSEC_IKE_LOAD_SOFT_SA = DWORD(13844);
 
18529
  {$EXTERNALSYM ERROR_IPSEC_IKE_LOAD_SOFT_SA}
 
18530
 
 
18531
//
 
18532
// MessageId: ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN
 
18533
//
 
18534
// MessageText:
 
18535
//
 
18536
//  Soft SA torn down
 
18537
//
 
18538
  ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN = DWORD(13845);
 
18539
  {$EXTERNALSYM ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN}
 
18540
 
 
18541
//
 
18542
// MessageId: ERROR_IPSEC_IKE_INVALID_COOKIE
 
18543
//
 
18544
// MessageText:
 
18545
//
 
18546
//  Invalid cookie received.
 
18547
//
 
18548
  ERROR_IPSEC_IKE_INVALID_COOKIE = DWORD(13846);
 
18549
  {$EXTERNALSYM ERROR_IPSEC_IKE_INVALID_COOKIE}
 
18550
 
 
18551
//
 
18552
// MessageId: ERROR_IPSEC_IKE_NO_PEER_CERT
 
18553
//
 
18554
// MessageText:
 
18555
//
 
18556
//  Peer failed to send valid machine certificate
 
18557
//
 
18558
  ERROR_IPSEC_IKE_NO_PEER_CERT = DWORD(13847);
 
18559
  {$EXTERNALSYM ERROR_IPSEC_IKE_NO_PEER_CERT}
 
18560
 
 
18561
//
 
18562
// MessageId: ERROR_IPSEC_IKE_PEER_CRL_FAILED
 
18563
//
 
18564
// MessageText:
 
18565
//
 
18566
//  Certification Revocation check of peer's certificate failed
 
18567
//
 
18568
  ERROR_IPSEC_IKE_PEER_CRL_FAILED = DWORD(13848);
 
18569
  {$EXTERNALSYM ERROR_IPSEC_IKE_PEER_CRL_FAILED}
 
18570
 
 
18571
//
 
18572
// MessageId: ERROR_IPSEC_IKE_POLICY_CHANGE
 
18573
//
 
18574
// MessageText:
 
18575
//
 
18576
//  New policy invalidated SAs formed with old policy
 
18577
//
 
18578
  ERROR_IPSEC_IKE_POLICY_CHANGE = DWORD(13849);
 
18579
  {$EXTERNALSYM ERROR_IPSEC_IKE_POLICY_CHANGE}
 
18580
 
 
18581
//
 
18582
// MessageId: ERROR_IPSEC_IKE_NO_MM_POLICY
 
18583
//
 
18584
// MessageText:
 
18585
//
 
18586
//  There is no available Main Mode IKE policy.
 
18587
//
 
18588
  ERROR_IPSEC_IKE_NO_MM_POLICY = DWORD(13850);
 
18589
  {$EXTERNALSYM ERROR_IPSEC_IKE_NO_MM_POLICY}
 
18590
 
 
18591
//
 
18592
// MessageId: ERROR_IPSEC_IKE_NOTCBPRIV
 
18593
//
 
18594
// MessageText:
 
18595
//
 
18596
//  Failed to enabled TCB privilege.
 
18597
//
 
18598
  ERROR_IPSEC_IKE_NOTCBPRIV = DWORD(13851);
 
18599
  {$EXTERNALSYM ERROR_IPSEC_IKE_NOTCBPRIV}
 
18600
 
 
18601
//
 
18602
// MessageId: ERROR_IPSEC_IKE_SECLOADFAIL
 
18603
//
 
18604
// MessageText:
 
18605
//
 
18606
//  Failed to load SECURITY.DLL.
 
18607
//
 
18608
  ERROR_IPSEC_IKE_SECLOADFAIL = DWORD(13852);
 
18609
  {$EXTERNALSYM ERROR_IPSEC_IKE_SECLOADFAIL}
 
18610
 
 
18611
//
 
18612
// MessageId: ERROR_IPSEC_IKE_FAILSSPINIT
 
18613
//
 
18614
// MessageText:
 
18615
//
 
18616
//  Failed to obtain security function table dispatch address from SSPI.
 
18617
//
 
18618
  ERROR_IPSEC_IKE_FAILSSPINIT = DWORD(13853);
 
18619
  {$EXTERNALSYM ERROR_IPSEC_IKE_FAILSSPINIT}
 
18620
 
 
18621
//
 
18622
// MessageId: ERROR_IPSEC_IKE_FAILQUERYSSP
 
18623
//
 
18624
// MessageText:
 
18625
//
 
18626
//  Failed to query Kerberos package to obtain max token size.
 
18627
//
 
18628
  ERROR_IPSEC_IKE_FAILQUERYSSP = DWORD(13854);
 
18629
  {$EXTERNALSYM ERROR_IPSEC_IKE_FAILQUERYSSP}
 
18630
 
 
18631
//
 
18632
// MessageId: ERROR_IPSEC_IKE_SRVACQFAIL
 
18633
//
 
18634
// MessageText:
 
18635
//
 
18636
//  Failed to obtain Kerberos server credentials for ISAKMP/ERROR_IPSEC_IKE service.  Kerberos authentication will not function.  The most likely reason for this is lack of domain membership.  This is normal if your computer is a member of a workgroup.
 
18637
//
 
18638
  ERROR_IPSEC_IKE_SRVACQFAIL = DWORD(13855);
 
18639
  {$EXTERNALSYM ERROR_IPSEC_IKE_SRVACQFAIL}
 
18640
 
 
18641
//
 
18642
// MessageId: ERROR_IPSEC_IKE_SRVQUERYCRED
 
18643
//
 
18644
// MessageText:
 
18645
//
 
18646
//  Failed to determine SSPI principal name for ISAKMP/ERROR_IPSEC_IKE service (QueryCredentialsAttributes).
 
18647
//
 
18648
  ERROR_IPSEC_IKE_SRVQUERYCRED = DWORD(13856);
 
18649
  {$EXTERNALSYM ERROR_IPSEC_IKE_SRVQUERYCRED}
 
18650
 
 
18651
//
 
18652
// MessageId: ERROR_IPSEC_IKE_GETSPIFAIL
 
18653
//
 
18654
// MessageText:
 
18655
//
 
18656
//  Failed to obtain new SPI for the inbound SA from Ipsec driver.  The most common cause for this is that the driver does not have the correct filter.  Check your policy to verify the filters.
 
18657
//
 
18658
  ERROR_IPSEC_IKE_GETSPIFAIL = DWORD(13857);
 
18659
  {$EXTERNALSYM ERROR_IPSEC_IKE_GETSPIFAIL}
 
18660
 
 
18661
//
 
18662
// MessageId: ERROR_IPSEC_IKE_INVALID_FILTER
 
18663
//
 
18664
// MessageText:
 
18665
//
 
18666
//  Given filter is invalid
 
18667
//
 
18668
  ERROR_IPSEC_IKE_INVALID_FILTER = DWORD(13858);
 
18669
  {$EXTERNALSYM ERROR_IPSEC_IKE_INVALID_FILTER}
 
18670
 
 
18671
//
 
18672
// MessageId: ERROR_IPSEC_IKE_OUT_OF_MEMORY
 
18673
//
 
18674
// MessageText:
 
18675
//
 
18676
//  Memory allocation failed.
 
18677
//
 
18678
  ERROR_IPSEC_IKE_OUT_OF_MEMORY = DWORD(13859);
 
18679
  {$EXTERNALSYM ERROR_IPSEC_IKE_OUT_OF_MEMORY}
 
18680
 
 
18681
//
 
18682
// MessageId: ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED
 
18683
//
 
18684
// MessageText:
 
18685
//
 
18686
//  Failed to add Security Association to IPSec Driver.  The most common cause for this is if the IKE negotiation took too long to complete.  If the problem persists, reduce the load on the faulting machine.
 
18687
//
 
18688
  ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED = DWORD(13860);
 
18689
  {$EXTERNALSYM ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED}
 
18690
 
 
18691
//
 
18692
// MessageId: ERROR_IPSEC_IKE_INVALID_POLICY
 
18693
//
 
18694
// MessageText:
 
18695
//
 
18696
//  Invalid policy
 
18697
//
 
18698
  ERROR_IPSEC_IKE_INVALID_POLICY = DWORD(13861);
 
18699
  {$EXTERNALSYM ERROR_IPSEC_IKE_INVALID_POLICY}
 
18700
 
 
18701
//
 
18702
// MessageId: ERROR_IPSEC_IKE_UNKNOWN_DOI
 
18703
//
 
18704
// MessageText:
 
18705
//
 
18706
//  Invalid DOI
 
18707
//
 
18708
  ERROR_IPSEC_IKE_UNKNOWN_DOI = DWORD(13862);
 
18709
  {$EXTERNALSYM ERROR_IPSEC_IKE_UNKNOWN_DOI}
 
18710
 
 
18711
//
 
18712
// MessageId: ERROR_IPSEC_IKE_INVALID_SITUATION
 
18713
//
 
18714
// MessageText:
 
18715
//
 
18716
//  Invalid situation
 
18717
//
 
18718
  ERROR_IPSEC_IKE_INVALID_SITUATION = DWORD(13863);
 
18719
  {$EXTERNALSYM ERROR_IPSEC_IKE_INVALID_SITUATION}
 
18720
 
 
18721
//
 
18722
// MessageId: ERROR_IPSEC_IKE_DH_FAILURE
 
18723
//
 
18724
// MessageText:
 
18725
//
 
18726
//  Diffie-Hellman failure
 
18727
//
 
18728
  ERROR_IPSEC_IKE_DH_FAILURE = DWORD(13864);
 
18729
  {$EXTERNALSYM ERROR_IPSEC_IKE_DH_FAILURE}
 
18730
 
 
18731
//
 
18732
// MessageId: ERROR_IPSEC_IKE_INVALID_GROUP
 
18733
//
 
18734
// MessageText:
 
18735
//
 
18736
//  Invalid Diffie-Hellman group
 
18737
//
 
18738
  ERROR_IPSEC_IKE_INVALID_GROUP = DWORD(13865);
 
18739
  {$EXTERNALSYM ERROR_IPSEC_IKE_INVALID_GROUP}
 
18740
 
 
18741
//
 
18742
// MessageId: ERROR_IPSEC_IKE_ENCRYPT
 
18743
//
 
18744
// MessageText:
 
18745
//
 
18746
//  Error encrypting payload
 
18747
//
 
18748
  ERROR_IPSEC_IKE_ENCRYPT = DWORD(13866);
 
18749
  {$EXTERNALSYM ERROR_IPSEC_IKE_ENCRYPT}
 
18750
 
 
18751
//
 
18752
// MessageId: ERROR_IPSEC_IKE_DECRYPT
 
18753
//
 
18754
// MessageText:
 
18755
//
 
18756
//  Error decrypting payload
 
18757
//
 
18758
  ERROR_IPSEC_IKE_DECRYPT = DWORD(13867);
 
18759
  {$EXTERNALSYM ERROR_IPSEC_IKE_DECRYPT}
 
18760
 
 
18761
//
 
18762
// MessageId: ERROR_IPSEC_IKE_POLICY_MATCH
 
18763
//
 
18764
// MessageText:
 
18765
//
 
18766
//  Policy match error
 
18767
//
 
18768
  ERROR_IPSEC_IKE_POLICY_MATCH = DWORD(13868);
 
18769
  {$EXTERNALSYM ERROR_IPSEC_IKE_POLICY_MATCH}
 
18770
 
 
18771
//
 
18772
// MessageId: ERROR_IPSEC_IKE_UNSUPPORTED_ID
 
18773
//
 
18774
// MessageText:
 
18775
//
 
18776
//  Unsupported ID
 
18777
//
 
18778
  ERROR_IPSEC_IKE_UNSUPPORTED_ID = DWORD(13869);
 
18779
  {$EXTERNALSYM ERROR_IPSEC_IKE_UNSUPPORTED_ID}
 
18780
 
 
18781
//
 
18782
// MessageId: ERROR_IPSEC_IKE_INVALID_HASH
 
18783
//
 
18784
// MessageText:
 
18785
//
 
18786
//  Hash verification failed
 
18787
//
 
18788
  ERROR_IPSEC_IKE_INVALID_HASH = DWORD(13870);
 
18789
  {$EXTERNALSYM ERROR_IPSEC_IKE_INVALID_HASH}
 
18790
 
 
18791
//
 
18792
// MessageId: ERROR_IPSEC_IKE_INVALID_HASH_ALG
 
18793
//
 
18794
// MessageText:
 
18795
//
 
18796
//  Invalid hash algorithm
 
18797
//
 
18798
  ERROR_IPSEC_IKE_INVALID_HASH_ALG = DWORD(13871);
 
18799
  {$EXTERNALSYM ERROR_IPSEC_IKE_INVALID_HASH_ALG}
 
18800
 
 
18801
//
 
18802
// MessageId: ERROR_IPSEC_IKE_INVALID_HASH_SIZE
 
18803
//
 
18804
// MessageText:
 
18805
//
 
18806
//  Invalid hash size
 
18807
//
 
18808
  ERROR_IPSEC_IKE_INVALID_HASH_SIZE = DWORD(13872);
 
18809
  {$EXTERNALSYM ERROR_IPSEC_IKE_INVALID_HASH_SIZE}
 
18810
 
 
18811
//
 
18812
// MessageId: ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG
 
18813
//
 
18814
// MessageText:
 
18815
//
 
18816
//  Invalid encryption algorithm
 
18817
//
 
18818
  ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG = DWORD(13873);
 
18819
  {$EXTERNALSYM ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG}
 
18820
 
 
18821
//
 
18822
// MessageId: ERROR_IPSEC_IKE_INVALID_AUTH_ALG
 
18823
//
 
18824
// MessageText:
 
18825
//
 
18826
//  Invalid authentication algorithm
 
18827
//
 
18828
  ERROR_IPSEC_IKE_INVALID_AUTH_ALG = DWORD(13874);
 
18829
  {$EXTERNALSYM ERROR_IPSEC_IKE_INVALID_AUTH_ALG}
 
18830
 
 
18831
//
 
18832
// MessageId: ERROR_IPSEC_IKE_INVALID_SIG
 
18833
//
 
18834
// MessageText:
 
18835
//
 
18836
//  Invalid certificate signature
 
18837
//
 
18838
  ERROR_IPSEC_IKE_INVALID_SIG = DWORD(13875);
 
18839
  {$EXTERNALSYM ERROR_IPSEC_IKE_INVALID_SIG}
 
18840
 
 
18841
//
 
18842
// MessageId: ERROR_IPSEC_IKE_LOAD_FAILED
 
18843
//
 
18844
// MessageText:
 
18845
//
 
18846
//  Load failed
 
18847
//
 
18848
  ERROR_IPSEC_IKE_LOAD_FAILED = DWORD(13876);
 
18849
  {$EXTERNALSYM ERROR_IPSEC_IKE_LOAD_FAILED}
 
18850
 
 
18851
//
 
18852
// MessageId: ERROR_IPSEC_IKE_RPC_DELETE
 
18853
//
 
18854
// MessageText:
 
18855
//
 
18856
//  Deleted via RPC call
 
18857
//
 
18858
  ERROR_IPSEC_IKE_RPC_DELETE = DWORD(13877);
 
18859
  {$EXTERNALSYM ERROR_IPSEC_IKE_RPC_DELETE}
 
18860
 
 
18861
//
 
18862
// MessageId: ERROR_IPSEC_IKE_BENIGN_REINIT
 
18863
//
 
18864
// MessageText:
 
18865
//
 
18866
//  Temporary state created to perform reinit. This is not a real failure.
 
18867
//
 
18868
  ERROR_IPSEC_IKE_BENIGN_REINIT = DWORD(13878);
 
18869
  {$EXTERNALSYM ERROR_IPSEC_IKE_BENIGN_REINIT}
 
18870
 
 
18871
//
 
18872
// MessageId: ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY
 
18873
//
 
18874
// MessageText:
 
18875
//
 
18876
//  The lifetime value received in the Responder Lifetime Notify is below the Windows 2000 configured minimum value.  Please fix the policy on the peer machine.
 
18877
//
 
18878
  ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY = DWORD(13879);
 
18879
  {$EXTERNALSYM ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY}
 
18880
 
 
18881
//
 
18882
// MessageId: ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN
 
18883
//
 
18884
// MessageText:
 
18885
//
 
18886
//  Key length in certificate is too small for configured security requirements.
 
18887
//
 
18888
  ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN = DWORD(13881);
 
18889
  {$EXTERNALSYM ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN}
 
18890
 
 
18891
//
 
18892
// MessageId: ERROR_IPSEC_IKE_MM_LIMIT
 
18893
//
 
18894
// MessageText:
 
18895
//
 
18896
//  Max number of established MM SAs to peer exceeded.
 
18897
//
 
18898
  ERROR_IPSEC_IKE_MM_LIMIT = DWORD(13882);
 
18899
  {$EXTERNALSYM ERROR_IPSEC_IKE_MM_LIMIT}
 
18900
 
 
18901
//
 
18902
// MessageId: ERROR_IPSEC_IKE_NEGOTIATION_DISABLED
 
18903
//
 
18904
// MessageText:
 
18905
//
 
18906
//  IKE received a policy that disables negotiation.
 
18907
//
 
18908
  ERROR_IPSEC_IKE_NEGOTIATION_DISABLED = DWORD(13883);
 
18909
  {$EXTERNALSYM ERROR_IPSEC_IKE_NEGOTIATION_DISABLED}
 
18910
 
 
18911
//
 
18912
// MessageId: ERROR_IPSEC_IKE_NEG_STATUS_END
 
18913
//
 
18914
// MessageText:
 
18915
//
 
18916
//  ERROR_IPSEC_IKE_NEG_STATUS_END
 
18917
//
 
18918
  ERROR_IPSEC_IKE_NEG_STATUS_END = DWORD(13884);
 
18919
  {$EXTERNALSYM ERROR_IPSEC_IKE_NEG_STATUS_END}
 
18920
 
 
18921
////////////////////////////////////
 
18922
//                                //
 
18923
//     COM Error Codes            //
 
18924
//                                //
 
18925
////////////////////////////////////
 
18926
 
 
18927
//
 
18928
// The return value of COM functions and methods is an HRESULT.
 
18929
// This is not a handle to anything, but is merely a 32-bit value
 
18930
// with several fields encoded in the value.  The parts of an
 
18931
// HRESULT are shown below.
 
18932
//
 
18933
// Many of the macros and functions below were orginally defined to
 
18934
// operate on SCODEs.  SCODEs are no longer used.  The macros are
 
18935
// still present for compatibility and easy porting of Win16 code.
 
18936
// Newly written code should use the HRESULT macros and functions.
 
18937
//
 
18938
 
 
18939
//
 
18940
//  HRESULTs are 32 bit values layed out as follows:
 
18941
//
 
18942
//   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
 
18943
//   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
 
18944
//  +-+-+-+-+-+---------------------+-------------------------------+
 
18945
//  |S|R|C|N|r|    Facility         |               Code            |
 
18946
//  +-+-+-+-+-+---------------------+-------------------------------+
 
18947
//
 
18948
//  where
 
18949
//
 
18950
//      S - Severity - indicates success/fail
 
18951
//
 
18952
//          0 - Success
 
18953
//          1 - Fail (COERROR)
 
18954
//
 
18955
//      R - reserved portion of the facility code, corresponds to NT's
 
18956
//              second severity bit.
 
18957
//
 
18958
//      C - reserved portion of the facility code, corresponds to NT's
 
18959
//              C field.
 
18960
//
 
18961
//      N - reserved portion of the facility code. Used to indicate a
 
18962
//              mapped NT status value.
 
18963
//
 
18964
//      r - reserved portion of the facility code. Reserved for internal
 
18965
//              use. Used to indicate HRESULT values that are not status
 
18966
//              values, but are instead message ids for display strings.
 
18967
//
 
18968
//      Facility - is the facility code
 
18969
//
 
18970
//      Code - is the facility's status code
 
18971
//
 
18972
 
 
18973
//
 
18974
// Severity values
 
18975
//
 
18976
 
 
18977
  SEVERITY_SUCCESS = 0;
 
18978
  {$EXTERNALSYM SEVERITY_SUCCESS}
 
18979
  SEVERITY_ERROR = 1;
 
18980
  {$EXTERNALSYM SEVERITY_ERROR}
 
18981
 
 
18982
//
 
18983
// Generic test for success on any status value (non-negative numbers
 
18984
// indicate success).
 
18985
//
 
18986
 
 
18987
function SUCCEEDED(Status: HRESULT): BOOL;
 
18988
{$EXTERNALSYM SUCCEEDED}
 
18989
 
 
18990
//
 
18991
// and the inverse
 
18992
//
 
18993
 
 
18994
function FAILED(Status: HRESULT): BOOL;
 
18995
{$EXTERNALSYM FAILED}
 
18996
 
 
18997
//
 
18998
// Generic test for error on any status value.
 
18999
//
 
19000
 
 
19001
function IS_ERROR(Status: HRESULT): BOOL;
 
19002
{$EXTERNALSYM IS_ERROR}
 
19003
 
 
19004
//
 
19005
// Return the code
 
19006
//
 
19007
 
 
19008
function HRESULT_CODE(hr: HRESULT): DWORD;
 
19009
{$EXTERNALSYM HRESULT_CODE}
 
19010
 
 
19011
function SCODE_CODE(sc: LONG): DWORD;
 
19012
{$EXTERNALSYM SCODE_CODE}
 
19013
 
 
19014
//
 
19015
//  Return the facility
 
19016
//
 
19017
 
 
19018
function HRESULT_FACILITY(hr: HRESULT): DWORD;
 
19019
{$EXTERNALSYM HRESULT_FACILITY}
 
19020
 
 
19021
function SCODE_FACILITY(sc: LONG): DWORD;
 
19022
{$EXTERNALSYM SCODE_FACILITY}
 
19023
 
 
19024
//
 
19025
//  Return the severity
 
19026
//
 
19027
 
 
19028
function HRESULT_SEVERITY(hr: HRESULT): DWORD;
 
19029
{$EXTERNALSYM HRESULT_SEVERITY}
 
19030
 
 
19031
function SCODE_SEVERITY(sc: LONG): DWORD;
 
19032
{$EXTERNALSYM SCODE_SEVERITY}
 
19033
 
 
19034
//
 
19035
// Create an HRESULT value from component pieces
 
19036
//
 
19037
 
 
19038
function MAKE_HRESULT(sev, fac, code: DWORD): HRESULT;
 
19039
{$EXTERNALSYM MAKE_HRESULT}
 
19040
 
 
19041
function MAKE_SCODE(sev, fac,code: DWORD): DWORD;
 
19042
{$EXTERNALSYM MAKE_SCODE}
 
19043
 
 
19044
//
 
19045
// Map a WIN32 error value into a HRESULT
 
19046
// Note: This assumes that WIN32 errors fall in the range -32k to 32k.
 
19047
//
 
19048
// Define bits here so macros are guaranteed to work
 
19049
 
 
19050
const
 
19051
  FACILITY_NT_BIT = $10000000;
 
19052
  {$EXTERNALSYM FACILITY_NT_BIT}
 
19053
 
 
19054
// __HRESULT_FROM_WIN32 will always be a macro.
 
19055
// The goal will be to enable INLINE_HRESULT_FROM_WIN32 all the time,
 
19056
// but there's too much code to change to do that at this time.
 
19057
 
 
19058
function __HRESULT_FROM_WIN32(x: DWORD): HRESULT;
 
19059
{$EXTERNALSYM __HRESULT_FROM_WIN32}
 
19060
 
 
19061
function HRESULT_FROM_WIN32(x: DWORD): HRESULT;
 
19062
{$EXTERNALSYM HRESULT_FROM_WIN32}
 
19063
 
 
19064
//
 
19065
// Map an NT status value into a HRESULT
 
19066
//
 
19067
 
 
19068
function HRESULT_FROM_NT(x: NTSTATUS): HRESULT;
 
19069
{$EXTERNALSYM HRESULT_FROM_NT}
 
19070
 
 
19071
// ****** OBSOLETE functions
 
19072
 
 
19073
// HRESULT functions
 
19074
// As noted above, these functions are obsolete and should not be used.
 
19075
 
 
19076
// Extract the SCODE from a HRESULT
 
19077
 
 
19078
function GetScode(hr: HRESULT): DWORD;
 
19079
{$EXTERNALSYM GetScode}
 
19080
 
 
19081
// Convert an SCODE into an HRESULT.
 
19082
 
 
19083
function ResultFromScode(sc: DWORD): HRESULT;
 
19084
{$EXTERNALSYM ResultFromScode}
 
19085
 
 
19086
// PropagateResult is a noop
 
19087
 
 
19088
function PropagateResult(hrPrevious, scBase: DWORD): HRESULT;
 
19089
{$EXTERNALSYM PropagateResult}
 
19090
 
 
19091
// ****** End of OBSOLETE functions.
 
19092
 
 
19093
// ---------------------- HRESULT value definitions -----------------
 
19094
//
 
19095
// HRESULT definitions
 
19096
//
 
19097
 
 
19098
type
 
19099
  _HRESULT_TYPEDEF_ = HRESULT;
 
19100
  {$EXTERNALSYM _HRESULT_TYPEDEF_}
 
19101
 
 
19102
const
 
19103
  NOERROR = 0;
 
19104
  {$EXTERNALSYM NOERROR}
 
19105
 
 
19106
//
 
19107
// Error definitions follow
 
19108
//
 
19109
 
 
19110
//
 
19111
// Codes 0x4000-0x40ff are reserved for OLE
 
19112
//
 
19113
//
 
19114
// Error codes
 
19115
//
 
19116
//
 
19117
// MessageId: E_UNEXPECTED
 
19118
//
 
19119
// MessageText:
 
19120
//
 
19121
//  Catastrophic failure
 
19122
//
 
19123
  E_UNEXPECTED = HRESULT($8000FFFF);
 
19124
  {$EXTERNALSYM E_UNEXPECTED}
 
19125
 
 
19126
//
 
19127
// MessageId: E_NOTIMPL
 
19128
//
 
19129
// MessageText:
 
19130
//
 
19131
//  Not implemented
 
19132
//
 
19133
  E_NOTIMPL = HRESULT($80004001);
 
19134
  {$EXTERNALSYM E_NOTIMPL}
 
19135
 
 
19136
//
 
19137
// MessageId: E_OUTOFMEMORY
 
19138
//
 
19139
// MessageText:
 
19140
//
 
19141
//  Ran out of memory
 
19142
//
 
19143
  E_OUTOFMEMORY = HRESULT($8007000E);
 
19144
  {$EXTERNALSYM E_OUTOFMEMORY}
 
19145
 
 
19146
//
 
19147
// MessageId: E_INVALIDARG
 
19148
//
 
19149
// MessageText:
 
19150
//
 
19151
//  One or more arguments are invalid
 
19152
//
 
19153
  E_INVALIDARG = HRESULT($80070057);
 
19154
  {$EXTERNALSYM E_INVALIDARG}
 
19155
 
 
19156
//
 
19157
// MessageId: E_NOINTERFACE
 
19158
//
 
19159
// MessageText:
 
19160
//
 
19161
//  No such interface supported
 
19162
//
 
19163
  E_NOINTERFACE = HRESULT($80004002);
 
19164
  {$EXTERNALSYM E_NOINTERFACE}
 
19165
 
 
19166
//
 
19167
// MessageId: E_POINTER
 
19168
//
 
19169
// MessageText:
 
19170
//
 
19171
//  Invalid pointer
 
19172
//
 
19173
  E_POINTER = HRESULT($80004003);
 
19174
  {$EXTERNALSYM E_POINTER}
 
19175
 
 
19176
//
 
19177
// MessageId: E_HANDLE
 
19178
//
 
19179
// MessageText:
 
19180
//
 
19181
//  Invalid handle
 
19182
//
 
19183
  E_HANDLE = HRESULT($80070006);
 
19184
  {$EXTERNALSYM E_HANDLE}
 
19185
 
 
19186
//
 
19187
// MessageId: E_ABORT
 
19188
//
 
19189
// MessageText:
 
19190
//
 
19191
//  Operation aborted
 
19192
//
 
19193
  E_ABORT = HRESULT($80004004);
 
19194
  {$EXTERNALSYM E_ABORT}
 
19195
 
 
19196
//
 
19197
// MessageId: E_FAIL
 
19198
//
 
19199
// MessageText:
 
19200
//
 
19201
//  Unspecified error
 
19202
//
 
19203
  E_FAIL = HRESULT($80004005);
 
19204
  {$EXTERNALSYM E_FAIL}
 
19205
 
 
19206
//
 
19207
// MessageId: E_ACCESSDENIED
 
19208
//
 
19209
// MessageText:
 
19210
//
 
19211
//  General access denied error
 
19212
//
 
19213
  E_ACCESSDENIED = HRESULT($80070005);
 
19214
  {$EXTERNALSYM E_ACCESSDENIED}
 
19215
 
 
19216
//
 
19217
// MessageId: E_PENDING
 
19218
//
 
19219
// MessageText:
 
19220
//
 
19221
//  The data necessary to complete this operation is not yet available.
 
19222
//
 
19223
  E_PENDING = HRESULT($8000000A);
 
19224
  {$EXTERNALSYM E_PENDING}
 
19225
 
 
19226
//
 
19227
// MessageId: CO_E_INIT_TLS
 
19228
//
 
19229
// MessageText:
 
19230
//
 
19231
//  Thread local storage failure
 
19232
//
 
19233
  CO_E_INIT_TLS = HRESULT($80004006);
 
19234
  {$EXTERNALSYM CO_E_INIT_TLS}
 
19235
 
 
19236
//
 
19237
// MessageId: CO_E_INIT_SHARED_ALLOCATOR
 
19238
//
 
19239
// MessageText:
 
19240
//
 
19241
//  Get shared memory allocator failure
 
19242
//
 
19243
  CO_E_INIT_SHARED_ALLOCATOR = HRESULT($80004007);
 
19244
  {$EXTERNALSYM CO_E_INIT_SHARED_ALLOCATOR}
 
19245
 
 
19246
//
 
19247
// MessageId: CO_E_INIT_MEMORY_ALLOCATOR
 
19248
//
 
19249
// MessageText:
 
19250
//
 
19251
//  Get memory allocator failure
 
19252
//
 
19253
  CO_E_INIT_MEMORY_ALLOCATOR = HRESULT($80004008);
 
19254
  {$EXTERNALSYM CO_E_INIT_MEMORY_ALLOCATOR}
 
19255
 
 
19256
//
 
19257
// MessageId: CO_E_INIT_CLASS_CACHE
 
19258
//
 
19259
// MessageText:
 
19260
//
 
19261
//  Unable to initialize class cache
 
19262
//
 
19263
  CO_E_INIT_CLASS_CACHE = HRESULT($80004009);
 
19264
  {$EXTERNALSYM CO_E_INIT_CLASS_CACHE}
 
19265
 
 
19266
//
 
19267
// MessageId: CO_E_INIT_RPC_CHANNEL
 
19268
//
 
19269
// MessageText:
 
19270
//
 
19271
//  Unable to initialize RPC services
 
19272
//
 
19273
  CO_E_INIT_RPC_CHANNEL = HRESULT($8000400A);
 
19274
  {$EXTERNALSYM CO_E_INIT_RPC_CHANNEL}
 
19275
 
 
19276
//
 
19277
// MessageId: CO_E_INIT_TLS_SET_CHANNEL_CONTROL
 
19278
//
 
19279
// MessageText:
 
19280
//
 
19281
//  Cannot set thread local storage channel control
 
19282
//
 
19283
  CO_E_INIT_TLS_SET_CHANNEL_CONTROL = HRESULT($8000400B);
 
19284
  {$EXTERNALSYM CO_E_INIT_TLS_SET_CHANNEL_CONTROL}
 
19285
 
 
19286
//
 
19287
// MessageId: CO_E_INIT_TLS_CHANNEL_CONTROL
 
19288
//
 
19289
// MessageText:
 
19290
//
 
19291
//  Could not allocate thread local storage channel control
 
19292
//
 
19293
  CO_E_INIT_TLS_CHANNEL_CONTROL = HRESULT($8000400C);
 
19294
  {$EXTERNALSYM CO_E_INIT_TLS_CHANNEL_CONTROL}
 
19295
 
 
19296
//
 
19297
// MessageId: CO_E_INIT_UNACCEPTED_USER_ALLOCATOR
 
19298
//
 
19299
// MessageText:
 
19300
//
 
19301
//  The user supplied memory allocator is unacceptable
 
19302
//
 
19303
  CO_E_INIT_UNACCEPTED_USER_ALLOCATOR = HRESULT($8000400D);
 
19304
  {$EXTERNALSYM CO_E_INIT_UNACCEPTED_USER_ALLOCATOR}
 
19305
 
 
19306
//
 
19307
// MessageId: CO_E_INIT_SCM_MUTEX_EXISTS
 
19308
//
 
19309
// MessageText:
 
19310
//
 
19311
//  The OLE service mutex already exists
 
19312
//
 
19313
  CO_E_INIT_SCM_MUTEX_EXISTS = HRESULT($8000400E);
 
19314
  {$EXTERNALSYM CO_E_INIT_SCM_MUTEX_EXISTS}
 
19315
 
 
19316
//
 
19317
// MessageId: CO_E_INIT_SCM_FILE_MAPPING_EXISTS
 
19318
//
 
19319
// MessageText:
 
19320
//
 
19321
//  The OLE service file mapping already exists
 
19322
//
 
19323
  CO_E_INIT_SCM_FILE_MAPPING_EXISTS = HRESULT($8000400F);
 
19324
  {$EXTERNALSYM CO_E_INIT_SCM_FILE_MAPPING_EXISTS}
 
19325
 
 
19326
//
 
19327
// MessageId: CO_E_INIT_SCM_MAP_VIEW_OF_FILE
 
19328
//
 
19329
// MessageText:
 
19330
//
 
19331
//  Unable to map view of file for OLE service
 
19332
//
 
19333
  CO_E_INIT_SCM_MAP_VIEW_OF_FILE = HRESULT($80004010);
 
19334
  {$EXTERNALSYM CO_E_INIT_SCM_MAP_VIEW_OF_FILE}
 
19335
 
 
19336
//
 
19337
// MessageId: CO_E_INIT_SCM_EXEC_FAILURE
 
19338
//
 
19339
// MessageText:
 
19340
//
 
19341
//  Failure attempting to launch OLE service
 
19342
//
 
19343
  CO_E_INIT_SCM_EXEC_FAILURE = HRESULT($80004011);
 
19344
  {$EXTERNALSYM CO_E_INIT_SCM_EXEC_FAILURE}
 
19345
 
 
19346
//
 
19347
// MessageId: CO_E_INIT_ONLY_SINGLE_THREADED
 
19348
//
 
19349
// MessageText:
 
19350
//
 
19351
//  There was an attempt to call CoInitialize a second time while single threaded
 
19352
//
 
19353
  CO_E_INIT_ONLY_SINGLE_THREADED = HRESULT($80004012);
 
19354
  {$EXTERNALSYM CO_E_INIT_ONLY_SINGLE_THREADED}
 
19355
 
 
19356
//
 
19357
// MessageId: CO_E_CANT_REMOTE
 
19358
//
 
19359
// MessageText:
 
19360
//
 
19361
//  A Remote activation was necessary but was not allowed
 
19362
//
 
19363
  CO_E_CANT_REMOTE = HRESULT($80004013);
 
19364
  {$EXTERNALSYM CO_E_CANT_REMOTE}
 
19365
 
 
19366
//
 
19367
// MessageId: CO_E_BAD_SERVER_NAME
 
19368
//
 
19369
// MessageText:
 
19370
//
 
19371
//  A Remote activation was necessary but the server name provided was invalid
 
19372
//
 
19373
  CO_E_BAD_SERVER_NAME = HRESULT($80004014);
 
19374
  {$EXTERNALSYM CO_E_BAD_SERVER_NAME}
 
19375
 
 
19376
//
 
19377
// MessageId: CO_E_WRONG_SERVER_IDENTITY
 
19378
//
 
19379
// MessageText:
 
19380
//
 
19381
//  The class is configured to run as a security id different from the caller
 
19382
//
 
19383
  CO_E_WRONG_SERVER_IDENTITY = HRESULT($80004015);
 
19384
  {$EXTERNALSYM CO_E_WRONG_SERVER_IDENTITY}
 
19385
 
 
19386
//
 
19387
// MessageId: CO_E_OLE1DDE_DISABLED
 
19388
//
 
19389
// MessageText:
 
19390
//
 
19391
//  Use of Ole1 services requiring DDE windows is disabled
 
19392
//
 
19393
  CO_E_OLE1DDE_DISABLED = HRESULT($80004016);
 
19394
  {$EXTERNALSYM CO_E_OLE1DDE_DISABLED}
 
19395
 
 
19396
//
 
19397
// MessageId: CO_E_RUNAS_SYNTAX
 
19398
//
 
19399
// MessageText:
 
19400
//
 
19401
//  A RunAs specification must be <domain name>\<user name> or simply <user name>
 
19402
//
 
19403
  CO_E_RUNAS_SYNTAX = HRESULT($80004017);
 
19404
  {$EXTERNALSYM CO_E_RUNAS_SYNTAX}
 
19405
 
 
19406
//
 
19407
// MessageId: CO_E_CREATEPROCESS_FAILURE
 
19408
//
 
19409
// MessageText:
 
19410
//
 
19411
//  The server process could not be started.  The pathname may be incorrect.
 
19412
//
 
19413
  CO_E_CREATEPROCESS_FAILURE = HRESULT($80004018);
 
19414
  {$EXTERNALSYM CO_E_CREATEPROCESS_FAILURE}
 
19415
 
 
19416
//
 
19417
// MessageId: CO_E_RUNAS_CREATEPROCESS_FAILURE
 
19418
//
 
19419
// MessageText:
 
19420
//
 
19421
//  The server process could not be started as the configured identity.  The pathname may be incorrect or unavailable.
 
19422
//
 
19423
  CO_E_RUNAS_CREATEPROCESS_FAILURE = HRESULT($80004019);
 
19424
  {$EXTERNALSYM CO_E_RUNAS_CREATEPROCESS_FAILURE}
 
19425
 
 
19426
//
 
19427
// MessageId: CO_E_RUNAS_LOGON_FAILURE
 
19428
//
 
19429
// MessageText:
 
19430
//
 
19431
//  The server process could not be started because the configured identity is incorrect.  Check the username and password.
 
19432
//
 
19433
  CO_E_RUNAS_LOGON_FAILURE = HRESULT($8000401A);
 
19434
  {$EXTERNALSYM CO_E_RUNAS_LOGON_FAILURE}
 
19435
 
 
19436
//
 
19437
// MessageId: CO_E_LAUNCH_PERMSSION_DENIED
 
19438
//
 
19439
// MessageText:
 
19440
//
 
19441
//  The client is not allowed to launch this server.
 
19442
//
 
19443
  CO_E_LAUNCH_PERMSSION_DENIED = HRESULT($8000401B);
 
19444
  {$EXTERNALSYM CO_E_LAUNCH_PERMSSION_DENIED}
 
19445
 
 
19446
//
 
19447
// MessageId: CO_E_START_SERVICE_FAILURE
 
19448
//
 
19449
// MessageText:
 
19450
//
 
19451
//  The service providing this server could not be started.
 
19452
//
 
19453
  CO_E_START_SERVICE_FAILURE = HRESULT($8000401C);
 
19454
  {$EXTERNALSYM CO_E_START_SERVICE_FAILURE}
 
19455
 
 
19456
//
 
19457
// MessageId: CO_E_REMOTE_COMMUNICATION_FAILURE
 
19458
//
 
19459
// MessageText:
 
19460
//
 
19461
//  This computer was unable to communicate with the computer providing the server.
 
19462
//
 
19463
  CO_E_REMOTE_COMMUNICATION_FAILURE = HRESULT($8000401D);
 
19464
  {$EXTERNALSYM CO_E_REMOTE_COMMUNICATION_FAILURE}
 
19465
 
 
19466
//
 
19467
// MessageId: CO_E_SERVER_START_TIMEOUT
 
19468
//
 
19469
// MessageText:
 
19470
//
 
19471
//  The server did not respond after being launched.
 
19472
//
 
19473
  CO_E_SERVER_START_TIMEOUT = HRESULT($8000401E);
 
19474
  {$EXTERNALSYM CO_E_SERVER_START_TIMEOUT}
 
19475
 
 
19476
//
 
19477
// MessageId: CO_E_CLSREG_INCONSISTENT
 
19478
//
 
19479
// MessageText:
 
19480
//
 
19481
//  The registration information for this server is inconsistent or incomplete.
 
19482
//
 
19483
  CO_E_CLSREG_INCONSISTENT = HRESULT($8000401F);
 
19484
  {$EXTERNALSYM CO_E_CLSREG_INCONSISTENT}
 
19485
 
 
19486
//
 
19487
// MessageId: CO_E_IIDREG_INCONSISTENT
 
19488
//
 
19489
// MessageText:
 
19490
//
 
19491
//  The registration information for this interface is inconsistent or incomplete.
 
19492
//
 
19493
  CO_E_IIDREG_INCONSISTENT = HRESULT($80004020);
 
19494
  {$EXTERNALSYM CO_E_IIDREG_INCONSISTENT}
 
19495
 
 
19496
//
 
19497
// MessageId: CO_E_NOT_SUPPORTED
 
19498
//
 
19499
// MessageText:
 
19500
//
 
19501
//  The operation attempted is not supported.
 
19502
//
 
19503
  CO_E_NOT_SUPPORTED = HRESULT($80004021);
 
19504
  {$EXTERNALSYM CO_E_NOT_SUPPORTED}
 
19505
 
 
19506
//
 
19507
// MessageId: CO_E_RELOAD_DLL
 
19508
//
 
19509
// MessageText:
 
19510
//
 
19511
//  A dll must be loaded.
 
19512
//
 
19513
  CO_E_RELOAD_DLL = HRESULT($80004022);
 
19514
  {$EXTERNALSYM CO_E_RELOAD_DLL}
 
19515
 
 
19516
//
 
19517
// MessageId: CO_E_MSI_ERROR
 
19518
//
 
19519
// MessageText:
 
19520
//
 
19521
//  A Microsoft Software Installer error was encountered.
 
19522
//
 
19523
  CO_E_MSI_ERROR = HRESULT($80004023);
 
19524
  {$EXTERNALSYM CO_E_MSI_ERROR}
 
19525
 
 
19526
//
 
19527
// MessageId: CO_E_ATTEMPT_TO_CREATE_OUTSIDE_CLIENT_CONTEXT
 
19528
//
 
19529
// MessageText:
 
19530
//
 
19531
//  The specified activation could not occur in the client context as specified.
 
19532
//
 
19533
  CO_E_ATTEMPT_TO_CREATE_OUTSIDE_CLIENT_CONTEXT = HRESULT($80004024);
 
19534
  {$EXTERNALSYM CO_E_ATTEMPT_TO_CREATE_OUTSIDE_CLIENT_CONTEXT}
 
19535
 
 
19536
//
 
19537
// MessageId: CO_E_SERVER_PAUSED
 
19538
//
 
19539
// MessageText:
 
19540
//
 
19541
//  Activations on the server are paused.
 
19542
//
 
19543
  CO_E_SERVER_PAUSED = HRESULT($80004025);
 
19544
  {$EXTERNALSYM CO_E_SERVER_PAUSED}
 
19545
 
 
19546
//
 
19547
// MessageId: CO_E_SERVER_NOT_PAUSED
 
19548
//
 
19549
// MessageText:
 
19550
//
 
19551
//  Activations on the server are not paused.
 
19552
//
 
19553
  CO_E_SERVER_NOT_PAUSED = HRESULT($80004026);
 
19554
  {$EXTERNALSYM CO_E_SERVER_NOT_PAUSED}
 
19555
 
 
19556
//
 
19557
// MessageId: CO_E_CLASS_DISABLED
 
19558
//
 
19559
// MessageText:
 
19560
//
 
19561
//  The component or application containing the component has been disabled.
 
19562
//
 
19563
  CO_E_CLASS_DISABLED = HRESULT($80004027);
 
19564
  {$EXTERNALSYM CO_E_CLASS_DISABLED}
 
19565
 
 
19566
//
 
19567
// MessageId: CO_E_CLRNOTAVAILABLE
 
19568
//
 
19569
// MessageText:
 
19570
//
 
19571
//  The common language runtime is not available
 
19572
//
 
19573
  CO_E_CLRNOTAVAILABLE = HRESULT($80004028);
 
19574
  {$EXTERNALSYM CO_E_CLRNOTAVAILABLE}
 
19575
 
 
19576
//
 
19577
// MessageId: CO_E_ASYNC_WORK_REJECTED
 
19578
//
 
19579
// MessageText:
 
19580
//
 
19581
//  The thread-pool rejected the submitted asynchronous work.
 
19582
//
 
19583
  CO_E_ASYNC_WORK_REJECTED = HRESULT($80004029);
 
19584
  {$EXTERNALSYM CO_E_ASYNC_WORK_REJECTED}
 
19585
 
 
19586
//
 
19587
// MessageId: CO_E_SERVER_INIT_TIMEOUT
 
19588
//
 
19589
// MessageText:
 
19590
//
 
19591
//  The server started, but did not finish initializing in a timely fashion.
 
19592
//
 
19593
  CO_E_SERVER_INIT_TIMEOUT = HRESULT($8000402A);
 
19594
  {$EXTERNALSYM CO_E_SERVER_INIT_TIMEOUT}
 
19595
 
 
19596
//
 
19597
// MessageId: CO_E_NO_SECCTX_IN_ACTIVATE
 
19598
//
 
19599
// MessageText:
 
19600
//
 
19601
//  Unable to complete the call since there is no COM+ security context inside IObjectControl.Activate.
 
19602
//
 
19603
  CO_E_NO_SECCTX_IN_ACTIVATE = HRESULT($8000402B);
 
19604
  {$EXTERNALSYM CO_E_NO_SECCTX_IN_ACTIVATE}
 
19605
 
 
19606
//
 
19607
// MessageId: CO_E_TRACKER_CONFIG
 
19608
//
 
19609
// MessageText:
 
19610
//
 
19611
//  The provided tracker configuration is invalid
 
19612
//
 
19613
  CO_E_TRACKER_CONFIG = HRESULT($80004030);
 
19614
  {$EXTERNALSYM CO_E_TRACKER_CONFIG}
 
19615
 
 
19616
//
 
19617
// MessageId: CO_E_THREADPOOL_CONFIG
 
19618
//
 
19619
// MessageText:
 
19620
//
 
19621
//  The provided thread pool configuration is invalid
 
19622
//
 
19623
  CO_E_THREADPOOL_CONFIG = HRESULT($80004031);
 
19624
  {$EXTERNALSYM CO_E_THREADPOOL_CONFIG}
 
19625
 
 
19626
//
 
19627
// MessageId: CO_E_SXS_CONFIG
 
19628
//
 
19629
// MessageText:
 
19630
//
 
19631
//  The provided side-by-side configuration is invalid
 
19632
//
 
19633
  CO_E_SXS_CONFIG = HRESULT($80004032);
 
19634
  {$EXTERNALSYM CO_E_SXS_CONFIG}
 
19635
 
 
19636
//
 
19637
// MessageId: CO_E_MALFORMED_SPN
 
19638
//
 
19639
// MessageText:
 
19640
//
 
19641
//  The server principal name (SPN) obtained during security negotiation is malformed.
 
19642
//
 
19643
  CO_E_MALFORMED_SPN = HRESULT($80004033);
 
19644
  {$EXTERNALSYM CO_E_MALFORMED_SPN}
 
19645
 
 
19646
//
 
19647
// Success codes
 
19648
//
 
19649
  S_OK = HRESULT($00000000);
 
19650
  {$EXTERNALSYM S_OK}
 
19651
  S_FALSE = HRESULT($00000001);
 
19652
  {$EXTERNALSYM S_FALSE}
 
19653
 
 
19654
// ******************
 
19655
// FACILITY_ITF
 
19656
// ******************
 
19657
 
 
19658
//
 
19659
// Codes 0x0-0x01ff are reserved for the OLE group of
 
19660
// interfaces.
 
19661
//
 
19662
 
 
19663
//
 
19664
// Generic OLE errors that may be returned by many inerfaces
 
19665
//
 
19666
 
 
19667
  OLE_E_FIRST = HRESULT($80040000);
 
19668
  {$EXTERNALSYM OLE_E_FIRST}
 
19669
  OLE_E_LAST = HRESULT($800400FF);
 
19670
  {$EXTERNALSYM OLE_E_LAST}
 
19671
  OLE_S_FIRST = HRESULT($00040000);
 
19672
  {$EXTERNALSYM OLE_S_FIRST}
 
19673
  OLE_S_LAST = HRESULT($000400FF);
 
19674
  {$EXTERNALSYM OLE_S_LAST}
 
19675
 
 
19676
//
 
19677
// Old OLE errors
 
19678
//
 
19679
//
 
19680
// MessageId: OLE_E_OLEVERB
 
19681
//
 
19682
// MessageText:
 
19683
//
 
19684
//  Invalid OLEVERB structure
 
19685
//
 
19686
  OLE_E_OLEVERB = HRESULT($80040000);
 
19687
  {$EXTERNALSYM OLE_E_OLEVERB}
 
19688
 
 
19689
//
 
19690
// MessageId: OLE_E_ADVF
 
19691
//
 
19692
// MessageText:
 
19693
//
 
19694
//  Invalid advise flags
 
19695
//
 
19696
  OLE_E_ADVF = HRESULT($80040001);
 
19697
  {$EXTERNALSYM OLE_E_ADVF}
 
19698
 
 
19699
//
 
19700
// MessageId: OLE_E_ENUM_NOMORE
 
19701
//
 
19702
// MessageText:
 
19703
//
 
19704
//  Can't enumerate any more, because the associated data is missing
 
19705
//
 
19706
  OLE_E_ENUM_NOMORE = HRESULT($80040002);
 
19707
  {$EXTERNALSYM OLE_E_ENUM_NOMORE}
 
19708
 
 
19709
//
 
19710
// MessageId: OLE_E_ADVISENOTSUPPORTED
 
19711
//
 
19712
// MessageText:
 
19713
//
 
19714
//  This implementation doesn't take advises
 
19715
//
 
19716
  OLE_E_ADVISENOTSUPPORTED = HRESULT($80040003);
 
19717
  {$EXTERNALSYM OLE_E_ADVISENOTSUPPORTED}
 
19718
 
 
19719
//
 
19720
// MessageId: OLE_E_NOCONNECTION
 
19721
//
 
19722
// MessageText:
 
19723
//
 
19724
//  There is no connection for this connection ID
 
19725
//
 
19726
  OLE_E_NOCONNECTION = HRESULT($80040004);
 
19727
  {$EXTERNALSYM OLE_E_NOCONNECTION}
 
19728
 
 
19729
//
 
19730
// MessageId: OLE_E_NOTRUNNING
 
19731
//
 
19732
// MessageText:
 
19733
//
 
19734
//  Need to run the object to perform this operation
 
19735
//
 
19736
  OLE_E_NOTRUNNING = HRESULT($80040005);
 
19737
  {$EXTERNALSYM OLE_E_NOTRUNNING}
 
19738
 
 
19739
//
 
19740
// MessageId: OLE_E_NOCACHE
 
19741
//
 
19742
// MessageText:
 
19743
//
 
19744
//  There is no cache to operate on
 
19745
//
 
19746
  OLE_E_NOCACHE = HRESULT($80040006);
 
19747
  {$EXTERNALSYM OLE_E_NOCACHE}
 
19748
 
 
19749
//
 
19750
// MessageId: OLE_E_BLANK
 
19751
//
 
19752
// MessageText:
 
19753
//
 
19754
//  Uninitialized object
 
19755
//
 
19756
  OLE_E_BLANK = HRESULT($80040007);
 
19757
  {$EXTERNALSYM OLE_E_BLANK}
 
19758
 
 
19759
//
 
19760
// MessageId: OLE_E_CLASSDIFF
 
19761
//
 
19762
// MessageText:
 
19763
//
 
19764
//  Linked object's source class has changed
 
19765
//
 
19766
  OLE_E_CLASSDIFF = HRESULT($80040008);
 
19767
  {$EXTERNALSYM OLE_E_CLASSDIFF}
 
19768
 
 
19769
//
 
19770
// MessageId: OLE_E_CANT_GETMONIKER
 
19771
//
 
19772
// MessageText:
 
19773
//
 
19774
//  Not able to get the moniker of the object
 
19775
//
 
19776
  OLE_E_CANT_GETMONIKER = HRESULT($80040009);
 
19777
  {$EXTERNALSYM OLE_E_CANT_GETMONIKER}
 
19778
 
 
19779
//
 
19780
// MessageId: OLE_E_CANT_BINDTOSOURCE
 
19781
//
 
19782
// MessageText:
 
19783
//
 
19784
//  Not able to bind to the source
 
19785
//
 
19786
  OLE_E_CANT_BINDTOSOURCE = HRESULT($8004000A);
 
19787
  {$EXTERNALSYM OLE_E_CANT_BINDTOSOURCE}
 
19788
 
 
19789
//
 
19790
// MessageId: OLE_E_STATIC
 
19791
//
 
19792
// MessageText:
 
19793
//
 
19794
//  Object is static; operation not allowed
 
19795
//
 
19796
  OLE_E_STATIC = HRESULT($8004000B);
 
19797
  {$EXTERNALSYM OLE_E_STATIC}
 
19798
 
 
19799
//
 
19800
// MessageId: OLE_E_PROMPTSAVECANCELLED
 
19801
//
 
19802
// MessageText:
 
19803
//
 
19804
//  User canceled out of save dialog
 
19805
//
 
19806
  OLE_E_PROMPTSAVECANCELLED = HRESULT($8004000C);
 
19807
  {$EXTERNALSYM OLE_E_PROMPTSAVECANCELLED}
 
19808
 
 
19809
//
 
19810
// MessageId: OLE_E_INVALIDRECT
 
19811
//
 
19812
// MessageText:
 
19813
//
 
19814
//  Invalid rectangle
 
19815
//
 
19816
  OLE_E_INVALIDRECT = HRESULT($8004000D);
 
19817
  {$EXTERNALSYM OLE_E_INVALIDRECT}
 
19818
 
 
19819
//
 
19820
// MessageId: OLE_E_WRONGCOMPOBJ
 
19821
//
 
19822
// MessageText:
 
19823
//
 
19824
//  compobj.dll is too old for the ole2.dll initialized
 
19825
//
 
19826
  OLE_E_WRONGCOMPOBJ = HRESULT($8004000E);
 
19827
  {$EXTERNALSYM OLE_E_WRONGCOMPOBJ}
 
19828
 
 
19829
//
 
19830
// MessageId: OLE_E_INVALIDHWND
 
19831
//
 
19832
// MessageText:
 
19833
//
 
19834
//  Invalid window handle
 
19835
//
 
19836
  OLE_E_INVALIDHWND = HRESULT($8004000F);
 
19837
  {$EXTERNALSYM OLE_E_INVALIDHWND}
 
19838
 
 
19839
//
 
19840
// MessageId: OLE_E_NOT_INPLACEACTIVE
 
19841
//
 
19842
// MessageText:
 
19843
//
 
19844
//  Object is not in any of the inplace active states
 
19845
//
 
19846
  OLE_E_NOT_INPLACEACTIVE = HRESULT($80040010);
 
19847
  {$EXTERNALSYM OLE_E_NOT_INPLACEACTIVE}
 
19848
 
 
19849
//
 
19850
// MessageId: OLE_E_CANTCONVERT
 
19851
//
 
19852
// MessageText:
 
19853
//
 
19854
//  Not able to convert object
 
19855
//
 
19856
  OLE_E_CANTCONVERT = HRESULT($80040011);
 
19857
  {$EXTERNALSYM OLE_E_CANTCONVERT}
 
19858
 
 
19859
//
 
19860
// MessageId: OLE_E_NOSTORAGE
 
19861
//
 
19862
// MessageText:
 
19863
//
 
19864
//  Not able to perform the operation because object is not given storage yet
 
19865
//
 
19866
  OLE_E_NOSTORAGE = HRESULT($80040012);
 
19867
  {$EXTERNALSYM OLE_E_NOSTORAGE}
 
19868
 
 
19869
//
 
19870
// MessageId: DV_E_FORMATETC
 
19871
//
 
19872
// MessageText:
 
19873
//
 
19874
//  Invalid FORMATETC structure
 
19875
//
 
19876
  DV_E_FORMATETC = HRESULT($80040064);
 
19877
  {$EXTERNALSYM DV_E_FORMATETC}
 
19878
 
 
19879
//
 
19880
// MessageId: DV_E_DVTARGETDEVICE
 
19881
//
 
19882
// MessageText:
 
19883
//
 
19884
//  Invalid DVTARGETDEVICE structure
 
19885
//
 
19886
  DV_E_DVTARGETDEVICE = HRESULT($80040065);
 
19887
  {$EXTERNALSYM DV_E_DVTARGETDEVICE}
 
19888
 
 
19889
//
 
19890
// MessageId: DV_E_STGMEDIUM
 
19891
//
 
19892
// MessageText:
 
19893
//
 
19894
//  Invalid STDGMEDIUM structure
 
19895
//
 
19896
  DV_E_STGMEDIUM = HRESULT($80040066);
 
19897
  {$EXTERNALSYM DV_E_STGMEDIUM}
 
19898
 
 
19899
//
 
19900
// MessageId: DV_E_STATDATA
 
19901
//
 
19902
// MessageText:
 
19903
//
 
19904
//  Invalid STATDATA structure
 
19905
//
 
19906
  DV_E_STATDATA = HRESULT($80040067);
 
19907
  {$EXTERNALSYM DV_E_STATDATA}
 
19908
 
 
19909
//
 
19910
// MessageId: DV_E_LINDEX
 
19911
//
 
19912
// MessageText:
 
19913
//
 
19914
//  Invalid lindex
 
19915
//
 
19916
  DV_E_LINDEX = HRESULT($80040068);
 
19917
  {$EXTERNALSYM DV_E_LINDEX}
 
19918
 
 
19919
//
 
19920
// MessageId: DV_E_TYMED
 
19921
//
 
19922
// MessageText:
 
19923
//
 
19924
//  Invalid tymed
 
19925
//
 
19926
  DV_E_TYMED = HRESULT($80040069);
 
19927
  {$EXTERNALSYM DV_E_TYMED}
 
19928
 
 
19929
//
 
19930
// MessageId: DV_E_CLIPFORMAT
 
19931
//
 
19932
// MessageText:
 
19933
//
 
19934
//  Invalid clipboard format
 
19935
//
 
19936
  DV_E_CLIPFORMAT = HRESULT($8004006A);
 
19937
  {$EXTERNALSYM DV_E_CLIPFORMAT}
 
19938
 
 
19939
//
 
19940
// MessageId: DV_E_DVASPECT
 
19941
//
 
19942
// MessageText:
 
19943
//
 
19944
//  Invalid aspect(s)
 
19945
//
 
19946
  DV_E_DVASPECT = HRESULT($8004006B);
 
19947
  {$EXTERNALSYM DV_E_DVASPECT}
 
19948
 
 
19949
//
 
19950
// MessageId: DV_E_DVTARGETDEVICE_SIZE
 
19951
//
 
19952
// MessageText:
 
19953
//
 
19954
//  tdSize parameter of the DVTARGETDEVICE structure is invalid
 
19955
//
 
19956
  DV_E_DVTARGETDEVICE_SIZE = HRESULT($8004006C);
 
19957
  {$EXTERNALSYM DV_E_DVTARGETDEVICE_SIZE}
 
19958
 
 
19959
//
 
19960
// MessageId: DV_E_NOIVIEWOBJECT
 
19961
//
 
19962
// MessageText:
 
19963
//
 
19964
//  Object doesn't support IViewObject interface
 
19965
//
 
19966
  DV_E_NOIVIEWOBJECT = HRESULT($8004006D);
 
19967
  {$EXTERNALSYM DV_E_NOIVIEWOBJECT}
 
19968
 
 
19969
  DRAGDROP_E_FIRST = DWORD($80040100);
 
19970
  {$EXTERNALSYM DRAGDROP_E_FIRST}
 
19971
  DRAGDROP_E_LAST = DWORD($8004010F);
 
19972
  {$EXTERNALSYM DRAGDROP_E_LAST}
 
19973
  DRAGDROP_S_FIRST = DWORD($00040100);
 
19974
  {$EXTERNALSYM DRAGDROP_S_FIRST}
 
19975
  DRAGDROP_S_LAST = DWORD($0004010F);
 
19976
  {$EXTERNALSYM DRAGDROP_S_LAST}
 
19977
//
 
19978
// MessageId: DRAGDROP_E_NOTREGISTERED
 
19979
//
 
19980
// MessageText:
 
19981
//
 
19982
//  Trying to revoke a drop target that has not been registered
 
19983
//
 
19984
  DRAGDROP_E_NOTREGISTERED = HRESULT($80040100);
 
19985
  {$EXTERNALSYM DRAGDROP_E_NOTREGISTERED}
 
19986
 
 
19987
//
 
19988
// MessageId: DRAGDROP_E_ALREADYREGISTERED
 
19989
//
 
19990
// MessageText:
 
19991
//
 
19992
//  This window has already been registered as a drop target
 
19993
//
 
19994
  DRAGDROP_E_ALREADYREGISTERED = HRESULT($80040101);
 
19995
  {$EXTERNALSYM DRAGDROP_E_ALREADYREGISTERED}
 
19996
 
 
19997
//
 
19998
// MessageId: DRAGDROP_E_INVALIDHWND
 
19999
//
 
20000
// MessageText:
 
20001
//
 
20002
//  Invalid window handle
 
20003
//
 
20004
  DRAGDROP_E_INVALIDHWND = HRESULT($80040102);
 
20005
  {$EXTERNALSYM DRAGDROP_E_INVALIDHWND}
 
20006
 
 
20007
  CLASSFACTORY_E_FIRST = DWORD($80040110);
 
20008
  {$EXTERNALSYM CLASSFACTORY_E_FIRST}
 
20009
  CLASSFACTORY_E_LAST = DWORD($8004011F);
 
20010
  {$EXTERNALSYM CLASSFACTORY_E_LAST}
 
20011
  CLASSFACTORY_S_FIRST = DWORD($00040110);
 
20012
  {$EXTERNALSYM CLASSFACTORY_S_FIRST}
 
20013
  CLASSFACTORY_S_LAST = DWORD($0004011F);
 
20014
  {$EXTERNALSYM CLASSFACTORY_S_LAST}
 
20015
//
 
20016
// MessageId: CLASS_E_NOAGGREGATION
 
20017
//
 
20018
// MessageText:
 
20019
//
 
20020
//  Class does not support aggregation (or class object is remote)
 
20021
//
 
20022
  CLASS_E_NOAGGREGATION = HRESULT($80040110);
 
20023
  {$EXTERNALSYM CLASS_E_NOAGGREGATION}
 
20024
 
 
20025
//
 
20026
// MessageId: CLASS_E_CLASSNOTAVAILABLE
 
20027
//
 
20028
// MessageText:
 
20029
//
 
20030
//  ClassFactory cannot supply requested class
 
20031
//
 
20032
  CLASS_E_CLASSNOTAVAILABLE = HRESULT($80040111);
 
20033
  {$EXTERNALSYM CLASS_E_CLASSNOTAVAILABLE}
 
20034
 
 
20035
//
 
20036
// MessageId: CLASS_E_NOTLICENSED
 
20037
//
 
20038
// MessageText:
 
20039
//
 
20040
//  Class is not licensed for use
 
20041
//
 
20042
  CLASS_E_NOTLICENSED = HRESULT($80040112);
 
20043
  {$EXTERNALSYM CLASS_E_NOTLICENSED}
 
20044
 
 
20045
  MARSHAL_E_FIRST = DWORD($80040120);
 
20046
  {$EXTERNALSYM MARSHAL_E_FIRST}
 
20047
  MARSHAL_E_LAST = DWORD($8004012F);
 
20048
  {$EXTERNALSYM MARSHAL_E_LAST}
 
20049
  MARSHAL_S_FIRST = DWORD($00040120);
 
20050
  {$EXTERNALSYM MARSHAL_S_FIRST}
 
20051
  MARSHAL_S_LAST = DWORD($0004012F);
 
20052
  {$EXTERNALSYM MARSHAL_S_LAST}
 
20053
  DATA_E_FIRST = DWORD($80040130);
 
20054
  {$EXTERNALSYM DATA_E_FIRST}
 
20055
  DATA_E_LAST = DWORD($8004013F);
 
20056
  {$EXTERNALSYM DATA_E_LAST}
 
20057
  DATA_S_FIRST = DWORD($00040130);
 
20058
  {$EXTERNALSYM DATA_S_FIRST}
 
20059
  DATA_S_LAST = DWORD($0004013F);
 
20060
  {$EXTERNALSYM DATA_S_LAST}
 
20061
  VIEW_E_FIRST = DWORD($80040140);
 
20062
  {$EXTERNALSYM VIEW_E_FIRST}
 
20063
  VIEW_E_LAST = DWORD($8004014F);
 
20064
  {$EXTERNALSYM VIEW_E_LAST}
 
20065
  VIEW_S_FIRST = DWORD($00040140);
 
20066
  {$EXTERNALSYM VIEW_S_FIRST}
 
20067
  VIEW_S_LAST = DWORD($0004014F);
 
20068
  {$EXTERNALSYM VIEW_S_LAST}
 
20069
//
 
20070
// MessageId: VIEW_E_DRAW
 
20071
//
 
20072
// MessageText:
 
20073
//
 
20074
//  Error drawing view
 
20075
//
 
20076
  VIEW_E_DRAW = HRESULT($80040140);
 
20077
  {$EXTERNALSYM VIEW_E_DRAW}
 
20078
 
 
20079
  REGDB_E_FIRST = DWORD($80040150);
 
20080
  {$EXTERNALSYM REGDB_E_FIRST}
 
20081
  REGDB_E_LAST = DWORD($8004015F);
 
20082
  {$EXTERNALSYM REGDB_E_LAST}
 
20083
  REGDB_S_FIRST = DWORD($00040150);
 
20084
  {$EXTERNALSYM REGDB_S_FIRST}
 
20085
  REGDB_S_LAST = DWORD($0004015F);
 
20086
  {$EXTERNALSYM REGDB_S_LAST}
 
20087
//
 
20088
// MessageId: REGDB_E_READREGDB
 
20089
//
 
20090
// MessageText:
 
20091
//
 
20092
//  Could not read key from registry
 
20093
//
 
20094
  REGDB_E_READREGDB = HRESULT($80040150);
 
20095
  {$EXTERNALSYM REGDB_E_READREGDB}
 
20096
 
 
20097
//
 
20098
// MessageId: REGDB_E_WRITEREGDB
 
20099
//
 
20100
// MessageText:
 
20101
//
 
20102
//  Could not write key to registry
 
20103
//
 
20104
  REGDB_E_WRITEREGDB = HRESULT($80040151);
 
20105
  {$EXTERNALSYM REGDB_E_WRITEREGDB}
 
20106
 
 
20107
//
 
20108
// MessageId: REGDB_E_KEYMISSING
 
20109
//
 
20110
// MessageText:
 
20111
//
 
20112
//  Could not find the key in the registry
 
20113
//
 
20114
  REGDB_E_KEYMISSING = HRESULT($80040152);
 
20115
  {$EXTERNALSYM REGDB_E_KEYMISSING}
 
20116
 
 
20117
//
 
20118
// MessageId: REGDB_E_INVALIDVALUE
 
20119
//
 
20120
// MessageText:
 
20121
//
 
20122
//  Invalid value for registry
 
20123
//
 
20124
  REGDB_E_INVALIDVALUE = HRESULT($80040153);
 
20125
  {$EXTERNALSYM REGDB_E_INVALIDVALUE}
 
20126
 
 
20127
//
 
20128
// MessageId: REGDB_E_CLASSNOTREG
 
20129
//
 
20130
// MessageText:
 
20131
//
 
20132
//  Class not registered
 
20133
//
 
20134
  REGDB_E_CLASSNOTREG = HRESULT($80040154);
 
20135
  {$EXTERNALSYM REGDB_E_CLASSNOTREG}
 
20136
 
 
20137
//
 
20138
// MessageId: REGDB_E_IIDNOTREG
 
20139
//
 
20140
// MessageText:
 
20141
//
 
20142
//  Interface not registered
 
20143
//
 
20144
  REGDB_E_IIDNOTREG = HRESULT($80040155);
 
20145
  {$EXTERNALSYM REGDB_E_IIDNOTREG}
 
20146
 
 
20147
//
 
20148
// MessageId: REGDB_E_BADTHREADINGMODEL
 
20149
//
 
20150
// MessageText:
 
20151
//
 
20152
//  Threading model entry is not valid
 
20153
//
 
20154
  REGDB_E_BADTHREADINGMODEL = HRESULT($80040156);
 
20155
  {$EXTERNALSYM REGDB_E_BADTHREADINGMODEL}
 
20156
 
 
20157
  CAT_E_FIRST = DWORD($80040160);
 
20158
  {$EXTERNALSYM CAT_E_FIRST}
 
20159
  CAT_E_LAST = DWORD($80040161);
 
20160
  {$EXTERNALSYM CAT_E_LAST}
 
20161
//
 
20162
// MessageId: CAT_E_CATIDNOEXIST
 
20163
//
 
20164
// MessageText:
 
20165
//
 
20166
//  CATID does not exist
 
20167
//
 
20168
  CAT_E_CATIDNOEXIST = HRESULT($80040160);
 
20169
  {$EXTERNALSYM CAT_E_CATIDNOEXIST}
 
20170
 
 
20171
//
 
20172
// MessageId: CAT_E_NODESCRIPTION
 
20173
//
 
20174
// MessageText:
 
20175
//
 
20176
//  Description not found
 
20177
//
 
20178
  CAT_E_NODESCRIPTION = HRESULT($80040161);
 
20179
  {$EXTERNALSYM CAT_E_NODESCRIPTION}
 
20180
 
 
20181
////////////////////////////////////
 
20182
//                                //
 
20183
//     Class Store Error Codes    //
 
20184
//                                //
 
20185
////////////////////////////////////
 
20186
  CS_E_FIRST = DWORD($80040164);
 
20187
  {$EXTERNALSYM CS_E_FIRST}
 
20188
  CS_E_LAST = DWORD($8004016F);
 
20189
  {$EXTERNALSYM CS_E_LAST}
 
20190
//
 
20191
// MessageId: CS_E_PACKAGE_NOTFOUND
 
20192
//
 
20193
// MessageText:
 
20194
//
 
20195
//  No package in the software installation data in the Active Directory meets this criteria.
 
20196
//
 
20197
  CS_E_PACKAGE_NOTFOUND = HRESULT($80040164);
 
20198
  {$EXTERNALSYM CS_E_PACKAGE_NOTFOUND}
 
20199
 
 
20200
//
 
20201
// MessageId: CS_E_NOT_DELETABLE
 
20202
//
 
20203
// MessageText:
 
20204
//
 
20205
//  Deleting this will break the referential integrity of the software installation data in the Active Directory.
 
20206
//
 
20207
  CS_E_NOT_DELETABLE = HRESULT($80040165);
 
20208
  {$EXTERNALSYM CS_E_NOT_DELETABLE}
 
20209
 
 
20210
//
 
20211
// MessageId: CS_E_CLASS_NOTFOUND
 
20212
//
 
20213
// MessageText:
 
20214
//
 
20215
//  The CLSID was not found in the software installation data in the Active Directory.
 
20216
//
 
20217
  CS_E_CLASS_NOTFOUND = HRESULT($80040166);
 
20218
  {$EXTERNALSYM CS_E_CLASS_NOTFOUND}
 
20219
 
 
20220
//
 
20221
// MessageId: CS_E_INVALID_VERSION
 
20222
//
 
20223
// MessageText:
 
20224
//
 
20225
//  The software installation data in the Active Directory is corrupt.
 
20226
//
 
20227
  CS_E_INVALID_VERSION = HRESULT($80040167);
 
20228
  {$EXTERNALSYM CS_E_INVALID_VERSION}
 
20229
 
 
20230
//
 
20231
// MessageId: CS_E_NO_CLASSSTORE
 
20232
//
 
20233
// MessageText:
 
20234
//
 
20235
//  There is no software installation data in the Active Directory.
 
20236
//
 
20237
  CS_E_NO_CLASSSTORE = HRESULT($80040168);
 
20238
  {$EXTERNALSYM CS_E_NO_CLASSSTORE}
 
20239
 
 
20240
//
 
20241
// MessageId: CS_E_OBJECT_NOTFOUND
 
20242
//
 
20243
// MessageText:
 
20244
//
 
20245
//  There is no software installation data object in the Active Directory.
 
20246
//
 
20247
  CS_E_OBJECT_NOTFOUND = HRESULT($80040169);
 
20248
  {$EXTERNALSYM CS_E_OBJECT_NOTFOUND}
 
20249
 
 
20250
//
 
20251
// MessageId: CS_E_OBJECT_ALREADY_EXISTS
 
20252
//
 
20253
// MessageText:
 
20254
//
 
20255
//  The software installation data object in the Active Directory already exists.
 
20256
//
 
20257
  CS_E_OBJECT_ALREADY_EXISTS = HRESULT($8004016A);
 
20258
  {$EXTERNALSYM CS_E_OBJECT_ALREADY_EXISTS}
 
20259
 
 
20260
//
 
20261
// MessageId: CS_E_INVALID_PATH
 
20262
//
 
20263
// MessageText:
 
20264
//
 
20265
//  The path to the software installation data in the Active Directory is not correct.
 
20266
//
 
20267
  CS_E_INVALID_PATH = HRESULT($8004016B);
 
20268
  {$EXTERNALSYM CS_E_INVALID_PATH}
 
20269
 
 
20270
//
 
20271
// MessageId: CS_E_NETWORK_ERROR
 
20272
//
 
20273
// MessageText:
 
20274
//
 
20275
//  A network error interrupted the operation.
 
20276
//
 
20277
  CS_E_NETWORK_ERROR = HRESULT($8004016C);
 
20278
  {$EXTERNALSYM CS_E_NETWORK_ERROR}
 
20279
 
 
20280
//
 
20281
// MessageId: CS_E_ADMIN_LIMIT_EXCEEDED
 
20282
//
 
20283
// MessageText:
 
20284
//
 
20285
//  The size of this object exceeds the maximum size set by the Administrator.
 
20286
//
 
20287
  CS_E_ADMIN_LIMIT_EXCEEDED = HRESULT($8004016D);
 
20288
  {$EXTERNALSYM CS_E_ADMIN_LIMIT_EXCEEDED}
 
20289
 
 
20290
//
 
20291
// MessageId: CS_E_SCHEMA_MISMATCH
 
20292
//
 
20293
// MessageText:
 
20294
//
 
20295
//  The schema for the software installation data in the Active Directory does not match the required schema.
 
20296
//
 
20297
  CS_E_SCHEMA_MISMATCH = HRESULT($8004016E);
 
20298
  {$EXTERNALSYM CS_E_SCHEMA_MISMATCH}
 
20299
 
 
20300
//
 
20301
// MessageId: CS_E_INTERNAL_ERROR
 
20302
//
 
20303
// MessageText:
 
20304
//
 
20305
//  An error occurred in the software installation data in the Active Directory.
 
20306
//
 
20307
  CS_E_INTERNAL_ERROR = HRESULT($8004016F);
 
20308
  {$EXTERNALSYM CS_E_INTERNAL_ERROR}
 
20309
 
 
20310
  CACHE_E_FIRST = DWORD($80040170);
 
20311
  {$EXTERNALSYM CACHE_E_FIRST}
 
20312
  CACHE_E_LAST = DWORD($8004017F);
 
20313
  {$EXTERNALSYM CACHE_E_LAST}
 
20314
  CACHE_S_FIRST = DWORD($00040170);
 
20315
  {$EXTERNALSYM CACHE_S_FIRST}
 
20316
  CACHE_S_LAST = DWORD($0004017F);
 
20317
  {$EXTERNALSYM CACHE_S_LAST}
 
20318
//
 
20319
// MessageId: CACHE_E_NOCACHE_UPDATED
 
20320
//
 
20321
// MessageText:
 
20322
//
 
20323
//  Cache not updated
 
20324
//
 
20325
  CACHE_E_NOCACHE_UPDATED = HRESULT($80040170);
 
20326
  {$EXTERNALSYM CACHE_E_NOCACHE_UPDATED}
 
20327
 
 
20328
  OLEOBJ_E_FIRST = DWORD($80040180);
 
20329
  {$EXTERNALSYM OLEOBJ_E_FIRST}
 
20330
  OLEOBJ_E_LAST = DWORD($8004018F);
 
20331
  {$EXTERNALSYM OLEOBJ_E_LAST}
 
20332
  OLEOBJ_S_FIRST = DWORD($00040180);
 
20333
  {$EXTERNALSYM OLEOBJ_S_FIRST}
 
20334
  OLEOBJ_S_LAST = DWORD($0004018F);
 
20335
  {$EXTERNALSYM OLEOBJ_S_LAST}
 
20336
//
 
20337
// MessageId: OLEOBJ_E_NOVERBS
 
20338
//
 
20339
// MessageText:
 
20340
//
 
20341
//  No verbs for OLE object
 
20342
//
 
20343
  OLEOBJ_E_NOVERBS = HRESULT($80040180);
 
20344
  {$EXTERNALSYM OLEOBJ_E_NOVERBS}
 
20345
 
 
20346
//
 
20347
// MessageId: OLEOBJ_E_INVALIDVERB
 
20348
//
 
20349
// MessageText:
 
20350
//
 
20351
//  Invalid verb for OLE object
 
20352
//
 
20353
  OLEOBJ_E_INVALIDVERB = HRESULT($80040181);
 
20354
  {$EXTERNALSYM OLEOBJ_E_INVALIDVERB}
 
20355
 
 
20356
  CLIENTSITE_E_FIRST = DWORD($80040190);
 
20357
  {$EXTERNALSYM CLIENTSITE_E_FIRST}
 
20358
  CLIENTSITE_E_LAST = DWORD($8004019F);
 
20359
  {$EXTERNALSYM CLIENTSITE_E_LAST}
 
20360
  CLIENTSITE_S_FIRST = DWORD($00040190);
 
20361
  {$EXTERNALSYM CLIENTSITE_S_FIRST}
 
20362
  CLIENTSITE_S_LAST = DWORD($0004019F);
 
20363
  {$EXTERNALSYM CLIENTSITE_S_LAST}
 
20364
//
 
20365
// MessageId: INPLACE_E_NOTUNDOABLE
 
20366
//
 
20367
// MessageText:
 
20368
//
 
20369
//  Undo is not available
 
20370
//
 
20371
  INPLACE_E_NOTUNDOABLE = HRESULT($800401A0);
 
20372
  {$EXTERNALSYM INPLACE_E_NOTUNDOABLE}
 
20373
 
 
20374
//
 
20375
// MessageId: INPLACE_E_NOTOOLSPACE
 
20376
//
 
20377
// MessageText:
 
20378
//
 
20379
//  Space for tools is not available
 
20380
//
 
20381
  INPLACE_E_NOTOOLSPACE = HRESULT($800401A1);
 
20382
  {$EXTERNALSYM INPLACE_E_NOTOOLSPACE}
 
20383
 
 
20384
  INPLACE_E_FIRST = DWORD($800401A0);
 
20385
  {$EXTERNALSYM INPLACE_E_FIRST}
 
20386
  INPLACE_E_LAST = DWORD($800401AF);
 
20387
  {$EXTERNALSYM INPLACE_E_LAST}
 
20388
  INPLACE_S_FIRST = DWORD($000401A0);
 
20389
  {$EXTERNALSYM INPLACE_S_FIRST}
 
20390
  INPLACE_S_LAST = DWORD($000401AF);
 
20391
  {$EXTERNALSYM INPLACE_S_LAST}
 
20392
  ENUM_E_FIRST = DWORD($800401B0);
 
20393
  {$EXTERNALSYM ENUM_E_FIRST}
 
20394
  ENUM_E_LAST = DWORD($800401BF);
 
20395
  {$EXTERNALSYM ENUM_E_LAST}
 
20396
  ENUM_S_FIRST = DWORD($000401B0);
 
20397
  {$EXTERNALSYM ENUM_S_FIRST}
 
20398
  ENUM_S_LAST = DWORD($000401BF);
 
20399
  {$EXTERNALSYM ENUM_S_LAST}
 
20400
  CONVERT10_E_FIRST = DWORD($800401C0);
 
20401
  {$EXTERNALSYM CONVERT10_E_FIRST}
 
20402
  CONVERT10_E_LAST = DWORD($800401CF);
 
20403
  {$EXTERNALSYM CONVERT10_E_LAST}
 
20404
  CONVERT10_S_FIRST = DWORD($000401C0);
 
20405
  {$EXTERNALSYM CONVERT10_S_FIRST}
 
20406
  CONVERT10_S_LAST = DWORD($000401CF);
 
20407
  {$EXTERNALSYM CONVERT10_S_LAST}
 
20408
//
 
20409
// MessageId: CONVERT10_E_OLESTREAM_GET
 
20410
//
 
20411
// MessageText:
 
20412
//
 
20413
//  OLESTREAM Get method failed
 
20414
//
 
20415
  CONVERT10_E_OLESTREAM_GET = HRESULT($800401C0);
 
20416
  {$EXTERNALSYM CONVERT10_E_OLESTREAM_GET}
 
20417
 
 
20418
//
 
20419
// MessageId: CONVERT10_E_OLESTREAM_PUT
 
20420
//
 
20421
// MessageText:
 
20422
//
 
20423
//  OLESTREAM Put method failed
 
20424
//
 
20425
  CONVERT10_E_OLESTREAM_PUT = HRESULT($800401C1);
 
20426
  {$EXTERNALSYM CONVERT10_E_OLESTREAM_PUT}
 
20427
 
 
20428
//
 
20429
// MessageId: CONVERT10_E_OLESTREAM_FMT
 
20430
//
 
20431
// MessageText:
 
20432
//
 
20433
//  Contents of the OLESTREAM not in correct format
 
20434
//
 
20435
  CONVERT10_E_OLESTREAM_FMT = HRESULT($800401C2);
 
20436
  {$EXTERNALSYM CONVERT10_E_OLESTREAM_FMT}
 
20437
 
 
20438
//
 
20439
// MessageId: CONVERT10_E_OLESTREAM_BITMAP_TO_DIB
 
20440
//
 
20441
// MessageText:
 
20442
//
 
20443
//  There was an error in a Windows GDI call while converting the bitmap to a DIB
 
20444
//
 
20445
  CONVERT10_E_OLESTREAM_BITMAP_TO_DIB = HRESULT($800401C3);
 
20446
  {$EXTERNALSYM CONVERT10_E_OLESTREAM_BITMAP_TO_DIB}
 
20447
 
 
20448
//
 
20449
// MessageId: CONVERT10_E_STG_FMT
 
20450
//
 
20451
// MessageText:
 
20452
//
 
20453
//  Contents of the IStorage not in correct format
 
20454
//
 
20455
  CONVERT10_E_STG_FMT = HRESULT($800401C4);
 
20456
  {$EXTERNALSYM CONVERT10_E_STG_FMT}
 
20457
 
 
20458
//
 
20459
// MessageId: CONVERT10_E_STG_NO_STD_STREAM
 
20460
//
 
20461
// MessageText:
 
20462
//
 
20463
//  Contents of IStorage is missing one of the standard streams
 
20464
//
 
20465
  CONVERT10_E_STG_NO_STD_STREAM = HRESULT($800401C5);
 
20466
  {$EXTERNALSYM CONVERT10_E_STG_NO_STD_STREAM}
 
20467
 
 
20468
//
 
20469
// MessageId: CONVERT10_E_STG_DIB_TO_BITMAP
 
20470
//
 
20471
// MessageText:
 
20472
//
 
20473
//  There was an error in a Windows GDI call while converting the DIB to a bitmap.
 
20474
//  
 
20475
//
 
20476
  CONVERT10_E_STG_DIB_TO_BITMAP = HRESULT($800401C6);
 
20477
  {$EXTERNALSYM CONVERT10_E_STG_DIB_TO_BITMAP}
 
20478
 
 
20479
  CLIPBRD_E_FIRST = DWORD($800401D0);
 
20480
  {$EXTERNALSYM CLIPBRD_E_FIRST}
 
20481
  CLIPBRD_E_LAST = DWORD($800401DF);
 
20482
  {$EXTERNALSYM CLIPBRD_E_LAST}
 
20483
  CLIPBRD_S_FIRST = DWORD($000401D0);
 
20484
  {$EXTERNALSYM CLIPBRD_S_FIRST}
 
20485
  CLIPBRD_S_LAST = DWORD($000401DF);
 
20486
  {$EXTERNALSYM CLIPBRD_S_LAST}
 
20487
//
 
20488
// MessageId: CLIPBRD_E_CANT_OPEN
 
20489
//
 
20490
// MessageText:
 
20491
//
 
20492
//  OpenClipboard Failed
 
20493
//
 
20494
  CLIPBRD_E_CANT_OPEN = HRESULT($800401D0);
 
20495
  {$EXTERNALSYM CLIPBRD_E_CANT_OPEN}
 
20496
 
 
20497
//
 
20498
// MessageId: CLIPBRD_E_CANT_EMPTY
 
20499
//
 
20500
// MessageText:
 
20501
//
 
20502
//  EmptyClipboard Failed
 
20503
//
 
20504
  CLIPBRD_E_CANT_EMPTY = HRESULT($800401D1);
 
20505
  {$EXTERNALSYM CLIPBRD_E_CANT_EMPTY}
 
20506
 
 
20507
//
 
20508
// MessageId: CLIPBRD_E_CANT_SET
 
20509
//
 
20510
// MessageText:
 
20511
//
 
20512
//  SetClipboard Failed
 
20513
//
 
20514
  CLIPBRD_E_CANT_SET = HRESULT($800401D2);
 
20515
  {$EXTERNALSYM CLIPBRD_E_CANT_SET}
 
20516
 
 
20517
//
 
20518
// MessageId: CLIPBRD_E_BAD_DATA
 
20519
//
 
20520
// MessageText:
 
20521
//
 
20522
//  Data on clipboard is invalid
 
20523
//
 
20524
  CLIPBRD_E_BAD_DATA = HRESULT($800401D3);
 
20525
  {$EXTERNALSYM CLIPBRD_E_BAD_DATA}
 
20526
 
 
20527
//
 
20528
// MessageId: CLIPBRD_E_CANT_CLOSE
 
20529
//
 
20530
// MessageText:
 
20531
//
 
20532
//  CloseClipboard Failed
 
20533
//
 
20534
  CLIPBRD_E_CANT_CLOSE = HRESULT($800401D4);
 
20535
  {$EXTERNALSYM CLIPBRD_E_CANT_CLOSE}
 
20536
 
 
20537
  MK_E_FIRST = DWORD($800401E0);
 
20538
  {$EXTERNALSYM MK_E_FIRST}
 
20539
  MK_E_LAST = DWORD($800401EF);
 
20540
  {$EXTERNALSYM MK_E_LAST}
 
20541
  MK_S_FIRST = DWORD($000401E0);
 
20542
  {$EXTERNALSYM MK_S_FIRST}
 
20543
  MK_S_LAST = DWORD($000401EF);
 
20544
  {$EXTERNALSYM MK_S_LAST}
 
20545
//
 
20546
// MessageId: MK_E_CONNECTMANUALLY
 
20547
//
 
20548
// MessageText:
 
20549
//
 
20550
//  Moniker needs to be connected manually
 
20551
//
 
20552
  MK_E_CONNECTMANUALLY = HRESULT($800401E0);
 
20553
  {$EXTERNALSYM MK_E_CONNECTMANUALLY}
 
20554
 
 
20555
//
 
20556
// MessageId: MK_E_EXCEEDEDDEADLINE
 
20557
//
 
20558
// MessageText:
 
20559
//
 
20560
//  Operation exceeded deadline
 
20561
//
 
20562
  MK_E_EXCEEDEDDEADLINE = HRESULT($800401E1);
 
20563
  {$EXTERNALSYM MK_E_EXCEEDEDDEADLINE}
 
20564
 
 
20565
//
 
20566
// MessageId: MK_E_NEEDGENERIC
 
20567
//
 
20568
// MessageText:
 
20569
//
 
20570
//  Moniker needs to be generic
 
20571
//
 
20572
  MK_E_NEEDGENERIC = HRESULT($800401E2);
 
20573
  {$EXTERNALSYM MK_E_NEEDGENERIC}
 
20574
 
 
20575
//
 
20576
// MessageId: MK_E_UNAVAILABLE
 
20577
//
 
20578
// MessageText:
 
20579
//
 
20580
//  Operation unavailable
 
20581
//
 
20582
  MK_E_UNAVAILABLE = HRESULT($800401E3);
 
20583
  {$EXTERNALSYM MK_E_UNAVAILABLE}
 
20584
 
 
20585
//
 
20586
// MessageId: MK_E_SYNTAX
 
20587
//
 
20588
// MessageText:
 
20589
//
 
20590
//  Invalid syntax
 
20591
//
 
20592
  MK_E_SYNTAX = HRESULT($800401E4);
 
20593
  {$EXTERNALSYM MK_E_SYNTAX}
 
20594
 
 
20595
//
 
20596
// MessageId: MK_E_NOOBJECT
 
20597
//
 
20598
// MessageText:
 
20599
//
 
20600
//  No object for moniker
 
20601
//
 
20602
  MK_E_NOOBJECT = HRESULT($800401E5);
 
20603
  {$EXTERNALSYM MK_E_NOOBJECT}
 
20604
 
 
20605
//
 
20606
// MessageId: MK_E_INVALIDEXTENSION
 
20607
//
 
20608
// MessageText:
 
20609
//
 
20610
//  Bad extension for file
 
20611
//
 
20612
  MK_E_INVALIDEXTENSION = HRESULT($800401E6);
 
20613
  {$EXTERNALSYM MK_E_INVALIDEXTENSION}
 
20614
 
 
20615
//
 
20616
// MessageId: MK_E_INTERMEDIATEINTERFACENOTSUPPORTED
 
20617
//
 
20618
// MessageText:
 
20619
//
 
20620
//  Intermediate operation failed
 
20621
//
 
20622
  MK_E_INTERMEDIATEINTERFACENOTSUPPORTED = HRESULT($800401E7);
 
20623
  {$EXTERNALSYM MK_E_INTERMEDIATEINTERFACENOTSUPPORTED}
 
20624
 
 
20625
//
 
20626
// MessageId: MK_E_NOTBINDABLE
 
20627
//
 
20628
// MessageText:
 
20629
//
 
20630
//  Moniker is not bindable
 
20631
//
 
20632
  MK_E_NOTBINDABLE = HRESULT($800401E8);
 
20633
  {$EXTERNALSYM MK_E_NOTBINDABLE}
 
20634
 
 
20635
//
 
20636
// MessageId: MK_E_NOTBOUND
 
20637
//
 
20638
// MessageText:
 
20639
//
 
20640
//  Moniker is not bound
 
20641
//
 
20642
  MK_E_NOTBOUND = HRESULT($800401E9);
 
20643
  {$EXTERNALSYM MK_E_NOTBOUND}
 
20644
 
 
20645
//
 
20646
// MessageId: MK_E_CANTOPENFILE
 
20647
//
 
20648
// MessageText:
 
20649
//
 
20650
//  Moniker cannot open file
 
20651
//
 
20652
  MK_E_CANTOPENFILE = HRESULT($800401EA);
 
20653
  {$EXTERNALSYM MK_E_CANTOPENFILE}
 
20654
 
 
20655
//
 
20656
// MessageId: MK_E_MUSTBOTHERUSER
 
20657
//
 
20658
// MessageText:
 
20659
//
 
20660
//  User input required for operation to succeed
 
20661
//
 
20662
  MK_E_MUSTBOTHERUSER = HRESULT($800401EB);
 
20663
  {$EXTERNALSYM MK_E_MUSTBOTHERUSER}
 
20664
 
 
20665
//
 
20666
// MessageId: MK_E_NOINVERSE
 
20667
//
 
20668
// MessageText:
 
20669
//
 
20670
//  Moniker class has no inverse
 
20671
//
 
20672
  MK_E_NOINVERSE = HRESULT($800401EC);
 
20673
  {$EXTERNALSYM MK_E_NOINVERSE}
 
20674
 
 
20675
//
 
20676
// MessageId: MK_E_NOSTORAGE
 
20677
//
 
20678
// MessageText:
 
20679
//
 
20680
//  Moniker does not refer to storage
 
20681
//
 
20682
  MK_E_NOSTORAGE = HRESULT($800401ED);
 
20683
  {$EXTERNALSYM MK_E_NOSTORAGE}
 
20684
 
 
20685
//
 
20686
// MessageId: MK_E_NOPREFIX
 
20687
//
 
20688
// MessageText:
 
20689
//
 
20690
//  No common prefix
 
20691
//
 
20692
  MK_E_NOPREFIX = HRESULT($800401EE);
 
20693
  {$EXTERNALSYM MK_E_NOPREFIX}
 
20694
 
 
20695
//
 
20696
// MessageId: MK_E_ENUMERATION_FAILED
 
20697
//
 
20698
// MessageText:
 
20699
//
 
20700
//  Moniker could not be enumerated
 
20701
//
 
20702
  MK_E_ENUMERATION_FAILED = HRESULT($800401EF);
 
20703
  {$EXTERNALSYM MK_E_ENUMERATION_FAILED}
 
20704
 
 
20705
  CO_E_FIRST = DWORD($800401F0);
 
20706
  {$EXTERNALSYM CO_E_FIRST}
 
20707
  CO_E_LAST = DWORD($800401FF);
 
20708
  {$EXTERNALSYM CO_E_LAST}
 
20709
  CO_S_FIRST = DWORD($000401F0);
 
20710
  {$EXTERNALSYM CO_S_FIRST}
 
20711
  CO_S_LAST = DWORD($000401FF);
 
20712
  {$EXTERNALSYM CO_S_LAST}
 
20713
//
 
20714
// MessageId: CO_E_NOTINITIALIZED
 
20715
//
 
20716
// MessageText:
 
20717
//
 
20718
//  CoInitialize has not been called.
 
20719
//
 
20720
  CO_E_NOTINITIALIZED = HRESULT($800401F0);
 
20721
  {$EXTERNALSYM CO_E_NOTINITIALIZED}
 
20722
 
 
20723
//
 
20724
// MessageId: CO_E_ALREADYINITIALIZED
 
20725
//
 
20726
// MessageText:
 
20727
//
 
20728
//  CoInitialize has already been called.
 
20729
//
 
20730
  CO_E_ALREADYINITIALIZED = HRESULT($800401F1);
 
20731
  {$EXTERNALSYM CO_E_ALREADYINITIALIZED}
 
20732
 
 
20733
//
 
20734
// MessageId: CO_E_CANTDETERMINECLASS
 
20735
//
 
20736
// MessageText:
 
20737
//
 
20738
//  Class of object cannot be determined
 
20739
//
 
20740
  CO_E_CANTDETERMINECLASS = HRESULT($800401F2);
 
20741
  {$EXTERNALSYM CO_E_CANTDETERMINECLASS}
 
20742
 
 
20743
//
 
20744
// MessageId: CO_E_CLASSSTRING
 
20745
//
 
20746
// MessageText:
 
20747
//
 
20748
//  Invalid class string
 
20749
//
 
20750
  CO_E_CLASSSTRING = HRESULT($800401F3);
 
20751
  {$EXTERNALSYM CO_E_CLASSSTRING}
 
20752
 
 
20753
//
 
20754
// MessageId: CO_E_IIDSTRING
 
20755
//
 
20756
// MessageText:
 
20757
//
 
20758
//  Invalid interface string
 
20759
//
 
20760
  CO_E_IIDSTRING = HRESULT($800401F4);
 
20761
  {$EXTERNALSYM CO_E_IIDSTRING}
 
20762
 
 
20763
//
 
20764
// MessageId: CO_E_APPNOTFOUND
 
20765
//
 
20766
// MessageText:
 
20767
//
 
20768
//  Application not found
 
20769
//
 
20770
  CO_E_APPNOTFOUND = HRESULT($800401F5);
 
20771
  {$EXTERNALSYM CO_E_APPNOTFOUND}
 
20772
 
 
20773
//
 
20774
// MessageId: CO_E_APPSINGLEUSE
 
20775
//
 
20776
// MessageText:
 
20777
//
 
20778
//  Application cannot be run more than once
 
20779
//
 
20780
  CO_E_APPSINGLEUSE = HRESULT($800401F6);
 
20781
  {$EXTERNALSYM CO_E_APPSINGLEUSE}
 
20782
 
 
20783
//
 
20784
// MessageId: CO_E_ERRORINAPP
 
20785
//
 
20786
// MessageText:
 
20787
//
 
20788
//  Some error in application program
 
20789
//
 
20790
  CO_E_ERRORINAPP = HRESULT($800401F7);
 
20791
  {$EXTERNALSYM CO_E_ERRORINAPP}
 
20792
 
 
20793
//
 
20794
// MessageId: CO_E_DLLNOTFOUND
 
20795
//
 
20796
// MessageText:
 
20797
//
 
20798
//  DLL for class not found
 
20799
//
 
20800
  CO_E_DLLNOTFOUND = HRESULT($800401F8);
 
20801
  {$EXTERNALSYM CO_E_DLLNOTFOUND}
 
20802
 
 
20803
//
 
20804
// MessageId: CO_E_ERRORINDLL
 
20805
//
 
20806
// MessageText:
 
20807
//
 
20808
//  Error in the DLL
 
20809
//
 
20810
  CO_E_ERRORINDLL = HRESULT($800401F9);
 
20811
  {$EXTERNALSYM CO_E_ERRORINDLL}
 
20812
 
 
20813
//
 
20814
// MessageId: CO_E_WRONGOSFORAPP
 
20815
//
 
20816
// MessageText:
 
20817
//
 
20818
//  Wrong OS or OS version for application
 
20819
//
 
20820
  CO_E_WRONGOSFORAPP = HRESULT($800401FA);
 
20821
  {$EXTERNALSYM CO_E_WRONGOSFORAPP}
 
20822
 
 
20823
//
 
20824
// MessageId: CO_E_OBJNOTREG
 
20825
//
 
20826
// MessageText:
 
20827
//
 
20828
//  Object is not registered
 
20829
//
 
20830
  CO_E_OBJNOTREG = HRESULT($800401FB);
 
20831
  {$EXTERNALSYM CO_E_OBJNOTREG}
 
20832
 
 
20833
//
 
20834
// MessageId: CO_E_OBJISREG
 
20835
//
 
20836
// MessageText:
 
20837
//
 
20838
//  Object is already registered
 
20839
//
 
20840
  CO_E_OBJISREG = HRESULT($800401FC);
 
20841
  {$EXTERNALSYM CO_E_OBJISREG}
 
20842
 
 
20843
//
 
20844
// MessageId: CO_E_OBJNOTCONNECTED
 
20845
//
 
20846
// MessageText:
 
20847
//
 
20848
//  Object is not connected to server
 
20849
//
 
20850
  CO_E_OBJNOTCONNECTED = HRESULT($800401FD);
 
20851
  {$EXTERNALSYM CO_E_OBJNOTCONNECTED}
 
20852
 
 
20853
//
 
20854
// MessageId: CO_E_APPDIDNTREG
 
20855
//
 
20856
// MessageText:
 
20857
//
 
20858
//  Application was launched but it didn't register a class factory
 
20859
//
 
20860
  CO_E_APPDIDNTREG = HRESULT($800401FE);
 
20861
  {$EXTERNALSYM CO_E_APPDIDNTREG}
 
20862
 
 
20863
//
 
20864
// MessageId: CO_E_RELEASED
 
20865
//
 
20866
// MessageText:
 
20867
//
 
20868
//  Object has been released
 
20869
//
 
20870
  CO_E_RELEASED = HRESULT($800401FF);
 
20871
  {$EXTERNALSYM CO_E_RELEASED}
 
20872
 
 
20873
  EVENT_E_FIRST = DWORD($80040200);
 
20874
  {$EXTERNALSYM EVENT_E_FIRST}
 
20875
  EVENT_E_LAST = DWORD($8004021F);
 
20876
  {$EXTERNALSYM EVENT_E_LAST}
 
20877
  EVENT_S_FIRST = DWORD($00040200);
 
20878
  {$EXTERNALSYM EVENT_S_FIRST}
 
20879
  EVENT_S_LAST = DWORD($0004021F);
 
20880
  {$EXTERNALSYM EVENT_S_LAST}
 
20881
//
 
20882
// MessageId: EVENT_S_SOME_SUBSCRIBERS_FAILED
 
20883
//
 
20884
// MessageText:
 
20885
//
 
20886
//  An event was able to invoke some but not all of the subscribers
 
20887
//
 
20888
  EVENT_S_SOME_SUBSCRIBERS_FAILED = HRESULT($00040200);
 
20889
  {$EXTERNALSYM EVENT_S_SOME_SUBSCRIBERS_FAILED}
 
20890
 
 
20891
//
 
20892
// MessageId: EVENT_E_ALL_SUBSCRIBERS_FAILED
 
20893
//
 
20894
// MessageText:
 
20895
//
 
20896
//  An event was unable to invoke any of the subscribers
 
20897
//
 
20898
  EVENT_E_ALL_SUBSCRIBERS_FAILED = HRESULT($80040201);
 
20899
  {$EXTERNALSYM EVENT_E_ALL_SUBSCRIBERS_FAILED}
 
20900
 
 
20901
//
 
20902
// MessageId: EVENT_S_NOSUBSCRIBERS
 
20903
//
 
20904
// MessageText:
 
20905
//
 
20906
//  An event was delivered but there were no subscribers
 
20907
//
 
20908
  EVENT_S_NOSUBSCRIBERS = HRESULT($00040202);
 
20909
  {$EXTERNALSYM EVENT_S_NOSUBSCRIBERS}
 
20910
 
 
20911
//
 
20912
// MessageId: EVENT_E_QUERYSYNTAX
 
20913
//
 
20914
// MessageText:
 
20915
//
 
20916
//  A syntax error occurred trying to evaluate a query string
 
20917
//
 
20918
  EVENT_E_QUERYSYNTAX = HRESULT($80040203);
 
20919
  {$EXTERNALSYM EVENT_E_QUERYSYNTAX}
 
20920
 
 
20921
//
 
20922
// MessageId: EVENT_E_QUERYFIELD
 
20923
//
 
20924
// MessageText:
 
20925
//
 
20926
//  An invalid field name was used in a query string
 
20927
//
 
20928
  EVENT_E_QUERYFIELD = HRESULT($80040204);
 
20929
  {$EXTERNALSYM EVENT_E_QUERYFIELD}
 
20930
 
 
20931
//
 
20932
// MessageId: EVENT_E_INTERNALEXCEPTION
 
20933
//
 
20934
// MessageText:
 
20935
//
 
20936
//  An unexpected exception was raised
 
20937
//
 
20938
  EVENT_E_INTERNALEXCEPTION = HRESULT($80040205);
 
20939
  {$EXTERNALSYM EVENT_E_INTERNALEXCEPTION}
 
20940
 
 
20941
//
 
20942
// MessageId: EVENT_E_INTERNALERROR
 
20943
//
 
20944
// MessageText:
 
20945
//
 
20946
//  An unexpected internal error was detected
 
20947
//
 
20948
  EVENT_E_INTERNALERROR = HRESULT($80040206);
 
20949
  {$EXTERNALSYM EVENT_E_INTERNALERROR}
 
20950
 
 
20951
//
 
20952
// MessageId: EVENT_E_INVALID_PER_USER_SID
 
20953
//
 
20954
// MessageText:
 
20955
//
 
20956
//  The owner SID on a per-user subscription doesn't exist
 
20957
//
 
20958
  EVENT_E_INVALID_PER_USER_SID = HRESULT($80040207);
 
20959
  {$EXTERNALSYM EVENT_E_INVALID_PER_USER_SID}
 
20960
 
 
20961
//
 
20962
// MessageId: EVENT_E_USER_EXCEPTION
 
20963
//
 
20964
// MessageText:
 
20965
//
 
20966
//  A user-supplied component or subscriber raised an exception
 
20967
//
 
20968
  EVENT_E_USER_EXCEPTION = HRESULT($80040208);
 
20969
  {$EXTERNALSYM EVENT_E_USER_EXCEPTION}
 
20970
 
 
20971
//
 
20972
// MessageId: EVENT_E_TOO_MANY_METHODS
 
20973
//
 
20974
// MessageText:
 
20975
//
 
20976
//  An interface has too many methods to fire events from
 
20977
//
 
20978
  EVENT_E_TOO_MANY_METHODS = HRESULT($80040209);
 
20979
  {$EXTERNALSYM EVENT_E_TOO_MANY_METHODS}
 
20980
 
 
20981
//
 
20982
// MessageId: EVENT_E_MISSING_EVENTCLASS
 
20983
//
 
20984
// MessageText:
 
20985
//
 
20986
//  A subscription cannot be stored unless its event class already exists
 
20987
//
 
20988
  EVENT_E_MISSING_EVENTCLASS = HRESULT($8004020A);
 
20989
  {$EXTERNALSYM EVENT_E_MISSING_EVENTCLASS}
 
20990
 
 
20991
//
 
20992
// MessageId: EVENT_E_NOT_ALL_REMOVED
 
20993
//
 
20994
// MessageText:
 
20995
//
 
20996
//  Not all the objects requested could be removed
 
20997
//
 
20998
  EVENT_E_NOT_ALL_REMOVED = HRESULT($8004020B);
 
20999
  {$EXTERNALSYM EVENT_E_NOT_ALL_REMOVED}
 
21000
 
 
21001
//
 
21002
// MessageId: EVENT_E_COMPLUS_NOT_INSTALLED
 
21003
//
 
21004
// MessageText:
 
21005
//
 
21006
//  COM+ is required for this operation, but is not installed
 
21007
//
 
21008
  EVENT_E_COMPLUS_NOT_INSTALLED = HRESULT($8004020C);
 
21009
  {$EXTERNALSYM EVENT_E_COMPLUS_NOT_INSTALLED}
 
21010
 
 
21011
//
 
21012
// MessageId: EVENT_E_CANT_MODIFY_OR_DELETE_UNCONFIGURED_OBJECT
 
21013
//
 
21014
// MessageText:
 
21015
//
 
21016
//  Cannot modify or delete an object that was not added using the COM+ Admin SDK
 
21017
//
 
21018
  EVENT_E_CANT_MODIFY_OR_DELETE_UNCONFIGURED_OBJECT = HRESULT($8004020D);
 
21019
  {$EXTERNALSYM EVENT_E_CANT_MODIFY_OR_DELETE_UNCONFIGURED_OBJECT}
 
21020
 
 
21021
//
 
21022
// MessageId: EVENT_E_CANT_MODIFY_OR_DELETE_CONFIGURED_OBJECT
 
21023
//
 
21024
// MessageText:
 
21025
//
 
21026
//  Cannot modify or delete an object that was added using the COM+ Admin SDK
 
21027
//
 
21028
  EVENT_E_CANT_MODIFY_OR_DELETE_CONFIGURED_OBJECT = HRESULT($8004020E);
 
21029
  {$EXTERNALSYM EVENT_E_CANT_MODIFY_OR_DELETE_CONFIGURED_OBJECT}
 
21030
 
 
21031
//
 
21032
// MessageId: EVENT_E_INVALID_EVENT_CLASS_PARTITION
 
21033
//
 
21034
// MessageText:
 
21035
//
 
21036
//  The event class for this subscription is in an invalid partition
 
21037
//
 
21038
  EVENT_E_INVALID_EVENT_CLASS_PARTITION = HRESULT($8004020F);
 
21039
  {$EXTERNALSYM EVENT_E_INVALID_EVENT_CLASS_PARTITION}
 
21040
 
 
21041
//
 
21042
// MessageId: EVENT_E_PER_USER_SID_NOT_LOGGED_ON
 
21043
//
 
21044
// MessageText:
 
21045
//
 
21046
//  The owner of the PerUser subscription is not logged on to the system specified
 
21047
//
 
21048
  EVENT_E_PER_USER_SID_NOT_LOGGED_ON = HRESULT($80040210);
 
21049
  {$EXTERNALSYM EVENT_E_PER_USER_SID_NOT_LOGGED_ON}
 
21050
 
 
21051
  XACT_E_FIRST = $8004D000;
 
21052
  {$EXTERNALSYM XACT_E_FIRST}
 
21053
  XACT_E_LAST = $8004D029;
 
21054
  {$EXTERNALSYM XACT_E_LAST}
 
21055
  XACT_S_FIRST = $0004D000;
 
21056
  {$EXTERNALSYM XACT_S_FIRST}
 
21057
  XACT_S_LAST = $0004D010;
 
21058
  {$EXTERNALSYM XACT_S_LAST}
 
21059
//
 
21060
// MessageId: XACT_E_ALREADYOTHERSINGLEPHASE
 
21061
//
 
21062
// MessageText:
 
21063
//
 
21064
//  Another single phase resource manager has already been enlisted in this transaction.
 
21065
//
 
21066
  XACT_E_ALREADYOTHERSINGLEPHASE = HRESULT($8004D000);
 
21067
  {$EXTERNALSYM XACT_E_ALREADYOTHERSINGLEPHASE}
 
21068
 
 
21069
//
 
21070
// MessageId: XACT_E_CANTRETAIN
 
21071
//
 
21072
// MessageText:
 
21073
//
 
21074
//  A retaining commit or abort is not supported
 
21075
//
 
21076
  XACT_E_CANTRETAIN = HRESULT($8004D001);
 
21077
  {$EXTERNALSYM XACT_E_CANTRETAIN}
 
21078
 
 
21079
//
 
21080
// MessageId: XACT_E_COMMITFAILED
 
21081
//
 
21082
// MessageText:
 
21083
//
 
21084
//  The transaction failed to commit for an unknown reason. The transaction was aborted.
 
21085
//
 
21086
  XACT_E_COMMITFAILED = HRESULT($8004D002);
 
21087
  {$EXTERNALSYM XACT_E_COMMITFAILED}
 
21088
 
 
21089
//
 
21090
// MessageId: XACT_E_COMMITPREVENTED
 
21091
//
 
21092
// MessageText:
 
21093
//
 
21094
//  Cannot call commit on this transaction object because the calling application did not initiate the transaction.
 
21095
//
 
21096
  XACT_E_COMMITPREVENTED = HRESULT($8004D003);
 
21097
  {$EXTERNALSYM XACT_E_COMMITPREVENTED}
 
21098
 
 
21099
//
 
21100
// MessageId: XACT_E_HEURISTICABORT
 
21101
//
 
21102
// MessageText:
 
21103
//
 
21104
//  Instead of committing, the resource heuristically aborted.
 
21105
//
 
21106
  XACT_E_HEURISTICABORT = HRESULT($8004D004);
 
21107
  {$EXTERNALSYM XACT_E_HEURISTICABORT}
 
21108
 
 
21109
//
 
21110
// MessageId: XACT_E_HEURISTICCOMMIT
 
21111
//
 
21112
// MessageText:
 
21113
//
 
21114
//  Instead of aborting, the resource heuristically committed.
 
21115
//
 
21116
  XACT_E_HEURISTICCOMMIT = HRESULT($8004D005);
 
21117
  {$EXTERNALSYM XACT_E_HEURISTICCOMMIT}
 
21118
 
 
21119
//
 
21120
// MessageId: XACT_E_HEURISTICDAMAGE
 
21121
//
 
21122
// MessageText:
 
21123
//
 
21124
//  Some of the states of the resource were committed while others were aborted, likely because of heuristic decisions.
 
21125
//
 
21126
  XACT_E_HEURISTICDAMAGE = HRESULT($8004D006);
 
21127
  {$EXTERNALSYM XACT_E_HEURISTICDAMAGE}
 
21128
 
 
21129
//
 
21130
// MessageId: XACT_E_HEURISTICDANGER
 
21131
//
 
21132
// MessageText:
 
21133
//
 
21134
//  Some of the states of the resource may have been committed while others may have been aborted, likely because of heuristic decisions.
 
21135
//
 
21136
  XACT_E_HEURISTICDANGER = HRESULT($8004D007);
 
21137
  {$EXTERNALSYM XACT_E_HEURISTICDANGER}
 
21138
 
 
21139
//
 
21140
// MessageId: XACT_E_ISOLATIONLEVEL
 
21141
//
 
21142
// MessageText:
 
21143
//
 
21144
//  The requested isolation level is not valid or supported.
 
21145
//
 
21146
  XACT_E_ISOLATIONLEVEL = HRESULT($8004D008);
 
21147
  {$EXTERNALSYM XACT_E_ISOLATIONLEVEL}
 
21148
 
 
21149
//
 
21150
// MessageId: XACT_E_NOASYNC
 
21151
//
 
21152
// MessageText:
 
21153
//
 
21154
//  The transaction manager doesn't support an asynchronous operation for this method.
 
21155
//
 
21156
  XACT_E_NOASYNC = HRESULT($8004D009);
 
21157
  {$EXTERNALSYM XACT_E_NOASYNC}
 
21158
 
 
21159
//
 
21160
// MessageId: XACT_E_NOENLIST
 
21161
//
 
21162
// MessageText:
 
21163
//
 
21164
//  Unable to enlist in the transaction.
 
21165
//
 
21166
  XACT_E_NOENLIST = HRESULT($8004D00A);
 
21167
  {$EXTERNALSYM XACT_E_NOENLIST}
 
21168
 
 
21169
//
 
21170
// MessageId: XACT_E_NOISORETAIN
 
21171
//
 
21172
// MessageText:
 
21173
//
 
21174
//  The requested semantics of retention of isolation across retaining commit and abort boundaries cannot be supported by this transaction implementation, or isoFlags was not equal to zero.
 
21175
//
 
21176
  XACT_E_NOISORETAIN = HRESULT($8004D00B);
 
21177
  {$EXTERNALSYM XACT_E_NOISORETAIN}
 
21178
 
 
21179
//
 
21180
// MessageId: XACT_E_NORESOURCE
 
21181
//
 
21182
// MessageText:
 
21183
//
 
21184
//  There is no resource presently associated with this enlistment
 
21185
//
 
21186
  XACT_E_NORESOURCE = HRESULT($8004D00C);
 
21187
  {$EXTERNALSYM XACT_E_NORESOURCE}
 
21188
 
 
21189
//
 
21190
// MessageId: XACT_E_NOTCURRENT
 
21191
//
 
21192
// MessageText:
 
21193
//
 
21194
//  The transaction failed to commit due to the failure of optimistic concurrency control in at least one of the resource managers.
 
21195
//
 
21196
  XACT_E_NOTCURRENT = HRESULT($8004D00D);
 
21197
  {$EXTERNALSYM XACT_E_NOTCURRENT}
 
21198
 
 
21199
//
 
21200
// MessageId: XACT_E_NOTRANSACTION
 
21201
//
 
21202
// MessageText:
 
21203
//
 
21204
//  The transaction has already been implicitly or explicitly committed or aborted
 
21205
//
 
21206
  XACT_E_NOTRANSACTION = HRESULT($8004D00E);
 
21207
  {$EXTERNALSYM XACT_E_NOTRANSACTION}
 
21208
 
 
21209
//
 
21210
// MessageId: XACT_E_NOTSUPPORTED
 
21211
//
 
21212
// MessageText:
 
21213
//
 
21214
//  An invalid combination of flags was specified
 
21215
//
 
21216
  XACT_E_NOTSUPPORTED = HRESULT($8004D00F);
 
21217
  {$EXTERNALSYM XACT_E_NOTSUPPORTED}
 
21218
 
 
21219
//
 
21220
// MessageId: XACT_E_UNKNOWNRMGRID
 
21221
//
 
21222
// MessageText:
 
21223
//
 
21224
//  The resource manager id is not associated with this transaction or the transaction manager.
 
21225
//
 
21226
  XACT_E_UNKNOWNRMGRID = HRESULT($8004D010);
 
21227
  {$EXTERNALSYM XACT_E_UNKNOWNRMGRID}
 
21228
 
 
21229
//
 
21230
// MessageId: XACT_E_WRONGSTATE
 
21231
//
 
21232
// MessageText:
 
21233
//
 
21234
//  This method was called in the wrong state
 
21235
//
 
21236
  XACT_E_WRONGSTATE = HRESULT($8004D011);
 
21237
  {$EXTERNALSYM XACT_E_WRONGSTATE}
 
21238
 
 
21239
//
 
21240
// MessageId: XACT_E_WRONGUOW
 
21241
//
 
21242
// MessageText:
 
21243
//
 
21244
//  The indicated unit of work does not match the unit of work expected by the resource manager.
 
21245
//
 
21246
  XACT_E_WRONGUOW = HRESULT($8004D012);
 
21247
  {$EXTERNALSYM XACT_E_WRONGUOW}
 
21248
 
 
21249
//
 
21250
// MessageId: XACT_E_XTIONEXISTS
 
21251
//
 
21252
// MessageText:
 
21253
//
 
21254
//  An enlistment in a transaction already exists.
 
21255
//
 
21256
  XACT_E_XTIONEXISTS = HRESULT($8004D013);
 
21257
  {$EXTERNALSYM XACT_E_XTIONEXISTS}
 
21258
 
 
21259
//
 
21260
// MessageId: XACT_E_NOIMPORTOBJECT
 
21261
//
 
21262
// MessageText:
 
21263
//
 
21264
//  An import object for the transaction could not be found.
 
21265
//
 
21266
  XACT_E_NOIMPORTOBJECT = HRESULT($8004D014);
 
21267
  {$EXTERNALSYM XACT_E_NOIMPORTOBJECT}
 
21268
 
 
21269
//
 
21270
// MessageId: XACT_E_INVALIDCOOKIE
 
21271
//
 
21272
// MessageText:
 
21273
//
 
21274
//  The transaction cookie is invalid.
 
21275
//
 
21276
  XACT_E_INVALIDCOOKIE = HRESULT($8004D015);
 
21277
  {$EXTERNALSYM XACT_E_INVALIDCOOKIE}
 
21278
 
 
21279
//
 
21280
// MessageId: XACT_E_INDOUBT
 
21281
//
 
21282
// MessageText:
 
21283
//
 
21284
//  The transaction status is in doubt. A communication failure occurred, or a transaction manager or resource manager has failed
 
21285
//
 
21286
  XACT_E_INDOUBT = HRESULT($8004D016);
 
21287
  {$EXTERNALSYM XACT_E_INDOUBT}
 
21288
 
 
21289
//
 
21290
// MessageId: XACT_E_NOTIMEOUT
 
21291
//
 
21292
// MessageText:
 
21293
//
 
21294
//  A time-out was specified, but time-outs are not supported.
 
21295
//
 
21296
  XACT_E_NOTIMEOUT = HRESULT($8004D017);
 
21297
  {$EXTERNALSYM XACT_E_NOTIMEOUT}
 
21298
 
 
21299
//
 
21300
// MessageId: XACT_E_ALREADYINPROGRESS
 
21301
//
 
21302
// MessageText:
 
21303
//
 
21304
//  The requested operation is already in progress for the transaction.
 
21305
//
 
21306
  XACT_E_ALREADYINPROGRESS = HRESULT($8004D018);
 
21307
  {$EXTERNALSYM XACT_E_ALREADYINPROGRESS}
 
21308
 
 
21309
//
 
21310
// MessageId: XACT_E_ABORTED
 
21311
//
 
21312
// MessageText:
 
21313
//
 
21314
//  The transaction has already been aborted.
 
21315
//
 
21316
  XACT_E_ABORTED = HRESULT($8004D019);
 
21317
  {$EXTERNALSYM XACT_E_ABORTED}
 
21318
 
 
21319
//
 
21320
// MessageId: XACT_E_LOGFULL
 
21321
//
 
21322
// MessageText:
 
21323
//
 
21324
//  The Transaction Manager returned a log full error.
 
21325
//
 
21326
  XACT_E_LOGFULL = HRESULT($8004D01A);
 
21327
  {$EXTERNALSYM XACT_E_LOGFULL}
 
21328
 
 
21329
//
 
21330
// MessageId: XACT_E_TMNOTAVAILABLE
 
21331
//
 
21332
// MessageText:
 
21333
//
 
21334
//  The Transaction Manager is not available.
 
21335
//
 
21336
  XACT_E_TMNOTAVAILABLE = HRESULT($8004D01B);
 
21337
  {$EXTERNALSYM XACT_E_TMNOTAVAILABLE}
 
21338
 
 
21339
//
 
21340
// MessageId: XACT_E_CONNECTION_DOWN
 
21341
//
 
21342
// MessageText:
 
21343
//
 
21344
//  A connection with the transaction manager was lost.
 
21345
//
 
21346
  XACT_E_CONNECTION_DOWN = HRESULT($8004D01C);
 
21347
  {$EXTERNALSYM XACT_E_CONNECTION_DOWN}
 
21348
 
 
21349
//
 
21350
// MessageId: XACT_E_CONNECTION_DENIED
 
21351
//
 
21352
// MessageText:
 
21353
//
 
21354
//  A request to establish a connection with the transaction manager was denied.
 
21355
//
 
21356
  XACT_E_CONNECTION_DENIED = HRESULT($8004D01D);
 
21357
  {$EXTERNALSYM XACT_E_CONNECTION_DENIED}
 
21358
 
 
21359
//
 
21360
// MessageId: XACT_E_REENLISTTIMEOUT
 
21361
//
 
21362
// MessageText:
 
21363
//
 
21364
//  Resource manager reenlistment to determine transaction status timed out.
 
21365
//
 
21366
  XACT_E_REENLISTTIMEOUT = HRESULT($8004D01E);
 
21367
  {$EXTERNALSYM XACT_E_REENLISTTIMEOUT}
 
21368
 
 
21369
//
 
21370
// MessageId: XACT_E_TIP_CONNECT_FAILED
 
21371
//
 
21372
// MessageText:
 
21373
//
 
21374
//  This transaction manager failed to establish a connection with another TIP transaction manager.
 
21375
//
 
21376
  XACT_E_TIP_CONNECT_FAILED = HRESULT($8004D01F);
 
21377
  {$EXTERNALSYM XACT_E_TIP_CONNECT_FAILED}
 
21378
 
 
21379
//
 
21380
// MessageId: XACT_E_TIP_PROTOCOL_ERROR
 
21381
//
 
21382
// MessageText:
 
21383
//
 
21384
//  This transaction manager encountered a protocol error with another TIP transaction manager.
 
21385
//
 
21386
  XACT_E_TIP_PROTOCOL_ERROR = HRESULT($8004D020);
 
21387
  {$EXTERNALSYM XACT_E_TIP_PROTOCOL_ERROR}
 
21388
 
 
21389
//
 
21390
// MessageId: XACT_E_TIP_PULL_FAILED
 
21391
//
 
21392
// MessageText:
 
21393
//
 
21394
//  This transaction manager could not propagate a transaction from another TIP transaction manager.
 
21395
//
 
21396
  XACT_E_TIP_PULL_FAILED = HRESULT($8004D021);
 
21397
  {$EXTERNALSYM XACT_E_TIP_PULL_FAILED}
 
21398
 
 
21399
//
 
21400
// MessageId: XACT_E_DEST_TMNOTAVAILABLE
 
21401
//
 
21402
// MessageText:
 
21403
//
 
21404
//  The Transaction Manager on the destination machine is not available.
 
21405
//
 
21406
  XACT_E_DEST_TMNOTAVAILABLE = HRESULT($8004D022);
 
21407
  {$EXTERNALSYM XACT_E_DEST_TMNOTAVAILABLE}
 
21408
 
 
21409
//
 
21410
// MessageId: XACT_E_TIP_DISABLED
 
21411
//
 
21412
// MessageText:
 
21413
//
 
21414
//  The Transaction Manager has disabled its support for TIP.
 
21415
//
 
21416
  XACT_E_TIP_DISABLED = HRESULT($8004D023);
 
21417
  {$EXTERNALSYM XACT_E_TIP_DISABLED}
 
21418
 
 
21419
//
 
21420
// MessageId: XACT_E_NETWORK_TX_DISABLED
 
21421
//
 
21422
// MessageText:
 
21423
//
 
21424
//  The transaction manager has disabled its support for remote/network transactions.
 
21425
//
 
21426
  XACT_E_NETWORK_TX_DISABLED = HRESULT($8004D024);
 
21427
  {$EXTERNALSYM XACT_E_NETWORK_TX_DISABLED}
 
21428
 
 
21429
//
 
21430
// MessageId: XACT_E_PARTNER_NETWORK_TX_DISABLED
 
21431
//
 
21432
// MessageText:
 
21433
//
 
21434
//  The partner transaction manager has disabled its support for remote/network transactions.
 
21435
//
 
21436
  XACT_E_PARTNER_NETWORK_TX_DISABLED = HRESULT($8004D025);
 
21437
  {$EXTERNALSYM XACT_E_PARTNER_NETWORK_TX_DISABLED}
 
21438
 
 
21439
//
 
21440
// MessageId: XACT_E_XA_TX_DISABLED
 
21441
//
 
21442
// MessageText:
 
21443
//
 
21444
//  The transaction manager has disabled its support for XA transactions.
 
21445
//
 
21446
  XACT_E_XA_TX_DISABLED = HRESULT($8004D026);
 
21447
  {$EXTERNALSYM XACT_E_XA_TX_DISABLED}
 
21448
 
 
21449
//
 
21450
// MessageId: XACT_E_UNABLE_TO_READ_DTC_CONFIG
 
21451
//
 
21452
// MessageText:
 
21453
//
 
21454
//  MSDTC was unable to read its configuration information.
 
21455
//
 
21456
  XACT_E_UNABLE_TO_READ_DTC_CONFIG = HRESULT($8004D027);
 
21457
  {$EXTERNALSYM XACT_E_UNABLE_TO_READ_DTC_CONFIG}
 
21458
 
 
21459
//
 
21460
// MessageId: XACT_E_UNABLE_TO_LOAD_DTC_PROXY
 
21461
//
 
21462
// MessageText:
 
21463
//
 
21464
//  MSDTC was unable to load the dtc proxy dll.
 
21465
//
 
21466
  XACT_E_UNABLE_TO_LOAD_DTC_PROXY = HRESULT($8004D028);
 
21467
  {$EXTERNALSYM XACT_E_UNABLE_TO_LOAD_DTC_PROXY}
 
21468
 
 
21469
//
 
21470
// MessageId: XACT_E_ABORTING
 
21471
//
 
21472
// MessageText:
 
21473
//
 
21474
//  The local transaction has aborted.
 
21475
//
 
21476
  XACT_E_ABORTING = HRESULT($8004D029);
 
21477
  {$EXTERNALSYM XACT_E_ABORTING}
 
21478
 
 
21479
//
 
21480
// TXF & CRM errors start 4d080.
 
21481
//
 
21482
// MessageId: XACT_E_CLERKNOTFOUND
 
21483
//
 
21484
// MessageText:
 
21485
//
 
21486
//  XACT_E_CLERKNOTFOUND
 
21487
//
 
21488
  XACT_E_CLERKNOTFOUND = HRESULT($8004D080);
 
21489
  {$EXTERNALSYM XACT_E_CLERKNOTFOUND}
 
21490
 
 
21491
//
 
21492
// MessageId: XACT_E_CLERKEXISTS
 
21493
//
 
21494
// MessageText:
 
21495
//
 
21496
//  XACT_E_CLERKEXISTS
 
21497
//
 
21498
  XACT_E_CLERKEXISTS = HRESULT($8004D081);
 
21499
  {$EXTERNALSYM XACT_E_CLERKEXISTS}
 
21500
 
 
21501
//
 
21502
// MessageId: XACT_E_RECOVERYINPROGRESS
 
21503
//
 
21504
// MessageText:
 
21505
//
 
21506
//  XACT_E_RECOVERYINPROGRESS
 
21507
//
 
21508
  XACT_E_RECOVERYINPROGRESS = HRESULT($8004D082);
 
21509
  {$EXTERNALSYM XACT_E_RECOVERYINPROGRESS}
 
21510
 
 
21511
//
 
21512
// MessageId: XACT_E_TRANSACTIONCLOSED
 
21513
//
 
21514
// MessageText:
 
21515
//
 
21516
//  XACT_E_TRANSACTIONCLOSED
 
21517
//
 
21518
  XACT_E_TRANSACTIONCLOSED = HRESULT($8004D083);
 
21519
  {$EXTERNALSYM XACT_E_TRANSACTIONCLOSED}
 
21520
 
 
21521
//
 
21522
// MessageId: XACT_E_INVALIDLSN
 
21523
//
 
21524
// MessageText:
 
21525
//
 
21526
//  XACT_E_INVALIDLSN
 
21527
//
 
21528
  XACT_E_INVALIDLSN = HRESULT($8004D084);
 
21529
  {$EXTERNALSYM XACT_E_INVALIDLSN}
 
21530
 
 
21531
//
 
21532
// MessageId: XACT_E_REPLAYREQUEST
 
21533
//
 
21534
// MessageText:
 
21535
//
 
21536
//  XACT_E_REPLAYREQUEST
 
21537
//
 
21538
  XACT_E_REPLAYREQUEST = HRESULT($8004D085);
 
21539
  {$EXTERNALSYM XACT_E_REPLAYREQUEST}
 
21540
 
 
21541
//
 
21542
// OleTx Success codes.
 
21543
//
 
21544
//
 
21545
// MessageId: XACT_S_ASYNC
 
21546
//
 
21547
// MessageText:
 
21548
//
 
21549
//  An asynchronous operation was specified. The operation has begun, but its outcome is not known yet.
 
21550
//
 
21551
  XACT_S_ASYNC = HRESULT($0004D000);
 
21552
  {$EXTERNALSYM XACT_S_ASYNC}
 
21553
 
 
21554
//
 
21555
// MessageId: XACT_S_DEFECT
 
21556
//
 
21557
// MessageText:
 
21558
//
 
21559
//  XACT_S_DEFECT
 
21560
//
 
21561
  XACT_S_DEFECT = HRESULT($0004D001);
 
21562
  {$EXTERNALSYM XACT_S_DEFECT}
 
21563
 
 
21564
//
 
21565
// MessageId: XACT_S_READONLY
 
21566
//
 
21567
// MessageText:
 
21568
//
 
21569
//  The method call succeeded because the transaction was read-only.
 
21570
//
 
21571
  XACT_S_READONLY = HRESULT($0004D002);
 
21572
  {$EXTERNALSYM XACT_S_READONLY}
 
21573
 
 
21574
//
 
21575
// MessageId: XACT_S_SOMENORETAIN
 
21576
//
 
21577
// MessageText:
 
21578
//
 
21579
//  The transaction was successfully aborted. However, this is a coordinated transaction, and some number of enlisted resources were aborted outright because they could not support abort-retaining semantics
 
21580
//
 
21581
  XACT_S_SOMENORETAIN = HRESULT($0004D003);
 
21582
  {$EXTERNALSYM XACT_S_SOMENORETAIN}
 
21583
 
 
21584
//
 
21585
// MessageId: XACT_S_OKINFORM
 
21586
//
 
21587
// MessageText:
 
21588
//
 
21589
//  No changes were made during this call, but the sink wants another chance to look if any other sinks make further changes.
 
21590
//
 
21591
  XACT_S_OKINFORM = HRESULT($0004D004);
 
21592
  {$EXTERNALSYM XACT_S_OKINFORM}
 
21593
 
 
21594
//
 
21595
// MessageId: XACT_S_MADECHANGESCONTENT
 
21596
//
 
21597
// MessageText:
 
21598
//
 
21599
//  The sink is content and wishes the transaction to proceed. Changes were made to one or more resources during this call.
 
21600
//
 
21601
  XACT_S_MADECHANGESCONTENT = HRESULT($0004D005);
 
21602
  {$EXTERNALSYM XACT_S_MADECHANGESCONTENT}
 
21603
 
 
21604
//
 
21605
// MessageId: XACT_S_MADECHANGESINFORM
 
21606
//
 
21607
// MessageText:
 
21608
//
 
21609
//  The sink is for the moment and wishes the transaction to proceed, but if other changes are made following this return by other event sinks then this sink wants another chance to look
 
21610
//
 
21611
  XACT_S_MADECHANGESINFORM = HRESULT($0004D006);
 
21612
  {$EXTERNALSYM XACT_S_MADECHANGESINFORM}
 
21613
 
 
21614
//
 
21615
// MessageId: XACT_S_ALLNORETAIN
 
21616
//
 
21617
// MessageText:
 
21618
//
 
21619
//  The transaction was successfully aborted. However, the abort was non-retaining.
 
21620
//
 
21621
  XACT_S_ALLNORETAIN = HRESULT($0004D007);
 
21622
  {$EXTERNALSYM XACT_S_ALLNORETAIN}
 
21623
 
 
21624
//
 
21625
// MessageId: XACT_S_ABORTING
 
21626
//
 
21627
// MessageText:
 
21628
//
 
21629
//  An abort operation was already in progress.
 
21630
//
 
21631
  XACT_S_ABORTING = HRESULT($0004D008);
 
21632
  {$EXTERNALSYM XACT_S_ABORTING}
 
21633
 
 
21634
//
 
21635
// MessageId: XACT_S_SINGLEPHASE
 
21636
//
 
21637
// MessageText:
 
21638
//
 
21639
//  The resource manager has performed a single-phase commit of the transaction.
 
21640
//
 
21641
  XACT_S_SINGLEPHASE = HRESULT($0004D009);
 
21642
  {$EXTERNALSYM XACT_S_SINGLEPHASE}
 
21643
 
 
21644
//
 
21645
// MessageId: XACT_S_LOCALLY_OK
 
21646
//
 
21647
// MessageText:
 
21648
//
 
21649
//  The local transaction has not aborted.
 
21650
//
 
21651
  XACT_S_LOCALLY_OK = HRESULT($0004D00A);
 
21652
  {$EXTERNALSYM XACT_S_LOCALLY_OK}
 
21653
 
 
21654
//
 
21655
// MessageId: XACT_S_LASTRESOURCEMANAGER
 
21656
//
 
21657
// MessageText:
 
21658
//
 
21659
//  The resource manager has requested to be the coordinator (last resource manager) for the transaction.
 
21660
//
 
21661
  XACT_S_LASTRESOURCEMANAGER = HRESULT($0004D010);
 
21662
  {$EXTERNALSYM XACT_S_LASTRESOURCEMANAGER}
 
21663
 
 
21664
  CONTEXT_E_FIRST = DWORD($8004E000);
 
21665
  {$EXTERNALSYM CONTEXT_E_FIRST}
 
21666
  CONTEXT_E_LAST = DWORD($8004E02F);
 
21667
  {$EXTERNALSYM CONTEXT_E_LAST}
 
21668
  CONTEXT_S_FIRST = DWORD($0004E000);
 
21669
  {$EXTERNALSYM CONTEXT_S_FIRST}
 
21670
  CONTEXT_S_LAST = DWORD($0004E02F);
 
21671
  {$EXTERNALSYM CONTEXT_S_LAST}
 
21672
//
 
21673
// MessageId: CONTEXT_E_ABORTED
 
21674
//
 
21675
// MessageText:
 
21676
//
 
21677
//  The root transaction wanted to commit, but transaction aborted
 
21678
//
 
21679
  CONTEXT_E_ABORTED = HRESULT($8004E002);
 
21680
  {$EXTERNALSYM CONTEXT_E_ABORTED}
 
21681
 
 
21682
//
 
21683
// MessageId: CONTEXT_E_ABORTING
 
21684
//
 
21685
// MessageText:
 
21686
//
 
21687
//  You made a method call on a COM+ component that has a transaction that has already aborted or in the process of aborting.
 
21688
//
 
21689
  CONTEXT_E_ABORTING = HRESULT($8004E003);
 
21690
  {$EXTERNALSYM CONTEXT_E_ABORTING}
 
21691
 
 
21692
//
 
21693
// MessageId: CONTEXT_E_NOCONTEXT
 
21694
//
 
21695
// MessageText:
 
21696
//
 
21697
//  There is no MTS object context
 
21698
//
 
21699
  CONTEXT_E_NOCONTEXT = HRESULT($8004E004);
 
21700
  {$EXTERNALSYM CONTEXT_E_NOCONTEXT}
 
21701
 
 
21702
//
 
21703
// MessageId: CONTEXT_E_WOULD_DEADLOCK
 
21704
//
 
21705
// MessageText:
 
21706
//
 
21707
//  The component is configured to use synchronization and this method call would cause a deadlock to occur.
 
21708
//
 
21709
  CONTEXT_E_WOULD_DEADLOCK = HRESULT($8004E005);
 
21710
  {$EXTERNALSYM CONTEXT_E_WOULD_DEADLOCK}
 
21711
 
 
21712
//
 
21713
// MessageId: CONTEXT_E_SYNCH_TIMEOUT
 
21714
//
 
21715
// MessageText:
 
21716
//
 
21717
//  The component is configured to use synchronization and a thread has timed out waiting to enter the context.
 
21718
//
 
21719
  CONTEXT_E_SYNCH_TIMEOUT = HRESULT($8004E006);
 
21720
  {$EXTERNALSYM CONTEXT_E_SYNCH_TIMEOUT}
 
21721
 
 
21722
//
 
21723
// MessageId: CONTEXT_E_OLDREF
 
21724
//
 
21725
// MessageText:
 
21726
//
 
21727
//  You made a method call on a COM+ component that has a transaction that has already committed or aborted.
 
21728
//
 
21729
  CONTEXT_E_OLDREF = HRESULT($8004E007);
 
21730
  {$EXTERNALSYM CONTEXT_E_OLDREF}
 
21731
 
 
21732
//
 
21733
// MessageId: CONTEXT_E_ROLENOTFOUND
 
21734
//
 
21735
// MessageText:
 
21736
//
 
21737
//  The specified role was not configured for the application
 
21738
//
 
21739
  CONTEXT_E_ROLENOTFOUND = HRESULT($8004E00C);
 
21740
  {$EXTERNALSYM CONTEXT_E_ROLENOTFOUND}
 
21741
 
 
21742
//
 
21743
// MessageId: CONTEXT_E_TMNOTAVAILABLE
 
21744
//
 
21745
// MessageText:
 
21746
//
 
21747
//  COM+ was unable to talk to the Microsoft Distributed Transaction Coordinator
 
21748
//
 
21749
  CONTEXT_E_TMNOTAVAILABLE = HRESULT($8004E00F);
 
21750
  {$EXTERNALSYM CONTEXT_E_TMNOTAVAILABLE}
 
21751
 
 
21752
//
 
21753
// MessageId: CO_E_ACTIVATIONFAILED
 
21754
//
 
21755
// MessageText:
 
21756
//
 
21757
//  An unexpected error occurred during COM+ Activation.
 
21758
//
 
21759
  CO_E_ACTIVATIONFAILED = HRESULT($8004E021);
 
21760
  {$EXTERNALSYM CO_E_ACTIVATIONFAILED}
 
21761
 
 
21762
//
 
21763
// MessageId: CO_E_ACTIVATIONFAILED_EVENTLOGGED
 
21764
//
 
21765
// MessageText:
 
21766
//
 
21767
//  COM+ Activation failed. Check the event log for more information
 
21768
//
 
21769
  CO_E_ACTIVATIONFAILED_EVENTLOGGED = HRESULT($8004E022);
 
21770
  {$EXTERNALSYM CO_E_ACTIVATIONFAILED_EVENTLOGGED}
 
21771
 
 
21772
//
 
21773
// MessageId: CO_E_ACTIVATIONFAILED_CATALOGERROR
 
21774
//
 
21775
// MessageText:
 
21776
//
 
21777
//  COM+ Activation failed due to a catalog or configuration error.
 
21778
//
 
21779
  CO_E_ACTIVATIONFAILED_CATALOGERROR = HRESULT($8004E023);
 
21780
  {$EXTERNALSYM CO_E_ACTIVATIONFAILED_CATALOGERROR}
 
21781
 
 
21782
//
 
21783
// MessageId: CO_E_ACTIVATIONFAILED_TIMEOUT
 
21784
//
 
21785
// MessageText:
 
21786
//
 
21787
//  COM+ activation failed because the activation could not be completed in the specified amount of time.
 
21788
//
 
21789
  CO_E_ACTIVATIONFAILED_TIMEOUT = HRESULT($8004E024);
 
21790
  {$EXTERNALSYM CO_E_ACTIVATIONFAILED_TIMEOUT}
 
21791
 
 
21792
//
 
21793
// MessageId: CO_E_INITIALIZATIONFAILED
 
21794
//
 
21795
// MessageText:
 
21796
//
 
21797
//  COM+ Activation failed because an initialization function failed.  Check the event log for more information.
 
21798
//
 
21799
  CO_E_INITIALIZATIONFAILED = HRESULT($8004E025);
 
21800
  {$EXTERNALSYM CO_E_INITIALIZATIONFAILED}
 
21801
 
 
21802
//
 
21803
// MessageId: CONTEXT_E_NOJIT
 
21804
//
 
21805
// MessageText:
 
21806
//
 
21807
//  The requested operation requires that JIT be in the current context and it is not
 
21808
//
 
21809
  CONTEXT_E_NOJIT = HRESULT($8004E026);
 
21810
  {$EXTERNALSYM CONTEXT_E_NOJIT}
 
21811
 
 
21812
//
 
21813
// MessageId: CONTEXT_E_NOTRANSACTION
 
21814
//
 
21815
// MessageText:
 
21816
//
 
21817
//  The requested operation requires that the current context have a Transaction, and it does not
 
21818
//
 
21819
  CONTEXT_E_NOTRANSACTION = HRESULT($8004E027);
 
21820
  {$EXTERNALSYM CONTEXT_E_NOTRANSACTION}
 
21821
 
 
21822
//
 
21823
// MessageId: CO_E_THREADINGMODEL_CHANGED
 
21824
//
 
21825
// MessageText:
 
21826
//
 
21827
//  The components threading model has changed after install into a COM+ Application.  Please re-install component.
 
21828
//
 
21829
  CO_E_THREADINGMODEL_CHANGED = HRESULT($8004E028);
 
21830
  {$EXTERNALSYM CO_E_THREADINGMODEL_CHANGED}
 
21831
 
 
21832
//
 
21833
// MessageId: CO_E_NOIISINTRINSICS
 
21834
//
 
21835
// MessageText:
 
21836
//
 
21837
//  IIS intrinsics not available.  Start your work with IIS.
 
21838
//
 
21839
  CO_E_NOIISINTRINSICS = HRESULT($8004E029);
 
21840
  {$EXTERNALSYM CO_E_NOIISINTRINSICS}
 
21841
 
 
21842
//
 
21843
// MessageId: CO_E_NOCOOKIES
 
21844
//
 
21845
// MessageText:
 
21846
//
 
21847
//  An attempt to write a cookie failed.
 
21848
//
 
21849
  CO_E_NOCOOKIES = HRESULT($8004E02A);
 
21850
  {$EXTERNALSYM CO_E_NOCOOKIES}
 
21851
 
 
21852
//
 
21853
// MessageId: CO_E_DBERROR
 
21854
//
 
21855
// MessageText:
 
21856
//
 
21857
//  An attempt to use a database generated a database specific error.
 
21858
//
 
21859
  CO_E_DBERROR = HRESULT($8004E02B);
 
21860
  {$EXTERNALSYM CO_E_DBERROR}
 
21861
 
 
21862
//
 
21863
// MessageId: CO_E_NOTPOOLED
 
21864
//
 
21865
// MessageText:
 
21866
//
 
21867
//  The COM+ component you created must use object pooling to work.
 
21868
//
 
21869
  CO_E_NOTPOOLED = HRESULT($8004E02C);
 
21870
  {$EXTERNALSYM CO_E_NOTPOOLED}
 
21871
 
 
21872
//
 
21873
// MessageId: CO_E_NOTCONSTRUCTED
 
21874
//
 
21875
// MessageText:
 
21876
//
 
21877
//  The COM+ component you created must use object construction to work correctly.
 
21878
//
 
21879
  CO_E_NOTCONSTRUCTED = HRESULT($8004E02D);
 
21880
  {$EXTERNALSYM CO_E_NOTCONSTRUCTED}
 
21881
 
 
21882
//
 
21883
// MessageId: CO_E_NOSYNCHRONIZATION
 
21884
//
 
21885
// MessageText:
 
21886
//
 
21887
//  The COM+ component requires synchronization, and it is not configured for it.
 
21888
//
 
21889
  CO_E_NOSYNCHRONIZATION = HRESULT($8004E02E);
 
21890
  {$EXTERNALSYM CO_E_NOSYNCHRONIZATION}
 
21891
 
 
21892
//
 
21893
// MessageId: CO_E_ISOLEVELMISMATCH
 
21894
//
 
21895
// MessageText:
 
21896
//
 
21897
//  The TxIsolation Level property for the COM+ component being created is stronger than the TxIsolationLevel for the "root" component for the transaction.  The creation failed.
 
21898
//
 
21899
  CO_E_ISOLEVELMISMATCH = HRESULT($8004E02F);
 
21900
  {$EXTERNALSYM CO_E_ISOLEVELMISMATCH}
 
21901
 
 
21902
//
 
21903
// Old OLE Success Codes
 
21904
//
 
21905
//
 
21906
// MessageId: OLE_S_USEREG
 
21907
//
 
21908
// MessageText:
 
21909
//
 
21910
//  Use the registry database to provide the requested information
 
21911
//
 
21912
  OLE_S_USEREG = HRESULT($00040000);
 
21913
  {$EXTERNALSYM OLE_S_USEREG}
 
21914
 
 
21915
//
 
21916
// MessageId: OLE_S_STATIC
 
21917
//
 
21918
// MessageText:
 
21919
//
 
21920
//  Success, but static
 
21921
//
 
21922
  OLE_S_STATIC = HRESULT($00040001);
 
21923
  {$EXTERNALSYM OLE_S_STATIC}
 
21924
 
 
21925
//
 
21926
// MessageId: OLE_S_MAC_CLIPFORMAT
 
21927
//
 
21928
// MessageText:
 
21929
//
 
21930
//  Macintosh clipboard format
 
21931
//
 
21932
  OLE_S_MAC_CLIPFORMAT = HRESULT($00040002);
 
21933
  {$EXTERNALSYM OLE_S_MAC_CLIPFORMAT}
 
21934
 
 
21935
//
 
21936
// MessageId: DRAGDROP_S_DROP
 
21937
//
 
21938
// MessageText:
 
21939
//
 
21940
//  Successful drop took place
 
21941
//
 
21942
  DRAGDROP_S_DROP = HRESULT($00040100);
 
21943
  {$EXTERNALSYM DRAGDROP_S_DROP}
 
21944
 
 
21945
//
 
21946
// MessageId: DRAGDROP_S_CANCEL
 
21947
//
 
21948
// MessageText:
 
21949
//
 
21950
//  Drag-drop operation canceled
 
21951
//
 
21952
  DRAGDROP_S_CANCEL = HRESULT($00040101);
 
21953
  {$EXTERNALSYM DRAGDROP_S_CANCEL}
 
21954
 
 
21955
//
 
21956
// MessageId: DRAGDROP_S_USEDEFAULTCURSORS
 
21957
//
 
21958
// MessageText:
 
21959
//
 
21960
//  Use the default cursor
 
21961
//
 
21962
  DRAGDROP_S_USEDEFAULTCURSORS = HRESULT($00040102);
 
21963
  {$EXTERNALSYM DRAGDROP_S_USEDEFAULTCURSORS}
 
21964
 
 
21965
//
 
21966
// MessageId: DATA_S_SAMEFORMATETC
 
21967
//
 
21968
// MessageText:
 
21969
//
 
21970
//  Data has same FORMATETC
 
21971
//
 
21972
  DATA_S_SAMEFORMATETC = HRESULT($00040130);
 
21973
  {$EXTERNALSYM DATA_S_SAMEFORMATETC}
 
21974
 
 
21975
//
 
21976
// MessageId: VIEW_S_ALREADY_FROZEN
 
21977
//
 
21978
// MessageText:
 
21979
//
 
21980
//  View is already frozen
 
21981
//
 
21982
  VIEW_S_ALREADY_FROZEN = HRESULT($00040140);
 
21983
  {$EXTERNALSYM VIEW_S_ALREADY_FROZEN}
 
21984
 
 
21985
//
 
21986
// MessageId: CACHE_S_FORMATETC_NOTSUPPORTED
 
21987
//
 
21988
// MessageText:
 
21989
//
 
21990
//  FORMATETC not supported
 
21991
//
 
21992
  CACHE_S_FORMATETC_NOTSUPPORTED = HRESULT($00040170);
 
21993
  {$EXTERNALSYM CACHE_S_FORMATETC_NOTSUPPORTED}
 
21994
 
 
21995
//
 
21996
// MessageId: CACHE_S_SAMECACHE
 
21997
//
 
21998
// MessageText:
 
21999
//
 
22000
//  Same cache
 
22001
//
 
22002
  CACHE_S_SAMECACHE = HRESULT($00040171);
 
22003
  {$EXTERNALSYM CACHE_S_SAMECACHE}
 
22004
 
 
22005
//
 
22006
// MessageId: CACHE_S_SOMECACHES_NOTUPDATED
 
22007
//
 
22008
// MessageText:
 
22009
//
 
22010
//  Some cache(s) not updated
 
22011
//
 
22012
  CACHE_S_SOMECACHES_NOTUPDATED = HRESULT($00040172);
 
22013
  {$EXTERNALSYM CACHE_S_SOMECACHES_NOTUPDATED}
 
22014
 
 
22015
//
 
22016
// MessageId: OLEOBJ_S_INVALIDVERB
 
22017
//
 
22018
// MessageText:
 
22019
//
 
22020
//  Invalid verb for OLE object
 
22021
//
 
22022
  OLEOBJ_S_INVALIDVERB = HRESULT($00040180);
 
22023
  {$EXTERNALSYM OLEOBJ_S_INVALIDVERB}
 
22024
 
 
22025
//
 
22026
// MessageId: OLEOBJ_S_CANNOT_DOVERB_NOW
 
22027
//
 
22028
// MessageText:
 
22029
//
 
22030
//  Verb number is valid but verb cannot be done now
 
22031
//
 
22032
  OLEOBJ_S_CANNOT_DOVERB_NOW = HRESULT($00040181);
 
22033
  {$EXTERNALSYM OLEOBJ_S_CANNOT_DOVERB_NOW}
 
22034
 
 
22035
//
 
22036
// MessageId: OLEOBJ_S_INVALIDHWND
 
22037
//
 
22038
// MessageText:
 
22039
//
 
22040
//  Invalid window handle passed
 
22041
//
 
22042
  OLEOBJ_S_INVALIDHWND = HRESULT($00040182);
 
22043
  {$EXTERNALSYM OLEOBJ_S_INVALIDHWND}
 
22044
 
 
22045
//
 
22046
// MessageId: INPLACE_S_TRUNCATED
 
22047
//
 
22048
// MessageText:
 
22049
//
 
22050
//  Message is too long; some of it had to be truncated before displaying
 
22051
//
 
22052
  INPLACE_S_TRUNCATED = HRESULT($000401A0);
 
22053
  {$EXTERNALSYM INPLACE_S_TRUNCATED}
 
22054
 
 
22055
//
 
22056
// MessageId: CONVERT10_S_NO_PRESENTATION
 
22057
//
 
22058
// MessageText:
 
22059
//
 
22060
//  Unable to convert OLESTREAM to IStorage
 
22061
//
 
22062
  CONVERT10_S_NO_PRESENTATION = HRESULT($000401C0);
 
22063
  {$EXTERNALSYM CONVERT10_S_NO_PRESENTATION}
 
22064
 
 
22065
//
 
22066
// MessageId: MK_S_REDUCED_TO_SELF
 
22067
//
 
22068
// MessageText:
 
22069
//
 
22070
//  Moniker reduced to itself
 
22071
//
 
22072
  MK_S_REDUCED_TO_SELF = HRESULT($000401E2);
 
22073
  {$EXTERNALSYM MK_S_REDUCED_TO_SELF}
 
22074
 
 
22075
//
 
22076
// MessageId: MK_S_ME
 
22077
//
 
22078
// MessageText:
 
22079
//
 
22080
//  Common prefix is this moniker
 
22081
//
 
22082
  MK_S_ME = HRESULT($000401E4);
 
22083
  {$EXTERNALSYM MK_S_ME}
 
22084
 
 
22085
//
 
22086
// MessageId: MK_S_HIM
 
22087
//
 
22088
// MessageText:
 
22089
//
 
22090
//  Common prefix is input moniker
 
22091
//
 
22092
  MK_S_HIM = HRESULT($000401E5);
 
22093
  {$EXTERNALSYM MK_S_HIM}
 
22094
 
 
22095
//
 
22096
// MessageId: MK_S_US
 
22097
//
 
22098
// MessageText:
 
22099
//
 
22100
//  Common prefix is both monikers
 
22101
//
 
22102
  MK_S_US = HRESULT($000401E6);
 
22103
  {$EXTERNALSYM MK_S_US}
 
22104
 
 
22105
//
 
22106
// MessageId: MK_S_MONIKERALREADYREGISTERED
 
22107
//
 
22108
// MessageText:
 
22109
//
 
22110
//  Moniker is already registered in running object table
 
22111
//
 
22112
  MK_S_MONIKERALREADYREGISTERED = HRESULT($000401E7);
 
22113
  {$EXTERNALSYM MK_S_MONIKERALREADYREGISTERED}
 
22114
 
 
22115
//
 
22116
// Task Scheduler errors
 
22117
//
 
22118
//
 
22119
// MessageId: SCHED_S_TASK_READY
 
22120
//
 
22121
// MessageText:
 
22122
//
 
22123
//  The task is ready to run at its next scheduled time.
 
22124
//
 
22125
  SCHED_S_TASK_READY = HRESULT($00041300);
 
22126
  {$EXTERNALSYM SCHED_S_TASK_READY}
 
22127
 
 
22128
//
 
22129
// MessageId: SCHED_S_TASK_RUNNING
 
22130
//
 
22131
// MessageText:
 
22132
//
 
22133
//  The task is currently running.
 
22134
//
 
22135
  SCHED_S_TASK_RUNNING = HRESULT($00041301);
 
22136
  {$EXTERNALSYM SCHED_S_TASK_RUNNING}
 
22137
 
 
22138
//
 
22139
// MessageId: SCHED_S_TASK_DISABLED
 
22140
//
 
22141
// MessageText:
 
22142
//
 
22143
//  The task will not run at the scheduled times because it has been disabled.
 
22144
//
 
22145
  SCHED_S_TASK_DISABLED = HRESULT($00041302);
 
22146
  {$EXTERNALSYM SCHED_S_TASK_DISABLED}
 
22147
 
 
22148
//
 
22149
// MessageId: SCHED_S_TASK_HAS_NOT_RUN
 
22150
//
 
22151
// MessageText:
 
22152
//
 
22153
//  The task has not yet run.
 
22154
//
 
22155
  SCHED_S_TASK_HAS_NOT_RUN = HRESULT($00041303);
 
22156
  {$EXTERNALSYM SCHED_S_TASK_HAS_NOT_RUN}
 
22157
 
 
22158
//
 
22159
// MessageId: SCHED_S_TASK_NO_MORE_RUNS
 
22160
//
 
22161
// MessageText:
 
22162
//
 
22163
//  There are no more runs scheduled for this task.
 
22164
//
 
22165
  SCHED_S_TASK_NO_MORE_RUNS = HRESULT($00041304);
 
22166
  {$EXTERNALSYM SCHED_S_TASK_NO_MORE_RUNS}
 
22167
 
 
22168
//
 
22169
// MessageId: SCHED_S_TASK_NOT_SCHEDULED
 
22170
//
 
22171
// MessageText:
 
22172
//
 
22173
//  One or more of the properties that are needed to run this task on a schedule have not been set.
 
22174
//
 
22175
  SCHED_S_TASK_NOT_SCHEDULED = HRESULT($00041305);
 
22176
  {$EXTERNALSYM SCHED_S_TASK_NOT_SCHEDULED}
 
22177
 
 
22178
//
 
22179
// MessageId: SCHED_S_TASK_TERMINATED
 
22180
//
 
22181
// MessageText:
 
22182
//
 
22183
//  The last run of the task was terminated by the user.
 
22184
//
 
22185
  SCHED_S_TASK_TERMINATED = HRESULT($00041306);
 
22186
  {$EXTERNALSYM SCHED_S_TASK_TERMINATED}
 
22187
 
 
22188
//
 
22189
// MessageId: SCHED_S_TASK_NO_VALID_TRIGGERS
 
22190
//
 
22191
// MessageText:
 
22192
//
 
22193
//  Either the task has no triggers or the existing triggers are disabled or not set.
 
22194
//
 
22195
  SCHED_S_TASK_NO_VALID_TRIGGERS = HRESULT($00041307);
 
22196
  {$EXTERNALSYM SCHED_S_TASK_NO_VALID_TRIGGERS}
 
22197
 
 
22198
//
 
22199
// MessageId: SCHED_S_EVENT_TRIGGER
 
22200
//
 
22201
// MessageText:
 
22202
//
 
22203
//  Event triggers don't have set run times.
 
22204
//
 
22205
  SCHED_S_EVENT_TRIGGER = HRESULT($00041308);
 
22206
  {$EXTERNALSYM SCHED_S_EVENT_TRIGGER}
 
22207
 
 
22208
//
 
22209
// MessageId: SCHED_E_TRIGGER_NOT_FOUND
 
22210
//
 
22211
// MessageText:
 
22212
//
 
22213
//  Trigger not found.
 
22214
//
 
22215
  SCHED_E_TRIGGER_NOT_FOUND = HRESULT($80041309);
 
22216
  {$EXTERNALSYM SCHED_E_TRIGGER_NOT_FOUND}
 
22217
 
 
22218
//
 
22219
// MessageId: SCHED_E_TASK_NOT_READY
 
22220
//
 
22221
// MessageText:
 
22222
//
 
22223
//  One or more of the properties that are needed to run this task have not been set.
 
22224
//
 
22225
  SCHED_E_TASK_NOT_READY = HRESULT($8004130A);
 
22226
  {$EXTERNALSYM SCHED_E_TASK_NOT_READY}
 
22227
 
 
22228
//
 
22229
// MessageId: SCHED_E_TASK_NOT_RUNNING
 
22230
//
 
22231
// MessageText:
 
22232
//
 
22233
//  There is no running instance of the task to terminate.
 
22234
//
 
22235
  SCHED_E_TASK_NOT_RUNNING = HRESULT($8004130B);
 
22236
  {$EXTERNALSYM SCHED_E_TASK_NOT_RUNNING}
 
22237
 
 
22238
//
 
22239
// MessageId: SCHED_E_SERVICE_NOT_INSTALLED
 
22240
//
 
22241
// MessageText:
 
22242
//
 
22243
//  The Task Scheduler Service is not installed on this computer.
 
22244
//
 
22245
  SCHED_E_SERVICE_NOT_INSTALLED = HRESULT($8004130C);
 
22246
  {$EXTERNALSYM SCHED_E_SERVICE_NOT_INSTALLED}
 
22247
 
 
22248
//
 
22249
// MessageId: SCHED_E_CANNOT_OPEN_TASK
 
22250
//
 
22251
// MessageText:
 
22252
//
 
22253
//  The task object could not be opened.
 
22254
//
 
22255
  SCHED_E_CANNOT_OPEN_TASK = HRESULT($8004130D);
 
22256
  {$EXTERNALSYM SCHED_E_CANNOT_OPEN_TASK}
 
22257
 
 
22258
//
 
22259
// MessageId: SCHED_E_INVALID_TASK
 
22260
//
 
22261
// MessageText:
 
22262
//
 
22263
//  The object is either an invalid task object or is not a task object.
 
22264
//
 
22265
  SCHED_E_INVALID_TASK = HRESULT($8004130E);
 
22266
  {$EXTERNALSYM SCHED_E_INVALID_TASK}
 
22267
 
 
22268
//
 
22269
// MessageId: SCHED_E_ACCOUNT_INFORMATION_NOT_SET
 
22270
//
 
22271
// MessageText:
 
22272
//
 
22273
//  No account information could be found in the Task Scheduler security database for the task indicated.
 
22274
//
 
22275
  SCHED_E_ACCOUNT_INFORMATION_NOT_SET = HRESULT($8004130F);
 
22276
  {$EXTERNALSYM SCHED_E_ACCOUNT_INFORMATION_NOT_SET}
 
22277
 
 
22278
//
 
22279
// MessageId: SCHED_E_ACCOUNT_NAME_NOT_FOUND
 
22280
//
 
22281
// MessageText:
 
22282
//
 
22283
//  Unable to establish existence of the account specified.
 
22284
//
 
22285
  SCHED_E_ACCOUNT_NAME_NOT_FOUND = HRESULT($80041310);
 
22286
  {$EXTERNALSYM SCHED_E_ACCOUNT_NAME_NOT_FOUND}
 
22287
 
 
22288
//
 
22289
// MessageId: SCHED_E_ACCOUNT_DBASE_CORRUPT
 
22290
//
 
22291
// MessageText:
 
22292
//
 
22293
//  Corruption was detected in the Task Scheduler security database; the database has been reset.
 
22294
//
 
22295
  SCHED_E_ACCOUNT_DBASE_CORRUPT = HRESULT($80041311);
 
22296
  {$EXTERNALSYM SCHED_E_ACCOUNT_DBASE_CORRUPT}
 
22297
 
 
22298
//
 
22299
// MessageId: SCHED_E_NO_SECURITY_SERVICES
 
22300
//
 
22301
// MessageText:
 
22302
//
 
22303
//  Task Scheduler security services are available only on Windows NT.
 
22304
//
 
22305
  SCHED_E_NO_SECURITY_SERVICES = HRESULT($80041312);
 
22306
  {$EXTERNALSYM SCHED_E_NO_SECURITY_SERVICES}
 
22307
 
 
22308
//
 
22309
// MessageId: SCHED_E_UNKNOWN_OBJECT_VERSION
 
22310
//
 
22311
// MessageText:
 
22312
//
 
22313
//  The task object version is either unsupported or invalid.
 
22314
//
 
22315
  SCHED_E_UNKNOWN_OBJECT_VERSION = HRESULT($80041313);
 
22316
  {$EXTERNALSYM SCHED_E_UNKNOWN_OBJECT_VERSION}
 
22317
 
 
22318
//
 
22319
// MessageId: SCHED_E_UNSUPPORTED_ACCOUNT_OPTION
 
22320
//
 
22321
// MessageText:
 
22322
//
 
22323
//  The task has been configured with an unsupported combination of account settings and run time options.
 
22324
//
 
22325
  SCHED_E_UNSUPPORTED_ACCOUNT_OPTION = HRESULT($80041314);
 
22326
  {$EXTERNALSYM SCHED_E_UNSUPPORTED_ACCOUNT_OPTION}
 
22327
 
 
22328
//
 
22329
// MessageId: SCHED_E_SERVICE_NOT_RUNNING
 
22330
//
 
22331
// MessageText:
 
22332
//
 
22333
//  The Task Scheduler Service is not running.
 
22334
//
 
22335
  SCHED_E_SERVICE_NOT_RUNNING = HRESULT($80041315);
 
22336
  {$EXTERNALSYM SCHED_E_SERVICE_NOT_RUNNING}
 
22337
 
 
22338
// ******************
 
22339
// FACILITY_WINDOWS
 
22340
// ******************
 
22341
//
 
22342
// Codes 0x0-0x01ff are reserved for the OLE group of
 
22343
// interfaces.
 
22344
//
 
22345
//
 
22346
// MessageId: CO_E_CLASS_CREATE_FAILED
 
22347
//
 
22348
// MessageText:
 
22349
//
 
22350
//  Attempt to create a class object failed
 
22351
//
 
22352
  CO_E_CLASS_CREATE_FAILED = HRESULT($80080001);
 
22353
  {$EXTERNALSYM CO_E_CLASS_CREATE_FAILED}
 
22354
 
 
22355
//
 
22356
// MessageId: CO_E_SCM_ERROR
 
22357
//
 
22358
// MessageText:
 
22359
//
 
22360
//  OLE service could not bind object
 
22361
//
 
22362
  CO_E_SCM_ERROR = HRESULT($80080002);
 
22363
  {$EXTERNALSYM CO_E_SCM_ERROR}
 
22364
 
 
22365
//
 
22366
// MessageId: CO_E_SCM_RPC_FAILURE
 
22367
//
 
22368
// MessageText:
 
22369
//
 
22370
//  RPC communication failed with OLE service
 
22371
//
 
22372
  CO_E_SCM_RPC_FAILURE = HRESULT($80080003);
 
22373
  {$EXTERNALSYM CO_E_SCM_RPC_FAILURE}
 
22374
 
 
22375
//
 
22376
// MessageId: CO_E_BAD_PATH
 
22377
//
 
22378
// MessageText:
 
22379
//
 
22380
//  Bad path to object
 
22381
//
 
22382
  CO_E_BAD_PATH = HRESULT($80080004);
 
22383
  {$EXTERNALSYM CO_E_BAD_PATH}
 
22384
 
 
22385
//
 
22386
// MessageId: CO_E_SERVER_EXEC_FAILURE
 
22387
//
 
22388
// MessageText:
 
22389
//
 
22390
//  Server execution failed
 
22391
//
 
22392
  CO_E_SERVER_EXEC_FAILURE = HRESULT($80080005);
 
22393
  {$EXTERNALSYM CO_E_SERVER_EXEC_FAILURE}
 
22394
 
 
22395
//
 
22396
// MessageId: CO_E_OBJSRV_RPC_FAILURE
 
22397
//
 
22398
// MessageText:
 
22399
//
 
22400
//  OLE service could not communicate with the object server
 
22401
//
 
22402
  CO_E_OBJSRV_RPC_FAILURE = HRESULT($80080006);
 
22403
  {$EXTERNALSYM CO_E_OBJSRV_RPC_FAILURE}
 
22404
 
 
22405
//
 
22406
// MessageId: MK_E_NO_NORMALIZED
 
22407
//
 
22408
// MessageText:
 
22409
//
 
22410
//  Moniker path could not be normalized
 
22411
//
 
22412
  MK_E_NO_NORMALIZED = HRESULT($80080007);
 
22413
  {$EXTERNALSYM MK_E_NO_NORMALIZED}
 
22414
 
 
22415
//
 
22416
// MessageId: CO_E_SERVER_STOPPING
 
22417
//
 
22418
// MessageText:
 
22419
//
 
22420
//  Object server is stopping when OLE service contacts it
 
22421
//
 
22422
  CO_E_SERVER_STOPPING = HRESULT($80080008);
 
22423
  {$EXTERNALSYM CO_E_SERVER_STOPPING}
 
22424
 
 
22425
//
 
22426
// MessageId: MEM_E_INVALID_ROOT
 
22427
//
 
22428
// MessageText:
 
22429
//
 
22430
//  An invalid root block pointer was specified
 
22431
//
 
22432
  MEM_E_INVALID_ROOT = HRESULT($80080009);
 
22433
  {$EXTERNALSYM MEM_E_INVALID_ROOT}
 
22434
 
 
22435
//
 
22436
// MessageId: MEM_E_INVALID_LINK
 
22437
//
 
22438
// MessageText:
 
22439
//
 
22440
//  An allocation chain contained an invalid link pointer
 
22441
//
 
22442
  MEM_E_INVALID_LINK = HRESULT($80080010);
 
22443
  {$EXTERNALSYM MEM_E_INVALID_LINK}
 
22444
 
 
22445
//
 
22446
// MessageId: MEM_E_INVALID_SIZE
 
22447
//
 
22448
// MessageText:
 
22449
//
 
22450
//  The requested allocation size was too large
 
22451
//
 
22452
  MEM_E_INVALID_SIZE = HRESULT($80080011);
 
22453
  {$EXTERNALSYM MEM_E_INVALID_SIZE}
 
22454
 
 
22455
//
 
22456
// MessageId: CO_S_NOTALLINTERFACES
 
22457
//
 
22458
// MessageText:
 
22459
//
 
22460
//  Not all the requested interfaces were available
 
22461
//
 
22462
  CO_S_NOTALLINTERFACES = HRESULT($00080012);
 
22463
  {$EXTERNALSYM CO_S_NOTALLINTERFACES}
 
22464
 
 
22465
//
 
22466
// MessageId: CO_S_MACHINENAMENOTFOUND
 
22467
//
 
22468
// MessageText:
 
22469
//
 
22470
//  The specified machine name was not found in the cache.
 
22471
//
 
22472
  CO_S_MACHINENAMENOTFOUND = HRESULT($00080013);
 
22473
  {$EXTERNALSYM CO_S_MACHINENAMENOTFOUND}
 
22474
 
 
22475
// ******************
 
22476
// FACILITY_DISPATCH
 
22477
// ******************
 
22478
//
 
22479
// MessageId: DISP_E_UNKNOWNINTERFACE
 
22480
//
 
22481
// MessageText:
 
22482
//
 
22483
//  Unknown interface.
 
22484
//
 
22485
  DISP_E_UNKNOWNINTERFACE = HRESULT($80020001);
 
22486
  {$EXTERNALSYM DISP_E_UNKNOWNINTERFACE}
 
22487
 
 
22488
//
 
22489
// MessageId: DISP_E_MEMBERNOTFOUND
 
22490
//
 
22491
// MessageText:
 
22492
//
 
22493
//  Member not found.
 
22494
//
 
22495
  DISP_E_MEMBERNOTFOUND = HRESULT($80020003);
 
22496
  {$EXTERNALSYM DISP_E_MEMBERNOTFOUND}
 
22497
 
 
22498
//
 
22499
// MessageId: DISP_E_PARAMNOTFOUND
 
22500
//
 
22501
// MessageText:
 
22502
//
 
22503
//  Parameter not found.
 
22504
//
 
22505
  DISP_E_PARAMNOTFOUND = HRESULT($80020004);
 
22506
  {$EXTERNALSYM DISP_E_PARAMNOTFOUND}
 
22507
 
 
22508
//
 
22509
// MessageId: DISP_E_TYPEMISMATCH
 
22510
//
 
22511
// MessageText:
 
22512
//
 
22513
//  Type mismatch.
 
22514
//
 
22515
  DISP_E_TYPEMISMATCH = HRESULT($80020005);
 
22516
  {$EXTERNALSYM DISP_E_TYPEMISMATCH}
 
22517
 
 
22518
//
 
22519
// MessageId: DISP_E_UNKNOWNNAME
 
22520
//
 
22521
// MessageText:
 
22522
//
 
22523
//  Unknown name.
 
22524
//
 
22525
  DISP_E_UNKNOWNNAME = HRESULT($80020006);
 
22526
  {$EXTERNALSYM DISP_E_UNKNOWNNAME}
 
22527
 
 
22528
//
 
22529
// MessageId: DISP_E_NONAMEDARGS
 
22530
//
 
22531
// MessageText:
 
22532
//
 
22533
//  No named arguments.
 
22534
//
 
22535
  DISP_E_NONAMEDARGS = HRESULT($80020007);
 
22536
  {$EXTERNALSYM DISP_E_NONAMEDARGS}
 
22537
 
 
22538
//
 
22539
// MessageId: DISP_E_BADVARTYPE
 
22540
//
 
22541
// MessageText:
 
22542
//
 
22543
//  Bad variable type.
 
22544
//
 
22545
  DISP_E_BADVARTYPE = HRESULT($80020008);
 
22546
  {$EXTERNALSYM DISP_E_BADVARTYPE}
 
22547
 
 
22548
//
 
22549
// MessageId: DISP_E_EXCEPTION
 
22550
//
 
22551
// MessageText:
 
22552
//
 
22553
//  Exception occurred.
 
22554
//
 
22555
  DISP_E_EXCEPTION = HRESULT($80020009);
 
22556
  {$EXTERNALSYM DISP_E_EXCEPTION}
 
22557
 
 
22558
//
 
22559
// MessageId: DISP_E_OVERFLOW
 
22560
//
 
22561
// MessageText:
 
22562
//
 
22563
//  Out of present range.
 
22564
//
 
22565
  DISP_E_OVERFLOW = HRESULT($8002000A);
 
22566
  {$EXTERNALSYM DISP_E_OVERFLOW}
 
22567
 
 
22568
//
 
22569
// MessageId: DISP_E_BADINDEX
 
22570
//
 
22571
// MessageText:
 
22572
//
 
22573
//  Invalid index.
 
22574
//
 
22575
  DISP_E_BADINDEX = HRESULT($8002000B);
 
22576
  {$EXTERNALSYM DISP_E_BADINDEX}
 
22577
 
 
22578
//
 
22579
// MessageId: DISP_E_UNKNOWNLCID
 
22580
//
 
22581
// MessageText:
 
22582
//
 
22583
//  Unknown language.
 
22584
//
 
22585
  DISP_E_UNKNOWNLCID = HRESULT($8002000C);
 
22586
  {$EXTERNALSYM DISP_E_UNKNOWNLCID}
 
22587
 
 
22588
//
 
22589
// MessageId: DISP_E_ARRAYISLOCKED
 
22590
//
 
22591
// MessageText:
 
22592
//
 
22593
//  Memory is locked.
 
22594
//
 
22595
  DISP_E_ARRAYISLOCKED = HRESULT($8002000D);
 
22596
  {$EXTERNALSYM DISP_E_ARRAYISLOCKED}
 
22597
 
 
22598
//
 
22599
// MessageId: DISP_E_BADPARAMCOUNT
 
22600
//
 
22601
// MessageText:
 
22602
//
 
22603
//  Invalid number of parameters.
 
22604
//
 
22605
  DISP_E_BADPARAMCOUNT = HRESULT($8002000E);
 
22606
  {$EXTERNALSYM DISP_E_BADPARAMCOUNT}
 
22607
 
 
22608
//
 
22609
// MessageId: DISP_E_PARAMNOTOPTIONAL
 
22610
//
 
22611
// MessageText:
 
22612
//
 
22613
//  Parameter not optional.
 
22614
//
 
22615
  DISP_E_PARAMNOTOPTIONAL = HRESULT($8002000F);
 
22616
  {$EXTERNALSYM DISP_E_PARAMNOTOPTIONAL}
 
22617
 
 
22618
//
 
22619
// MessageId: DISP_E_BADCALLEE
 
22620
//
 
22621
// MessageText:
 
22622
//
 
22623
//  Invalid callee.
 
22624
//
 
22625
  DISP_E_BADCALLEE = HRESULT($80020010);
 
22626
  {$EXTERNALSYM DISP_E_BADCALLEE}
 
22627
 
 
22628
//
 
22629
// MessageId: DISP_E_NOTACOLLECTION
 
22630
//
 
22631
// MessageText:
 
22632
//
 
22633
//  Does not support a collection.
 
22634
//
 
22635
  DISP_E_NOTACOLLECTION = HRESULT($80020011);
 
22636
  {$EXTERNALSYM DISP_E_NOTACOLLECTION}
 
22637
 
 
22638
//
 
22639
// MessageId: DISP_E_DIVBYZERO
 
22640
//
 
22641
// MessageText:
 
22642
//
 
22643
//  Division by zero.
 
22644
//
 
22645
  DISP_E_DIVBYZERO = HRESULT($80020012);
 
22646
  {$EXTERNALSYM DISP_E_DIVBYZERO}
 
22647
 
 
22648
//
 
22649
// MessageId: DISP_E_BUFFERTOOSMALL
 
22650
//
 
22651
// MessageText:
 
22652
//
 
22653
//  Buffer too small
 
22654
//
 
22655
  DISP_E_BUFFERTOOSMALL = HRESULT($80020013);
 
22656
  {$EXTERNALSYM DISP_E_BUFFERTOOSMALL}
 
22657
 
 
22658
//
 
22659
// MessageId: TYPE_E_BUFFERTOOSMALL
 
22660
//
 
22661
// MessageText:
 
22662
//
 
22663
//  Buffer too small.
 
22664
//
 
22665
  TYPE_E_BUFFERTOOSMALL = HRESULT($80028016);
 
22666
  {$EXTERNALSYM TYPE_E_BUFFERTOOSMALL}
 
22667
 
 
22668
//
 
22669
// MessageId: TYPE_E_FIELDNOTFOUND
 
22670
//
 
22671
// MessageText:
 
22672
//
 
22673
//  Field name not defined in the record.
 
22674
//
 
22675
  TYPE_E_FIELDNOTFOUND = HRESULT($80028017);
 
22676
  {$EXTERNALSYM TYPE_E_FIELDNOTFOUND}
 
22677
 
 
22678
//
 
22679
// MessageId: TYPE_E_INVDATAREAD
 
22680
//
 
22681
// MessageText:
 
22682
//
 
22683
//  Old format or invalid type library.
 
22684
//
 
22685
  TYPE_E_INVDATAREAD = HRESULT($80028018);
 
22686
  {$EXTERNALSYM TYPE_E_INVDATAREAD}
 
22687
 
 
22688
//
 
22689
// MessageId: TYPE_E_UNSUPFORMAT
 
22690
//
 
22691
// MessageText:
 
22692
//
 
22693
//  Old format or invalid type library.
 
22694
//
 
22695
  TYPE_E_UNSUPFORMAT = HRESULT($80028019);
 
22696
  {$EXTERNALSYM TYPE_E_UNSUPFORMAT}
 
22697
 
 
22698
//
 
22699
// MessageId: TYPE_E_REGISTRYACCESS
 
22700
//
 
22701
// MessageText:
 
22702
//
 
22703
//  Error accessing the OLE registry.
 
22704
//
 
22705
  TYPE_E_REGISTRYACCESS = HRESULT($8002801C);
 
22706
  {$EXTERNALSYM TYPE_E_REGISTRYACCESS}
 
22707
 
 
22708
//
 
22709
// MessageId: TYPE_E_LIBNOTREGISTERED
 
22710
//
 
22711
// MessageText:
 
22712
//
 
22713
//  Library not registered.
 
22714
//
 
22715
  TYPE_E_LIBNOTREGISTERED = HRESULT($8002801D);
 
22716
  {$EXTERNALSYM TYPE_E_LIBNOTREGISTERED}
 
22717
 
 
22718
//
 
22719
// MessageId: TYPE_E_UNDEFINEDTYPE
 
22720
//
 
22721
// MessageText:
 
22722
//
 
22723
//  Bound to unknown type.
 
22724
//
 
22725
  TYPE_E_UNDEFINEDTYPE = HRESULT($80028027);
 
22726
  {$EXTERNALSYM TYPE_E_UNDEFINEDTYPE}
 
22727
 
 
22728
//
 
22729
// MessageId: TYPE_E_QUALIFIEDNAMEDISALLOWED
 
22730
//
 
22731
// MessageText:
 
22732
//
 
22733
//  Qualified name disallowed.
 
22734
//
 
22735
  TYPE_E_QUALIFIEDNAMEDISALLOWED = HRESULT($80028028);
 
22736
  {$EXTERNALSYM TYPE_E_QUALIFIEDNAMEDISALLOWED}
 
22737
 
 
22738
//
 
22739
// MessageId: TYPE_E_INVALIDSTATE
 
22740
//
 
22741
// MessageText:
 
22742
//
 
22743
//  Invalid forward reference, or reference to uncompiled type.
 
22744
//
 
22745
  TYPE_E_INVALIDSTATE = HRESULT($80028029);
 
22746
  {$EXTERNALSYM TYPE_E_INVALIDSTATE}
 
22747
 
 
22748
//
 
22749
// MessageId: TYPE_E_WRONGTYPEKIND
 
22750
//
 
22751
// MessageText:
 
22752
//
 
22753
//  Type mismatch.
 
22754
//
 
22755
  TYPE_E_WRONGTYPEKIND = HRESULT($8002802A);
 
22756
  {$EXTERNALSYM TYPE_E_WRONGTYPEKIND}
 
22757
 
 
22758
//
 
22759
// MessageId: TYPE_E_ELEMENTNOTFOUND
 
22760
//
 
22761
// MessageText:
 
22762
//
 
22763
//  Element not found.
 
22764
//
 
22765
  TYPE_E_ELEMENTNOTFOUND = HRESULT($8002802B);
 
22766
  {$EXTERNALSYM TYPE_E_ELEMENTNOTFOUND}
 
22767
 
 
22768
//
 
22769
// MessageId: TYPE_E_AMBIGUOUSNAME
 
22770
//
 
22771
// MessageText:
 
22772
//
 
22773
//  Ambiguous name.
 
22774
//
 
22775
  TYPE_E_AMBIGUOUSNAME = HRESULT($8002802C);
 
22776
  {$EXTERNALSYM TYPE_E_AMBIGUOUSNAME}
 
22777
 
 
22778
//
 
22779
// MessageId: TYPE_E_NAMECONFLICT
 
22780
//
 
22781
// MessageText:
 
22782
//
 
22783
//  Name already exists in the library.
 
22784
//
 
22785
  TYPE_E_NAMECONFLICT = HRESULT($8002802D);
 
22786
  {$EXTERNALSYM TYPE_E_NAMECONFLICT}
 
22787
 
 
22788
//
 
22789
// MessageId: TYPE_E_UNKNOWNLCID
 
22790
//
 
22791
// MessageText:
 
22792
//
 
22793
//  Unknown LCID.
 
22794
//
 
22795
  TYPE_E_UNKNOWNLCID = HRESULT($8002802E);
 
22796
  {$EXTERNALSYM TYPE_E_UNKNOWNLCID}
 
22797
 
 
22798
//
 
22799
// MessageId: TYPE_E_DLLFUNCTIONNOTFOUND
 
22800
//
 
22801
// MessageText:
 
22802
//
 
22803
//  Function not defined in specified DLL.
 
22804
//
 
22805
  TYPE_E_DLLFUNCTIONNOTFOUND = HRESULT($8002802F);
 
22806
  {$EXTERNALSYM TYPE_E_DLLFUNCTIONNOTFOUND}
 
22807
 
 
22808
//
 
22809
// MessageId: TYPE_E_BADMODULEKIND
 
22810
//
 
22811
// MessageText:
 
22812
//
 
22813
//  Wrong module kind for the operation.
 
22814
//
 
22815
  TYPE_E_BADMODULEKIND = HRESULT($800288BD);
 
22816
  {$EXTERNALSYM TYPE_E_BADMODULEKIND}
 
22817
 
 
22818
//
 
22819
// MessageId: TYPE_E_SIZETOOBIG
 
22820
//
 
22821
// MessageText:
 
22822
//
 
22823
//  Size may not exceed 64K.
 
22824
//
 
22825
  TYPE_E_SIZETOOBIG = HRESULT($800288C5);
 
22826
  {$EXTERNALSYM TYPE_E_SIZETOOBIG}
 
22827
 
 
22828
//
 
22829
// MessageId: TYPE_E_DUPLICATEID
 
22830
//
 
22831
// MessageText:
 
22832
//
 
22833
//  Duplicate ID in inheritance hierarchy.
 
22834
//
 
22835
  TYPE_E_DUPLICATEID = HRESULT($800288C6);
 
22836
  {$EXTERNALSYM TYPE_E_DUPLICATEID}
 
22837
 
 
22838
//
 
22839
// MessageId: TYPE_E_INVALIDID
 
22840
//
 
22841
// MessageText:
 
22842
//
 
22843
//  Incorrect inheritance depth in standard OLE hmember.
 
22844
//
 
22845
  TYPE_E_INVALIDID = HRESULT($800288CF);
 
22846
  {$EXTERNALSYM TYPE_E_INVALIDID}
 
22847
 
 
22848
//
 
22849
// MessageId: TYPE_E_TYPEMISMATCH
 
22850
//
 
22851
// MessageText:
 
22852
//
 
22853
//  Type mismatch.
 
22854
//
 
22855
  TYPE_E_TYPEMISMATCH = HRESULT($80028CA0);
 
22856
  {$EXTERNALSYM TYPE_E_TYPEMISMATCH}
 
22857
 
 
22858
//
 
22859
// MessageId: TYPE_E_OUTOFBOUNDS
 
22860
//
 
22861
// MessageText:
 
22862
//
 
22863
//  Invalid number of arguments.
 
22864
//
 
22865
  TYPE_E_OUTOFBOUNDS = HRESULT($80028CA1);
 
22866
  {$EXTERNALSYM TYPE_E_OUTOFBOUNDS}
 
22867
 
 
22868
//
 
22869
// MessageId: TYPE_E_IOERROR
 
22870
//
 
22871
// MessageText:
 
22872
//
 
22873
//  I/O Error.
 
22874
//
 
22875
  TYPE_E_IOERROR = HRESULT($80028CA2);
 
22876
  {$EXTERNALSYM TYPE_E_IOERROR}
 
22877
 
 
22878
//
 
22879
// MessageId: TYPE_E_CANTCREATETMPFILE
 
22880
//
 
22881
// MessageText:
 
22882
//
 
22883
//  Error creating unique tmp file.
 
22884
//
 
22885
  TYPE_E_CANTCREATETMPFILE = HRESULT($80028CA3);
 
22886
  {$EXTERNALSYM TYPE_E_CANTCREATETMPFILE}
 
22887
 
 
22888
//
 
22889
// MessageId: TYPE_E_CANTLOADLIBRARY
 
22890
//
 
22891
// MessageText:
 
22892
//
 
22893
//  Error loading type library/DLL.
 
22894
//
 
22895
  TYPE_E_CANTLOADLIBRARY = HRESULT($80029C4A);
 
22896
  {$EXTERNALSYM TYPE_E_CANTLOADLIBRARY}
 
22897
 
 
22898
//
 
22899
// MessageId: TYPE_E_INCONSISTENTPROPFUNCS
 
22900
//
 
22901
// MessageText:
 
22902
//
 
22903
//  Inconsistent property functions.
 
22904
//
 
22905
  TYPE_E_INCONSISTENTPROPFUNCS = HRESULT($80029C83);
 
22906
  {$EXTERNALSYM TYPE_E_INCONSISTENTPROPFUNCS}
 
22907
 
 
22908
//
 
22909
// MessageId: TYPE_E_CIRCULARTYPE
 
22910
//
 
22911
// MessageText:
 
22912
//
 
22913
//  Circular dependency between types/modules.
 
22914
//
 
22915
  TYPE_E_CIRCULARTYPE = HRESULT($80029C84);
 
22916
  {$EXTERNALSYM TYPE_E_CIRCULARTYPE}
 
22917
 
 
22918
// ******************
 
22919
// FACILITY_STORAGE
 
22920
// ******************
 
22921
//
 
22922
// MessageId: STG_E_INVALIDFUNCTION
 
22923
//
 
22924
// MessageText:
 
22925
//
 
22926
//  Unable to perform requested operation.
 
22927
//
 
22928
  STG_E_INVALIDFUNCTION = HRESULT($80030001);
 
22929
  {$EXTERNALSYM STG_E_INVALIDFUNCTION}
 
22930
 
 
22931
//
 
22932
// MessageId: STG_E_FILENOTFOUND
 
22933
//
 
22934
// MessageText:
 
22935
//
 
22936
//  %1 could not be found.
 
22937
//
 
22938
  STG_E_FILENOTFOUND = HRESULT($80030002);
 
22939
  {$EXTERNALSYM STG_E_FILENOTFOUND}
 
22940
 
 
22941
//
 
22942
// MessageId: STG_E_PATHNOTFOUND
 
22943
//
 
22944
// MessageText:
 
22945
//
 
22946
//  The path %1 could not be found.
 
22947
//
 
22948
  STG_E_PATHNOTFOUND = HRESULT($80030003);
 
22949
  {$EXTERNALSYM STG_E_PATHNOTFOUND}
 
22950
 
 
22951
//
 
22952
// MessageId: STG_E_TOOMANYOPENFILES
 
22953
//
 
22954
// MessageText:
 
22955
//
 
22956
//  There are insufficient resources to open another file.
 
22957
//
 
22958
  STG_E_TOOMANYOPENFILES = HRESULT($80030004);
 
22959
  {$EXTERNALSYM STG_E_TOOMANYOPENFILES}
 
22960
 
 
22961
//
 
22962
// MessageId: STG_E_ACCESSDENIED
 
22963
//
 
22964
// MessageText:
 
22965
//
 
22966
//  Access Denied.
 
22967
//
 
22968
  STG_E_ACCESSDENIED = HRESULT($80030005);
 
22969
  {$EXTERNALSYM STG_E_ACCESSDENIED}
 
22970
 
 
22971
//
 
22972
// MessageId: STG_E_INVALIDHANDLE
 
22973
//
 
22974
// MessageText:
 
22975
//
 
22976
//  Attempted an operation on an invalid object.
 
22977
//
 
22978
  STG_E_INVALIDHANDLE = HRESULT($80030006);
 
22979
  {$EXTERNALSYM STG_E_INVALIDHANDLE}
 
22980
 
 
22981
//
 
22982
// MessageId: STG_E_INSUFFICIENTMEMORY
 
22983
//
 
22984
// MessageText:
 
22985
//
 
22986
//  There is insufficient memory available to complete operation.
 
22987
//
 
22988
  STG_E_INSUFFICIENTMEMORY = HRESULT($80030008);
 
22989
  {$EXTERNALSYM STG_E_INSUFFICIENTMEMORY}
 
22990
 
 
22991
//
 
22992
// MessageId: STG_E_INVALIDPOINTER
 
22993
//
 
22994
// MessageText:
 
22995
//
 
22996
//  Invalid pointer error.
 
22997
//
 
22998
  STG_E_INVALIDPOINTER = HRESULT($80030009);
 
22999
  {$EXTERNALSYM STG_E_INVALIDPOINTER}
 
23000
 
 
23001
//
 
23002
// MessageId: STG_E_NOMOREFILES
 
23003
//
 
23004
// MessageText:
 
23005
//
 
23006
//  There are no more entries to return.
 
23007
//
 
23008
  STG_E_NOMOREFILES = HRESULT($80030012);
 
23009
  {$EXTERNALSYM STG_E_NOMOREFILES}
 
23010
 
 
23011
//
 
23012
// MessageId: STG_E_DISKISWRITEPROTECTED
 
23013
//
 
23014
// MessageText:
 
23015
//
 
23016
//  Disk is write-protected.
 
23017
//
 
23018
  STG_E_DISKISWRITEPROTECTED = HRESULT($80030013);
 
23019
  {$EXTERNALSYM STG_E_DISKISWRITEPROTECTED}
 
23020
 
 
23021
//
 
23022
// MessageId: STG_E_SEEKERROR
 
23023
//
 
23024
// MessageText:
 
23025
//
 
23026
//  An error occurred during a seek operation.
 
23027
//
 
23028
  STG_E_SEEKERROR = HRESULT($80030019);
 
23029
  {$EXTERNALSYM STG_E_SEEKERROR}
 
23030
 
 
23031
//
 
23032
// MessageId: STG_E_WRITEFAULT
 
23033
//
 
23034
// MessageText:
 
23035
//
 
23036
//  A disk error occurred during a write operation.
 
23037
//
 
23038
  STG_E_WRITEFAULT = HRESULT($8003001D);
 
23039
  {$EXTERNALSYM STG_E_WRITEFAULT}
 
23040
 
 
23041
//
 
23042
// MessageId: STG_E_READFAULT
 
23043
//
 
23044
// MessageText:
 
23045
//
 
23046
//  A disk error occurred during a read operation.
 
23047
//
 
23048
  STG_E_READFAULT = HRESULT($8003001E);
 
23049
  {$EXTERNALSYM STG_E_READFAULT}
 
23050
 
 
23051
//
 
23052
// MessageId: STG_E_SHAREVIOLATION
 
23053
//
 
23054
// MessageText:
 
23055
//
 
23056
//  A share violation has occurred.
 
23057
//
 
23058
  STG_E_SHAREVIOLATION = HRESULT($80030020);
 
23059
  {$EXTERNALSYM STG_E_SHAREVIOLATION}
 
23060
 
 
23061
//
 
23062
// MessageId: STG_E_LOCKVIOLATION
 
23063
//
 
23064
// MessageText:
 
23065
//
 
23066
//  A lock violation has occurred.
 
23067
//
 
23068
  STG_E_LOCKVIOLATION = HRESULT($80030021);
 
23069
  {$EXTERNALSYM STG_E_LOCKVIOLATION}
 
23070
 
 
23071
//
 
23072
// MessageId: STG_E_FILEALREADYEXISTS
 
23073
//
 
23074
// MessageText:
 
23075
//
 
23076
//  %1 already exists.
 
23077
//
 
23078
  STG_E_FILEALREADYEXISTS = HRESULT($80030050);
 
23079
  {$EXTERNALSYM STG_E_FILEALREADYEXISTS}
 
23080
 
 
23081
//
 
23082
// MessageId: STG_E_INVALIDPARAMETER
 
23083
//
 
23084
// MessageText:
 
23085
//
 
23086
//  Invalid parameter error.
 
23087
//
 
23088
  STG_E_INVALIDPARAMETER = HRESULT($80030057);
 
23089
  {$EXTERNALSYM STG_E_INVALIDPARAMETER}
 
23090
 
 
23091
//
 
23092
// MessageId: STG_E_MEDIUMFULL
 
23093
//
 
23094
// MessageText:
 
23095
//
 
23096
//  There is insufficient disk space to complete operation.
 
23097
//
 
23098
  STG_E_MEDIUMFULL = HRESULT($80030070);
 
23099
  {$EXTERNALSYM STG_E_MEDIUMFULL}
 
23100
 
 
23101
//
 
23102
// MessageId: STG_E_PROPSETMISMATCHED
 
23103
//
 
23104
// MessageText:
 
23105
//
 
23106
//  Illegal write of non-simple property to simple property set.
 
23107
//
 
23108
  STG_E_PROPSETMISMATCHED = HRESULT($800300F0);
 
23109
  {$EXTERNALSYM STG_E_PROPSETMISMATCHED}
 
23110
 
 
23111
//
 
23112
// MessageId: STG_E_ABNORMALAPIEXIT
 
23113
//
 
23114
// MessageText:
 
23115
//
 
23116
//  An API call exited abnormally.
 
23117
//
 
23118
  STG_E_ABNORMALAPIEXIT = HRESULT($800300FA);
 
23119
  {$EXTERNALSYM STG_E_ABNORMALAPIEXIT}
 
23120
 
 
23121
//
 
23122
// MessageId: STG_E_INVALIDHEADER
 
23123
//
 
23124
// MessageText:
 
23125
//
 
23126
//  The file %1 is not a valid compound file.
 
23127
//
 
23128
  STG_E_INVALIDHEADER = HRESULT($800300FB);
 
23129
  {$EXTERNALSYM STG_E_INVALIDHEADER}
 
23130
 
 
23131
//
 
23132
// MessageId: STG_E_INVALIDNAME
 
23133
//
 
23134
// MessageText:
 
23135
//
 
23136
//  The name %1 is not valid.
 
23137
//
 
23138
  STG_E_INVALIDNAME = HRESULT($800300FC);
 
23139
  {$EXTERNALSYM STG_E_INVALIDNAME}
 
23140
 
 
23141
//
 
23142
// MessageId: STG_E_UNKNOWN
 
23143
//
 
23144
// MessageText:
 
23145
//
 
23146
//  An unexpected error occurred.
 
23147
//
 
23148
  STG_E_UNKNOWN = HRESULT($800300FD);
 
23149
  {$EXTERNALSYM STG_E_UNKNOWN}
 
23150
 
 
23151
//
 
23152
// MessageId: STG_E_UNIMPLEMENTEDFUNCTION
 
23153
//
 
23154
// MessageText:
 
23155
//
 
23156
//  That function is not implemented.
 
23157
//
 
23158
  STG_E_UNIMPLEMENTEDFUNCTION = HRESULT($800300FE);
 
23159
  {$EXTERNALSYM STG_E_UNIMPLEMENTEDFUNCTION}
 
23160
 
 
23161
//
 
23162
// MessageId: STG_E_INVALIDFLAG
 
23163
//
 
23164
// MessageText:
 
23165
//
 
23166
//  Invalid flag error.
 
23167
//
 
23168
  STG_E_INVALIDFLAG = HRESULT($800300FF);
 
23169
  {$EXTERNALSYM STG_E_INVALIDFLAG}
 
23170
 
 
23171
//
 
23172
// MessageId: STG_E_INUSE
 
23173
//
 
23174
// MessageText:
 
23175
//
 
23176
//  Attempted to use an object that is busy.
 
23177
//
 
23178
  STG_E_INUSE = HRESULT($80030100);
 
23179
  {$EXTERNALSYM STG_E_INUSE}
 
23180
 
 
23181
//
 
23182
// MessageId: STG_E_NOTCURRENT
 
23183
//
 
23184
// MessageText:
 
23185
//
 
23186
//  The storage has been changed since the last commit.
 
23187
//
 
23188
  STG_E_NOTCURRENT = HRESULT($80030101);
 
23189
  {$EXTERNALSYM STG_E_NOTCURRENT}
 
23190
 
 
23191
//
 
23192
// MessageId: STG_E_REVERTED
 
23193
//
 
23194
// MessageText:
 
23195
//
 
23196
//  Attempted to use an object that has ceased to exist.
 
23197
//
 
23198
  STG_E_REVERTED = HRESULT($80030102);
 
23199
  {$EXTERNALSYM STG_E_REVERTED}
 
23200
 
 
23201
//
 
23202
// MessageId: STG_E_CANTSAVE
 
23203
//
 
23204
// MessageText:
 
23205
//
 
23206
//  Can't save.
 
23207
//
 
23208
  STG_E_CANTSAVE = HRESULT($80030103);
 
23209
  {$EXTERNALSYM STG_E_CANTSAVE}
 
23210
 
 
23211
//
 
23212
// MessageId: STG_E_OLDFORMAT
 
23213
//
 
23214
// MessageText:
 
23215
//
 
23216
//  The compound file %1 was produced with an incompatible version of storage.
 
23217
//
 
23218
  STG_E_OLDFORMAT = HRESULT($80030104);
 
23219
  {$EXTERNALSYM STG_E_OLDFORMAT}
 
23220
 
 
23221
//
 
23222
// MessageId: STG_E_OLDDLL
 
23223
//
 
23224
// MessageText:
 
23225
//
 
23226
//  The compound file %1 was produced with a newer version of storage.
 
23227
//
 
23228
  STG_E_OLDDLL = HRESULT($80030105);
 
23229
  {$EXTERNALSYM STG_E_OLDDLL}
 
23230
 
 
23231
//
 
23232
// MessageId: STG_E_SHAREREQUIRED
 
23233
//
 
23234
// MessageText:
 
23235
//
 
23236
//  Share.exe or equivalent is required for operation.
 
23237
//
 
23238
  STG_E_SHAREREQUIRED = HRESULT($80030106);
 
23239
  {$EXTERNALSYM STG_E_SHAREREQUIRED}
 
23240
 
 
23241
//
 
23242
// MessageId: STG_E_NOTFILEBASEDSTORAGE
 
23243
//
 
23244
// MessageText:
 
23245
//
 
23246
//  Illegal operation called on non-file based storage.
 
23247
//
 
23248
  STG_E_NOTFILEBASEDSTORAGE = HRESULT($80030107);
 
23249
  {$EXTERNALSYM STG_E_NOTFILEBASEDSTORAGE}
 
23250
 
 
23251
//
 
23252
// MessageId: STG_E_EXTANTMARSHALLINGS
 
23253
//
 
23254
// MessageText:
 
23255
//
 
23256
//  Illegal operation called on object with extant marshallings.
 
23257
//
 
23258
  STG_E_EXTANTMARSHALLINGS = HRESULT($80030108);
 
23259
  {$EXTERNALSYM STG_E_EXTANTMARSHALLINGS}
 
23260
 
 
23261
//
 
23262
// MessageId: STG_E_DOCFILECORRUPT
 
23263
//
 
23264
// MessageText:
 
23265
//
 
23266
//  The docfile has been corrupted.
 
23267
//
 
23268
  STG_E_DOCFILECORRUPT = HRESULT($80030109);
 
23269
  {$EXTERNALSYM STG_E_DOCFILECORRUPT}
 
23270
 
 
23271
//
 
23272
// MessageId: STG_E_BADBASEADDRESS
 
23273
//
 
23274
// MessageText:
 
23275
//
 
23276
//  OLE32.DLL has been loaded at the wrong address.
 
23277
//
 
23278
  STG_E_BADBASEADDRESS = HRESULT($80030110);
 
23279
  {$EXTERNALSYM STG_E_BADBASEADDRESS}
 
23280
 
 
23281
//
 
23282
// MessageId: STG_E_DOCFILETOOLARGE
 
23283
//
 
23284
// MessageText:
 
23285
//
 
23286
//  The compound file is too large for the current implementation
 
23287
//
 
23288
  STG_E_DOCFILETOOLARGE = HRESULT($80030111);
 
23289
  {$EXTERNALSYM STG_E_DOCFILETOOLARGE}
 
23290
 
 
23291
//
 
23292
// MessageId: STG_E_NOTSIMPLEFORMAT
 
23293
//
 
23294
// MessageText:
 
23295
//
 
23296
//  The compound file was not created with the STGM_SIMPLE flag
 
23297
//
 
23298
  STG_E_NOTSIMPLEFORMAT = HRESULT($80030112);
 
23299
  {$EXTERNALSYM STG_E_NOTSIMPLEFORMAT}
 
23300
 
 
23301
//
 
23302
// MessageId: STG_E_INCOMPLETE
 
23303
//
 
23304
// MessageText:
 
23305
//
 
23306
//  The file download was aborted abnormally.  The file is incomplete.
 
23307
//
 
23308
  STG_E_INCOMPLETE = HRESULT($80030201);
 
23309
  {$EXTERNALSYM STG_E_INCOMPLETE}
 
23310
 
 
23311
//
 
23312
// MessageId: STG_E_TERMINATED
 
23313
//
 
23314
// MessageText:
 
23315
//
 
23316
//  The file download has been terminated.
 
23317
//
 
23318
  STG_E_TERMINATED = HRESULT($80030202);
 
23319
  {$EXTERNALSYM STG_E_TERMINATED}
 
23320
 
 
23321
//
 
23322
// MessageId: STG_S_CONVERTED
 
23323
//
 
23324
// MessageText:
 
23325
//
 
23326
//  The underlying file was converted to compound file format.
 
23327
//
 
23328
  STG_S_CONVERTED = HRESULT($00030200);
 
23329
  {$EXTERNALSYM STG_S_CONVERTED}
 
23330
 
 
23331
//
 
23332
// MessageId: STG_S_BLOCK
 
23333
//
 
23334
// MessageText:
 
23335
//
 
23336
//  The storage operation should block until more data is available.
 
23337
//
 
23338
  STG_S_BLOCK = HRESULT($00030201);
 
23339
  {$EXTERNALSYM STG_S_BLOCK}
 
23340
 
 
23341
//
 
23342
// MessageId: STG_S_RETRYNOW
 
23343
//
 
23344
// MessageText:
 
23345
//
 
23346
//  The storage operation should retry immediately.
 
23347
//
 
23348
  STG_S_RETRYNOW = HRESULT($00030202);
 
23349
  {$EXTERNALSYM STG_S_RETRYNOW}
 
23350
 
 
23351
//
 
23352
// MessageId: STG_S_MONITORING
 
23353
//
 
23354
// MessageText:
 
23355
//
 
23356
//  The notified event sink will not influence the storage operation.
 
23357
//
 
23358
  STG_S_MONITORING = HRESULT($00030203);
 
23359
  {$EXTERNALSYM STG_S_MONITORING}
 
23360
 
 
23361
//
 
23362
// MessageId: STG_S_MULTIPLEOPENS
 
23363
//
 
23364
// MessageText:
 
23365
//
 
23366
//  Multiple opens prevent consolidated. (commit succeeded).
 
23367
//
 
23368
  STG_S_MULTIPLEOPENS = HRESULT($00030204);
 
23369
  {$EXTERNALSYM STG_S_MULTIPLEOPENS}
 
23370
 
 
23371
//
 
23372
// MessageId: STG_S_CONSOLIDATIONFAILED
 
23373
//
 
23374
// MessageText:
 
23375
//
 
23376
//  Consolidation of the storage file failed. (commit succeeded).
 
23377
//
 
23378
  STG_S_CONSOLIDATIONFAILED = HRESULT($00030205);
 
23379
  {$EXTERNALSYM STG_S_CONSOLIDATIONFAILED}
 
23380
 
 
23381
//
 
23382
// MessageId: STG_S_CANNOTCONSOLIDATE
 
23383
//
 
23384
// MessageText:
 
23385
//
 
23386
//  Consolidation of the storage file is inappropriate. (commit succeeded).
 
23387
//
 
23388
  STG_S_CANNOTCONSOLIDATE = HRESULT($00030206);
 
23389
  {$EXTERNALSYM STG_S_CANNOTCONSOLIDATE}
 
23390
 
 
23391
{*++
 
23392
 
 
23393
 MessageId's 0x0305 - 0x031f (inclusive) are reserved for **STORAGE**
 
23394
 copy protection errors.
 
23395
 
 
23396
--*}
 
23397
//
 
23398
// MessageId: STG_E_STATUS_COPY_PROTECTION_FAILURE
 
23399
//
 
23400
// MessageText:
 
23401
//
 
23402
//  Generic Copy Protection Error.
 
23403
//
 
23404
  STG_E_STATUS_COPY_PROTECTION_FAILURE = HRESULT($80030305);
 
23405
  {$EXTERNALSYM STG_E_STATUS_COPY_PROTECTION_FAILURE}
 
23406
 
 
23407
//
 
23408
// MessageId: STG_E_CSS_AUTHENTICATION_FAILURE
 
23409
//
 
23410
// MessageText:
 
23411
//
 
23412
//  Copy Protection Error - DVD CSS Authentication failed.
 
23413
//
 
23414
  STG_E_CSS_AUTHENTICATION_FAILURE = HRESULT($80030306);
 
23415
  {$EXTERNALSYM STG_E_CSS_AUTHENTICATION_FAILURE}
 
23416
 
 
23417
//
 
23418
// MessageId: STG_E_CSS_KEY_NOT_PRESENT
 
23419
//
 
23420
// MessageText:
 
23421
//
 
23422
//  Copy Protection Error - The given sector does not have a valid CSS key.
 
23423
//
 
23424
  STG_E_CSS_KEY_NOT_PRESENT = HRESULT($80030307);
 
23425
  {$EXTERNALSYM STG_E_CSS_KEY_NOT_PRESENT}
 
23426
 
 
23427
//
 
23428
// MessageId: STG_E_CSS_KEY_NOT_ESTABLISHED
 
23429
//
 
23430
// MessageText:
 
23431
//
 
23432
//  Copy Protection Error - DVD session key not established.
 
23433
//
 
23434
  STG_E_CSS_KEY_NOT_ESTABLISHED = HRESULT($80030308);
 
23435
  {$EXTERNALSYM STG_E_CSS_KEY_NOT_ESTABLISHED}
 
23436
 
 
23437
//
 
23438
// MessageId: STG_E_CSS_SCRAMBLED_SECTOR
 
23439
//
 
23440
// MessageText:
 
23441
//
 
23442
//  Copy Protection Error - The read failed because the sector is encrypted.
 
23443
//
 
23444
  STG_E_CSS_SCRAMBLED_SECTOR = HRESULT($80030309);
 
23445
  {$EXTERNALSYM STG_E_CSS_SCRAMBLED_SECTOR}
 
23446
 
 
23447
//
 
23448
// MessageId: STG_E_CSS_REGION_MISMATCH
 
23449
//
 
23450
// MessageText:
 
23451
//
 
23452
//  Copy Protection Error - The current DVD's region does not correspond to the region setting of the drive.
 
23453
//
 
23454
  STG_E_CSS_REGION_MISMATCH = HRESULT($8003030A);
 
23455
  {$EXTERNALSYM STG_E_CSS_REGION_MISMATCH}
 
23456
 
 
23457
//
 
23458
// MessageId: STG_E_RESETS_EXHAUSTED
 
23459
//
 
23460
// MessageText:
 
23461
//
 
23462
//  Copy Protection Error - The drive's region setting may be permanent or the number of user resets has been exhausted.
 
23463
//
 
23464
  STG_E_RESETS_EXHAUSTED = HRESULT($8003030B);
 
23465
  {$EXTERNALSYM STG_E_RESETS_EXHAUSTED}
 
23466
 
 
23467
{*++
 
23468
 
 
23469
 MessageId's 0x0305 - 0x031f (inclusive) are reserved for **STORAGE**
 
23470
 copy protection errors.
 
23471
 
 
23472
--*}
 
23473
// ******************
 
23474
// FACILITY_RPC
 
23475
// ******************
 
23476
//
 
23477
// Codes 0x0-0x11 are propagated from 16 bit OLE.
 
23478
//
 
23479
//
 
23480
// MessageId: RPC_E_CALL_REJECTED
 
23481
//
 
23482
// MessageText:
 
23483
//
 
23484
//  Call was rejected by callee.
 
23485
//
 
23486
  RPC_E_CALL_REJECTED = HRESULT($80010001);
 
23487
  {$EXTERNALSYM RPC_E_CALL_REJECTED}
 
23488
 
 
23489
//
 
23490
// MessageId: RPC_E_CALL_CANCELED
 
23491
//
 
23492
// MessageText:
 
23493
//
 
23494
//  Call was canceled by the message filter.
 
23495
//
 
23496
  RPC_E_CALL_CANCELED = HRESULT($80010002);
 
23497
  {$EXTERNALSYM RPC_E_CALL_CANCELED}
 
23498
 
 
23499
//
 
23500
// MessageId: RPC_E_CANTPOST_INSENDCALL
 
23501
//
 
23502
// MessageText:
 
23503
//
 
23504
//  The caller is dispatching an intertask SendMessage call and cannot call out via PostMessage.
 
23505
//
 
23506
  RPC_E_CANTPOST_INSENDCALL = HRESULT($80010003);
 
23507
  {$EXTERNALSYM RPC_E_CANTPOST_INSENDCALL}
 
23508
 
 
23509
//
 
23510
// MessageId: RPC_E_CANTCALLOUT_INASYNCCALL
 
23511
//
 
23512
// MessageText:
 
23513
//
 
23514
//  The caller is dispatching an asynchronous call and cannot make an outgoing call on behalf of this call.
 
23515
//
 
23516
  RPC_E_CANTCALLOUT_INASYNCCALL = HRESULT($80010004);
 
23517
  {$EXTERNALSYM RPC_E_CANTCALLOUT_INASYNCCALL}
 
23518
 
 
23519
//
 
23520
// MessageId: RPC_E_CANTCALLOUT_INEXTERNALCALL
 
23521
//
 
23522
// MessageText:
 
23523
//
 
23524
//  It is illegal to call out while inside message filter.
 
23525
//
 
23526
  RPC_E_CANTCALLOUT_INEXTERNALCALL = HRESULT($80010005);
 
23527
  {$EXTERNALSYM RPC_E_CANTCALLOUT_INEXTERNALCALL}
 
23528
 
 
23529
//
 
23530
// MessageId: RPC_E_CONNECTION_TERMINATED
 
23531
//
 
23532
// MessageText:
 
23533
//
 
23534
//  The connection terminated or is in a bogus state and cannot be used any more. Other connections are still valid.
 
23535
//
 
23536
  RPC_E_CONNECTION_TERMINATED = HRESULT($80010006);
 
23537
  {$EXTERNALSYM RPC_E_CONNECTION_TERMINATED}
 
23538
 
 
23539
//
 
23540
// MessageId: RPC_E_SERVER_DIED
 
23541
//
 
23542
// MessageText:
 
23543
//
 
23544
//  The callee (server [not server application]) is not available and disappeared; all connections are invalid. The call may have executed.
 
23545
//
 
23546
  RPC_E_SERVER_DIED = HRESULT($80010007);
 
23547
  {$EXTERNALSYM RPC_E_SERVER_DIED}
 
23548
 
 
23549
//
 
23550
// MessageId: RPC_E_CLIENT_DIED
 
23551
//
 
23552
// MessageText:
 
23553
//
 
23554
//  The caller (client) disappeared while the callee (server) was processing a call.
 
23555
//
 
23556
  RPC_E_CLIENT_DIED = HRESULT($80010008);
 
23557
  {$EXTERNALSYM RPC_E_CLIENT_DIED}
 
23558
 
 
23559
//
 
23560
// MessageId: RPC_E_INVALID_DATAPACKET
 
23561
//
 
23562
// MessageText:
 
23563
//
 
23564
//  The data packet with the marshalled parameter data is incorrect.
 
23565
//
 
23566
  RPC_E_INVALID_DATAPACKET = HRESULT($80010009);
 
23567
  {$EXTERNALSYM RPC_E_INVALID_DATAPACKET}
 
23568
 
 
23569
//
 
23570
// MessageId: RPC_E_CANTTRANSMIT_CALL
 
23571
//
 
23572
// MessageText:
 
23573
//
 
23574
//  The call was not transmitted properly; the message queue was full and was not emptied after yielding.
 
23575
//
 
23576
  RPC_E_CANTTRANSMIT_CALL = HRESULT($8001000A);
 
23577
  {$EXTERNALSYM RPC_E_CANTTRANSMIT_CALL}
 
23578
 
 
23579
//
 
23580
// MessageId: RPC_E_CLIENT_CANTMARSHAL_DATA
 
23581
//
 
23582
// MessageText:
 
23583
//
 
23584
//  The client (caller) cannot marshall the parameter data - low memory, etc.
 
23585
//
 
23586
  RPC_E_CLIENT_CANTMARSHAL_DATA = HRESULT($8001000B);
 
23587
  {$EXTERNALSYM RPC_E_CLIENT_CANTMARSHAL_DATA}
 
23588
 
 
23589
//
 
23590
// MessageId: RPC_E_CLIENT_CANTUNMARSHAL_DATA
 
23591
//
 
23592
// MessageText:
 
23593
//
 
23594
//  The client (caller) cannot unmarshall the return data - low memory, etc.
 
23595
//
 
23596
  RPC_E_CLIENT_CANTUNMARSHAL_DATA = HRESULT($8001000C);
 
23597
  {$EXTERNALSYM RPC_E_CLIENT_CANTUNMARSHAL_DATA}
 
23598
 
 
23599
//
 
23600
// MessageId: RPC_E_SERVER_CANTMARSHAL_DATA
 
23601
//
 
23602
// MessageText:
 
23603
//
 
23604
//  The server (callee) cannot marshall the return data - low memory, etc.
 
23605
//
 
23606
  RPC_E_SERVER_CANTMARSHAL_DATA = HRESULT($8001000D);
 
23607
  {$EXTERNALSYM RPC_E_SERVER_CANTMARSHAL_DATA}
 
23608
 
 
23609
//
 
23610
// MessageId: RPC_E_SERVER_CANTUNMARSHAL_DATA
 
23611
//
 
23612
// MessageText:
 
23613
//
 
23614
//  The server (callee) cannot unmarshall the parameter data - low memory, etc.
 
23615
//
 
23616
  RPC_E_SERVER_CANTUNMARSHAL_DATA = HRESULT($8001000E);
 
23617
  {$EXTERNALSYM RPC_E_SERVER_CANTUNMARSHAL_DATA}
 
23618
 
 
23619
//
 
23620
// MessageId: RPC_E_INVALID_DATA
 
23621
//
 
23622
// MessageText:
 
23623
//
 
23624
//  Received data is invalid; could be server or client data.
 
23625
//
 
23626
  RPC_E_INVALID_DATA = HRESULT($8001000F);
 
23627
  {$EXTERNALSYM RPC_E_INVALID_DATA}
 
23628
 
 
23629
//
 
23630
// MessageId: RPC_E_INVALID_PARAMETER
 
23631
//
 
23632
// MessageText:
 
23633
//
 
23634
//  A particular parameter is invalid and cannot be (un)marshalled.
 
23635
//
 
23636
  RPC_E_INVALID_PARAMETER = HRESULT($80010010);
 
23637
  {$EXTERNALSYM RPC_E_INVALID_PARAMETER}
 
23638
 
 
23639
//
 
23640
// MessageId: RPC_E_CANTCALLOUT_AGAIN
 
23641
//
 
23642
// MessageText:
 
23643
//
 
23644
//  There is no second outgoing call on same channel in DDE conversation.
 
23645
//
 
23646
  RPC_E_CANTCALLOUT_AGAIN = HRESULT($80010011);
 
23647
  {$EXTERNALSYM RPC_E_CANTCALLOUT_AGAIN}
 
23648
 
 
23649
//
 
23650
// MessageId: RPC_E_SERVER_DIED_DNE
 
23651
//
 
23652
// MessageText:
 
23653
//
 
23654
//  The callee (server [not server application]) is not available and disappeared; all connections are invalid. The call did not execute.
 
23655
//
 
23656
  RPC_E_SERVER_DIED_DNE = HRESULT($80010012);
 
23657
  {$EXTERNALSYM RPC_E_SERVER_DIED_DNE}
 
23658
 
 
23659
//
 
23660
// MessageId: RPC_E_SYS_CALL_FAILED
 
23661
//
 
23662
// MessageText:
 
23663
//
 
23664
//  System call failed.
 
23665
//
 
23666
  RPC_E_SYS_CALL_FAILED = HRESULT($80010100);
 
23667
  {$EXTERNALSYM RPC_E_SYS_CALL_FAILED}
 
23668
 
 
23669
//
 
23670
// MessageId: RPC_E_OUT_OF_RESOURCES
 
23671
//
 
23672
// MessageText:
 
23673
//
 
23674
//  Could not allocate some required resource (memory, events, ...)
 
23675
//
 
23676
  RPC_E_OUT_OF_RESOURCES = HRESULT($80010101);
 
23677
  {$EXTERNALSYM RPC_E_OUT_OF_RESOURCES}
 
23678
 
 
23679
//
 
23680
// MessageId: RPC_E_ATTEMPTED_MULTITHREAD
 
23681
//
 
23682
// MessageText:
 
23683
//
 
23684
//  Attempted to make calls on more than one thread in single threaded mode.
 
23685
//
 
23686
  RPC_E_ATTEMPTED_MULTITHREAD = HRESULT($80010102);
 
23687
  {$EXTERNALSYM RPC_E_ATTEMPTED_MULTITHREAD}
 
23688
 
 
23689
//
 
23690
// MessageId: RPC_E_NOT_REGISTERED
 
23691
//
 
23692
// MessageText:
 
23693
//
 
23694
//  The requested interface is not registered on the server object.
 
23695
//
 
23696
  RPC_E_NOT_REGISTERED = HRESULT($80010103);
 
23697
  {$EXTERNALSYM RPC_E_NOT_REGISTERED}
 
23698
 
 
23699
//
 
23700
// MessageId: RPC_E_FAULT
 
23701
//
 
23702
// MessageText:
 
23703
//
 
23704
//  RPC could not call the server or could not return the results of calling the server.
 
23705
//
 
23706
  RPC_E_FAULT = HRESULT($80010104);
 
23707
  {$EXTERNALSYM RPC_E_FAULT}
 
23708
 
 
23709
//
 
23710
// MessageId: RPC_E_SERVERFAULT
 
23711
//
 
23712
// MessageText:
 
23713
//
 
23714
//  The server threw an exception.
 
23715
//
 
23716
  RPC_E_SERVERFAULT = HRESULT($80010105);
 
23717
  {$EXTERNALSYM RPC_E_SERVERFAULT}
 
23718
 
 
23719
//
 
23720
// MessageId: RPC_E_CHANGED_MODE
 
23721
//
 
23722
// MessageText:
 
23723
//
 
23724
//  Cannot change thread mode after it is set.
 
23725
//
 
23726
  RPC_E_CHANGED_MODE = HRESULT($80010106);
 
23727
  {$EXTERNALSYM RPC_E_CHANGED_MODE}
 
23728
 
 
23729
//
 
23730
// MessageId: RPC_E_INVALIDMETHOD
 
23731
//
 
23732
// MessageText:
 
23733
//
 
23734
//  The method called does not exist on the server.
 
23735
//
 
23736
  RPC_E_INVALIDMETHOD = HRESULT($80010107);
 
23737
  {$EXTERNALSYM RPC_E_INVALIDMETHOD}
 
23738
 
 
23739
//
 
23740
// MessageId: RPC_E_DISCONNECTED
 
23741
//
 
23742
// MessageText:
 
23743
//
 
23744
//  The object invoked has disconnected from its clients.
 
23745
//
 
23746
  RPC_E_DISCONNECTED = HRESULT($80010108);
 
23747
  {$EXTERNALSYM RPC_E_DISCONNECTED}
 
23748
 
 
23749
//
 
23750
// MessageId: RPC_E_RETRY
 
23751
//
 
23752
// MessageText:
 
23753
//
 
23754
//  The object invoked chose not to process the call now.  Try again later.
 
23755
//
 
23756
  RPC_E_RETRY = HRESULT($80010109);
 
23757
  {$EXTERNALSYM RPC_E_RETRY}
 
23758
 
 
23759
//
 
23760
// MessageId: RPC_E_SERVERCALL_RETRYLATER
 
23761
//
 
23762
// MessageText:
 
23763
//
 
23764
//  The message filter indicated that the application is busy.
 
23765
//
 
23766
  RPC_E_SERVERCALL_RETRYLATER = HRESULT($8001010A);
 
23767
  {$EXTERNALSYM RPC_E_SERVERCALL_RETRYLATER}
 
23768
 
 
23769
//
 
23770
// MessageId: RPC_E_SERVERCALL_REJECTED
 
23771
//
 
23772
// MessageText:
 
23773
//
 
23774
//  The message filter rejected the call.
 
23775
//
 
23776
  RPC_E_SERVERCALL_REJECTED = HRESULT($8001010B);
 
23777
  {$EXTERNALSYM RPC_E_SERVERCALL_REJECTED}
 
23778
 
 
23779
//
 
23780
// MessageId: RPC_E_INVALID_CALLDATA
 
23781
//
 
23782
// MessageText:
 
23783
//
 
23784
//  A call control interfaces was called with invalid data.
 
23785
//
 
23786
  RPC_E_INVALID_CALLDATA = HRESULT($8001010C);
 
23787
  {$EXTERNALSYM RPC_E_INVALID_CALLDATA}
 
23788
 
 
23789
//
 
23790
// MessageId: RPC_E_CANTCALLOUT_ININPUTSYNCCALL
 
23791
//
 
23792
// MessageText:
 
23793
//
 
23794
//  An outgoing call cannot be made since the application is dispatching an input-synchronous call.
 
23795
//
 
23796
  RPC_E_CANTCALLOUT_ININPUTSYNCCALL = HRESULT($8001010D);
 
23797
  {$EXTERNALSYM RPC_E_CANTCALLOUT_ININPUTSYNCCALL}
 
23798
 
 
23799
//
 
23800
// MessageId: RPC_E_WRONG_THREAD
 
23801
//
 
23802
// MessageText:
 
23803
//
 
23804
//  The application called an interface that was marshalled for a different thread.
 
23805
//
 
23806
  RPC_E_WRONG_THREAD = HRESULT($8001010E);
 
23807
  {$EXTERNALSYM RPC_E_WRONG_THREAD}
 
23808
 
 
23809
//
 
23810
// MessageId: RPC_E_THREAD_NOT_INIT
 
23811
//
 
23812
// MessageText:
 
23813
//
 
23814
//  CoInitialize has not been called on the current thread.
 
23815
//
 
23816
  RPC_E_THREAD_NOT_INIT = HRESULT($8001010F);
 
23817
  {$EXTERNALSYM RPC_E_THREAD_NOT_INIT}
 
23818
 
 
23819
//
 
23820
// MessageId: RPC_E_VERSION_MISMATCH
 
23821
//
 
23822
// MessageText:
 
23823
//
 
23824
//  The version of OLE on the client and server machines does not match.
 
23825
//
 
23826
  RPC_E_VERSION_MISMATCH = HRESULT($80010110);
 
23827
  {$EXTERNALSYM RPC_E_VERSION_MISMATCH}
 
23828
 
 
23829
//
 
23830
// MessageId: RPC_E_INVALID_HEADER
 
23831
//
 
23832
// MessageText:
 
23833
//
 
23834
//  OLE received a packet with an invalid header.
 
23835
//
 
23836
  RPC_E_INVALID_HEADER = HRESULT($80010111);
 
23837
  {$EXTERNALSYM RPC_E_INVALID_HEADER}
 
23838
 
 
23839
//
 
23840
// MessageId: RPC_E_INVALID_EXTENSION
 
23841
//
 
23842
// MessageText:
 
23843
//
 
23844
//  OLE received a packet with an invalid extension.
 
23845
//
 
23846
  RPC_E_INVALID_EXTENSION = HRESULT($80010112);
 
23847
  {$EXTERNALSYM RPC_E_INVALID_EXTENSION}
 
23848
 
 
23849
//
 
23850
// MessageId: RPC_E_INVALID_IPID
 
23851
//
 
23852
// MessageText:
 
23853
//
 
23854
//  The requested object or interface does not exist.
 
23855
//
 
23856
  RPC_E_INVALID_IPID = HRESULT($80010113);
 
23857
  {$EXTERNALSYM RPC_E_INVALID_IPID}
 
23858
 
 
23859
//
 
23860
// MessageId: RPC_E_INVALID_OBJECT
 
23861
//
 
23862
// MessageText:
 
23863
//
 
23864
//  The requested object does not exist.
 
23865
//
 
23866
  RPC_E_INVALID_OBJECT = HRESULT($80010114);
 
23867
  {$EXTERNALSYM RPC_E_INVALID_OBJECT}
 
23868
 
 
23869
//
 
23870
// MessageId: RPC_S_CALLPENDING
 
23871
//
 
23872
// MessageText:
 
23873
//
 
23874
//  OLE has sent a request and is waiting for a reply.
 
23875
//
 
23876
  RPC_S_CALLPENDING = HRESULT($80010115);
 
23877
  {$EXTERNALSYM RPC_S_CALLPENDING}
 
23878
 
 
23879
//
 
23880
// MessageId: RPC_S_WAITONTIMER
 
23881
//
 
23882
// MessageText:
 
23883
//
 
23884
//  OLE is waiting before retrying a request.
 
23885
//
 
23886
  RPC_S_WAITONTIMER = HRESULT($80010116);
 
23887
  {$EXTERNALSYM RPC_S_WAITONTIMER}
 
23888
 
 
23889
//
 
23890
// MessageId: RPC_E_CALL_COMPLETE
 
23891
//
 
23892
// MessageText:
 
23893
//
 
23894
//  Call context cannot be accessed after call completed.
 
23895
//
 
23896
  RPC_E_CALL_COMPLETE = HRESULT($80010117);
 
23897
  {$EXTERNALSYM RPC_E_CALL_COMPLETE}
 
23898
 
 
23899
//
 
23900
// MessageId: RPC_E_UNSECURE_CALL
 
23901
//
 
23902
// MessageText:
 
23903
//
 
23904
//  Impersonate on unsecure calls is not supported.
 
23905
//
 
23906
  RPC_E_UNSECURE_CALL = HRESULT($80010118);
 
23907
  {$EXTERNALSYM RPC_E_UNSECURE_CALL}
 
23908
 
 
23909
//
 
23910
// MessageId: RPC_E_TOO_LATE
 
23911
//
 
23912
// MessageText:
 
23913
//
 
23914
//  Security must be initialized before any interfaces are marshalled or unmarshalled. It cannot be changed once initialized.
 
23915
//
 
23916
  RPC_E_TOO_LATE = HRESULT($80010119);
 
23917
  {$EXTERNALSYM RPC_E_TOO_LATE}
 
23918
 
 
23919
//
 
23920
// MessageId: RPC_E_NO_GOOD_SECURITY_PACKAGES
 
23921
//
 
23922
// MessageText:
 
23923
//
 
23924
//  No security packages are installed on this machine or the user is not logged on or there are no compatible security packages between the client and server.
 
23925
//
 
23926
  RPC_E_NO_GOOD_SECURITY_PACKAGES = HRESULT($8001011A);
 
23927
  {$EXTERNALSYM RPC_E_NO_GOOD_SECURITY_PACKAGES}
 
23928
 
 
23929
//
 
23930
// MessageId: RPC_E_ACCESS_DENIED
 
23931
//
 
23932
// MessageText:
 
23933
//
 
23934
//  Access is denied.
 
23935
//
 
23936
  RPC_E_ACCESS_DENIED = HRESULT($8001011B);
 
23937
  {$EXTERNALSYM RPC_E_ACCESS_DENIED}
 
23938
 
 
23939
//
 
23940
// MessageId: RPC_E_REMOTE_DISABLED
 
23941
//
 
23942
// MessageText:
 
23943
//
 
23944
//  Remote calls are not allowed for this process.
 
23945
//
 
23946
  RPC_E_REMOTE_DISABLED = HRESULT($8001011C);
 
23947
  {$EXTERNALSYM RPC_E_REMOTE_DISABLED}
 
23948
 
 
23949
//
 
23950
// MessageId: RPC_E_INVALID_OBJREF
 
23951
//
 
23952
// MessageText:
 
23953
//
 
23954
//  The marshaled interface data packet (OBJREF) has an invalid or unknown format.
 
23955
//
 
23956
  RPC_E_INVALID_OBJREF = HRESULT($8001011D);
 
23957
  {$EXTERNALSYM RPC_E_INVALID_OBJREF}
 
23958
 
 
23959
//
 
23960
// MessageId: RPC_E_NO_CONTEXT
 
23961
//
 
23962
// MessageText:
 
23963
//
 
23964
//  No context is associated with this call. This happens for some custom marshalled calls and on the client side of the call.
 
23965
//
 
23966
  RPC_E_NO_CONTEXT = HRESULT($8001011E);
 
23967
  {$EXTERNALSYM RPC_E_NO_CONTEXT}
 
23968
 
 
23969
//
 
23970
// MessageId: RPC_E_TIMEOUT
 
23971
//
 
23972
// MessageText:
 
23973
//
 
23974
//  This operation returned because the timeout period expired.
 
23975
//
 
23976
  RPC_E_TIMEOUT = HRESULT($8001011F);
 
23977
  {$EXTERNALSYM RPC_E_TIMEOUT}
 
23978
 
 
23979
//
 
23980
// MessageId: RPC_E_NO_SYNC
 
23981
//
 
23982
// MessageText:
 
23983
//
 
23984
//  There are no synchronize objects to wait on.
 
23985
//
 
23986
  RPC_E_NO_SYNC = HRESULT($80010120);
 
23987
  {$EXTERNALSYM RPC_E_NO_SYNC}
 
23988
 
 
23989
//
 
23990
// MessageId: RPC_E_FULLSIC_REQUIRED
 
23991
//
 
23992
// MessageText:
 
23993
//
 
23994
//  Full subject issuer chain SSL principal name expected from the server.
 
23995
//
 
23996
  RPC_E_FULLSIC_REQUIRED = HRESULT($80010121);
 
23997
  {$EXTERNALSYM RPC_E_FULLSIC_REQUIRED}
 
23998
 
 
23999
//
 
24000
// MessageId: RPC_E_INVALID_STD_NAME
 
24001
//
 
24002
// MessageText:
 
24003
//
 
24004
//  Principal name is not a valid MSSTD name.
 
24005
//
 
24006
  RPC_E_INVALID_STD_NAME = HRESULT($80010122);
 
24007
  {$EXTERNALSYM RPC_E_INVALID_STD_NAME}
 
24008
 
 
24009
//
 
24010
// MessageId: CO_E_FAILEDTOIMPERSONATE
 
24011
//
 
24012
// MessageText:
 
24013
//
 
24014
//  Unable to impersonate DCOM client
 
24015
//
 
24016
  CO_E_FAILEDTOIMPERSONATE = HRESULT($80010123);
 
24017
  {$EXTERNALSYM CO_E_FAILEDTOIMPERSONATE}
 
24018
 
 
24019
//
 
24020
// MessageId: CO_E_FAILEDTOGETSECCTX
 
24021
//
 
24022
// MessageText:
 
24023
//
 
24024
//  Unable to obtain server's security context
 
24025
//
 
24026
  CO_E_FAILEDTOGETSECCTX = HRESULT($80010124);
 
24027
  {$EXTERNALSYM CO_E_FAILEDTOGETSECCTX}
 
24028
 
 
24029
//
 
24030
// MessageId: CO_E_FAILEDTOOPENTHREADTOKEN
 
24031
//
 
24032
// MessageText:
 
24033
//
 
24034
//  Unable to open the access token of the current thread
 
24035
//
 
24036
  CO_E_FAILEDTOOPENTHREADTOKEN = HRESULT($80010125);
 
24037
  {$EXTERNALSYM CO_E_FAILEDTOOPENTHREADTOKEN}
 
24038
 
 
24039
//
 
24040
// MessageId: CO_E_FAILEDTOGETTOKENINFO
 
24041
//
 
24042
// MessageText:
 
24043
//
 
24044
//  Unable to obtain user info from an access token
 
24045
//
 
24046
  CO_E_FAILEDTOGETTOKENINFO = HRESULT($80010126);
 
24047
  {$EXTERNALSYM CO_E_FAILEDTOGETTOKENINFO}
 
24048
 
 
24049
//
 
24050
// MessageId: CO_E_TRUSTEEDOESNTMATCHCLIENT
 
24051
//
 
24052
// MessageText:
 
24053
//
 
24054
//  The client who called IAccessControl::IsAccessPermitted was not the trustee provided to the method
 
24055
//
 
24056
  CO_E_TRUSTEEDOESNTMATCHCLIENT = HRESULT($80010127);
 
24057
  {$EXTERNALSYM CO_E_TRUSTEEDOESNTMATCHCLIENT}
 
24058
 
 
24059
//
 
24060
// MessageId: CO_E_FAILEDTOQUERYCLIENTBLANKET
 
24061
//
 
24062
// MessageText:
 
24063
//
 
24064
//  Unable to obtain the client's security blanket
 
24065
//
 
24066
  CO_E_FAILEDTOQUERYCLIENTBLANKET = HRESULT($80010128);
 
24067
  {$EXTERNALSYM CO_E_FAILEDTOQUERYCLIENTBLANKET}
 
24068
 
 
24069
//
 
24070
// MessageId: CO_E_FAILEDTOSETDACL
 
24071
//
 
24072
// MessageText:
 
24073
//
 
24074
//  Unable to set a discretionary ACL into a security descriptor
 
24075
//
 
24076
  CO_E_FAILEDTOSETDACL = HRESULT($80010129);
 
24077
  {$EXTERNALSYM CO_E_FAILEDTOSETDACL}
 
24078
 
 
24079
//
 
24080
// MessageId: CO_E_ACCESSCHECKFAILED
 
24081
//
 
24082
// MessageText:
 
24083
//
 
24084
//  The system function, AccessCheck, returned false
 
24085
//
 
24086
  CO_E_ACCESSCHECKFAILED = HRESULT($8001012A);
 
24087
  {$EXTERNALSYM CO_E_ACCESSCHECKFAILED}
 
24088
 
 
24089
//
 
24090
// MessageId: CO_E_NETACCESSAPIFAILED
 
24091
//
 
24092
// MessageText:
 
24093
//
 
24094
//  Either NetAccessDel or NetAccessAdd returned an error code.
 
24095
//
 
24096
  CO_E_NETACCESSAPIFAILED = HRESULT($8001012B);
 
24097
  {$EXTERNALSYM CO_E_NETACCESSAPIFAILED}
 
24098
 
 
24099
//
 
24100
// MessageId: CO_E_WRONGTRUSTEENAMESYNTAX
 
24101
//
 
24102
// MessageText:
 
24103
//
 
24104
//  One of the trustee strings provided by the user did not conform to the <Domain>\<Name> syntax and it was not the "*" string
 
24105
//
 
24106
  CO_E_WRONGTRUSTEENAMESYNTAX = HRESULT($8001012C);
 
24107
  {$EXTERNALSYM CO_E_WRONGTRUSTEENAMESYNTAX}
 
24108
 
 
24109
//
 
24110
// MessageId: CO_E_INVALIDSID
 
24111
//
 
24112
// MessageText:
 
24113
//
 
24114
//  One of the security identifiers provided by the user was invalid
 
24115
//
 
24116
  CO_E_INVALIDSID = HRESULT($8001012D);
 
24117
  {$EXTERNALSYM CO_E_INVALIDSID}
 
24118
 
 
24119
//
 
24120
// MessageId: CO_E_CONVERSIONFAILED
 
24121
//
 
24122
// MessageText:
 
24123
//
 
24124
//  Unable to convert a wide character trustee string to a multibyte trustee string
 
24125
//
 
24126
  CO_E_CONVERSIONFAILED = HRESULT($8001012E);
 
24127
  {$EXTERNALSYM CO_E_CONVERSIONFAILED}
 
24128
 
 
24129
//
 
24130
// MessageId: CO_E_NOMATCHINGSIDFOUND
 
24131
//
 
24132
// MessageText:
 
24133
//
 
24134
//  Unable to find a security identifier that corresponds to a trustee string provided by the user
 
24135
//
 
24136
  CO_E_NOMATCHINGSIDFOUND = HRESULT($8001012F);
 
24137
  {$EXTERNALSYM CO_E_NOMATCHINGSIDFOUND}
 
24138
 
 
24139
//
 
24140
// MessageId: CO_E_LOOKUPACCSIDFAILED
 
24141
//
 
24142
// MessageText:
 
24143
//
 
24144
//  The system function, LookupAccountSID, failed
 
24145
//
 
24146
  CO_E_LOOKUPACCSIDFAILED = HRESULT($80010130);
 
24147
  {$EXTERNALSYM CO_E_LOOKUPACCSIDFAILED}
 
24148
 
 
24149
//
 
24150
// MessageId: CO_E_NOMATCHINGNAMEFOUND
 
24151
//
 
24152
// MessageText:
 
24153
//
 
24154
//  Unable to find a trustee name that corresponds to a security identifier provided by the user
 
24155
//
 
24156
  CO_E_NOMATCHINGNAMEFOUND = HRESULT($80010131);
 
24157
  {$EXTERNALSYM CO_E_NOMATCHINGNAMEFOUND}
 
24158
 
 
24159
//
 
24160
// MessageId: CO_E_LOOKUPACCNAMEFAILED
 
24161
//
 
24162
// MessageText:
 
24163
//
 
24164
//  The system function, LookupAccountName, failed
 
24165
//
 
24166
  CO_E_LOOKUPACCNAMEFAILED = HRESULT($80010132);
 
24167
  {$EXTERNALSYM CO_E_LOOKUPACCNAMEFAILED}
 
24168
 
 
24169
//
 
24170
// MessageId: CO_E_SETSERLHNDLFAILED
 
24171
//
 
24172
// MessageText:
 
24173
//
 
24174
//  Unable to set or reset a serialization handle
 
24175
//
 
24176
  CO_E_SETSERLHNDLFAILED = HRESULT($80010133);
 
24177
  {$EXTERNALSYM CO_E_SETSERLHNDLFAILED}
 
24178
 
 
24179
//
 
24180
// MessageId: CO_E_FAILEDTOGETWINDIR
 
24181
//
 
24182
// MessageText:
 
24183
//
 
24184
//  Unable to obtain the Windows directory
 
24185
//
 
24186
  CO_E_FAILEDTOGETWINDIR = HRESULT($80010134);
 
24187
  {$EXTERNALSYM CO_E_FAILEDTOGETWINDIR}
 
24188
 
 
24189
//
 
24190
// MessageId: CO_E_PATHTOOLONG
 
24191
//
 
24192
// MessageText:
 
24193
//
 
24194
//  Path too long
 
24195
//
 
24196
  CO_E_PATHTOOLONG = HRESULT($80010135);
 
24197
  {$EXTERNALSYM CO_E_PATHTOOLONG}
 
24198
 
 
24199
//
 
24200
// MessageId: CO_E_FAILEDTOGENUUID
 
24201
//
 
24202
// MessageText:
 
24203
//
 
24204
//  Unable to generate a uuid.
 
24205
//
 
24206
  CO_E_FAILEDTOGENUUID = HRESULT($80010136);
 
24207
  {$EXTERNALSYM CO_E_FAILEDTOGENUUID}
 
24208
 
 
24209
//
 
24210
// MessageId: CO_E_FAILEDTOCREATEFILE
 
24211
//
 
24212
// MessageText:
 
24213
//
 
24214
//  Unable to create file
 
24215
//
 
24216
  CO_E_FAILEDTOCREATEFILE = HRESULT($80010137);
 
24217
  {$EXTERNALSYM CO_E_FAILEDTOCREATEFILE}
 
24218
 
 
24219
//
 
24220
// MessageId: CO_E_FAILEDTOCLOSEHANDLE
 
24221
//
 
24222
// MessageText:
 
24223
//
 
24224
//  Unable to close a serialization handle or a file handle.
 
24225
//
 
24226
  CO_E_FAILEDTOCLOSEHANDLE = HRESULT($80010138);
 
24227
  {$EXTERNALSYM CO_E_FAILEDTOCLOSEHANDLE}
 
24228
 
 
24229
//
 
24230
// MessageId: CO_E_EXCEEDSYSACLLIMIT
 
24231
//
 
24232
// MessageText:
 
24233
//
 
24234
//  The number of ACEs in an ACL exceeds the system limit.
 
24235
//
 
24236
  CO_E_EXCEEDSYSACLLIMIT = HRESULT($80010139);
 
24237
  {$EXTERNALSYM CO_E_EXCEEDSYSACLLIMIT}
 
24238
 
 
24239
//
 
24240
// MessageId: CO_E_ACESINWRONGORDER
 
24241
//
 
24242
// MessageText:
 
24243
//
 
24244
//  Not all the DENY_ACCESS ACEs are arranged in front of the GRANT_ACCESS ACEs in the stream.
 
24245
//
 
24246
  CO_E_ACESINWRONGORDER = HRESULT($8001013A);
 
24247
  {$EXTERNALSYM CO_E_ACESINWRONGORDER}
 
24248
 
 
24249
//
 
24250
// MessageId: CO_E_INCOMPATIBLESTREAMVERSION
 
24251
//
 
24252
// MessageText:
 
24253
//
 
24254
//  The version of ACL format in the stream is not supported by this implementation of IAccessControl
 
24255
//
 
24256
  CO_E_INCOMPATIBLESTREAMVERSION = HRESULT($8001013B);
 
24257
  {$EXTERNALSYM CO_E_INCOMPATIBLESTREAMVERSION}
 
24258
 
 
24259
//
 
24260
// MessageId: CO_E_FAILEDTOOPENPROCESSTOKEN
 
24261
//
 
24262
// MessageText:
 
24263
//
 
24264
//  Unable to open the access token of the server process
 
24265
//
 
24266
  CO_E_FAILEDTOOPENPROCESSTOKEN = HRESULT($8001013C);
 
24267
  {$EXTERNALSYM CO_E_FAILEDTOOPENPROCESSTOKEN}
 
24268
 
 
24269
//
 
24270
// MessageId: CO_E_DECODEFAILED
 
24271
//
 
24272
// MessageText:
 
24273
//
 
24274
//  Unable to decode the ACL in the stream provided by the user
 
24275
//
 
24276
  CO_E_DECODEFAILED = HRESULT($8001013D);
 
24277
  {$EXTERNALSYM CO_E_DECODEFAILED}
 
24278
 
 
24279
//
 
24280
// MessageId: CO_E_ACNOTINITIALIZED
 
24281
//
 
24282
// MessageText:
 
24283
//
 
24284
//  The COM IAccessControl object is not initialized
 
24285
//
 
24286
  CO_E_ACNOTINITIALIZED = HRESULT($8001013F);
 
24287
  {$EXTERNALSYM CO_E_ACNOTINITIALIZED}
 
24288
 
 
24289
//
 
24290
// MessageId: CO_E_CANCEL_DISABLED
 
24291
//
 
24292
// MessageText:
 
24293
//
 
24294
//  Call Cancellation is disabled
 
24295
//
 
24296
  CO_E_CANCEL_DISABLED = HRESULT($80010140);
 
24297
  {$EXTERNALSYM CO_E_CANCEL_DISABLED}
 
24298
 
 
24299
//
 
24300
// MessageId: RPC_E_UNEXPECTED
 
24301
//
 
24302
// MessageText:
 
24303
//
 
24304
//  An internal error occurred.
 
24305
//
 
24306
  RPC_E_UNEXPECTED = HRESULT($8001FFFF);
 
24307
  {$EXTERNALSYM RPC_E_UNEXPECTED}
 
24308
 
 
24309
 
 
24310
//////////////////////////////////////
 
24311
//                                  //
 
24312
// Additional Security Status Codes //
 
24313
//                                  //
 
24314
// Facility=Security                //
 
24315
//                                  //
 
24316
//////////////////////////////////////
 
24317
 
 
24318
//
 
24319
// MessageId: ERROR_AUDITING_DISABLED
 
24320
//
 
24321
// MessageText:
 
24322
//
 
24323
//  The specified event is currently not being audited.
 
24324
//
 
24325
  ERROR_AUDITING_DISABLED = HRESULT($C0090001);
 
24326
  {$EXTERNALSYM ERROR_AUDITING_DISABLED}
 
24327
 
 
24328
//
 
24329
// MessageId: ERROR_ALL_SIDS_FILTERED
 
24330
//
 
24331
// MessageText:
 
24332
//
 
24333
//  The SID filtering operation removed all SIDs.
 
24334
//
 
24335
  ERROR_ALL_SIDS_FILTERED = HRESULT($C0090002);
 
24336
  {$EXTERNALSYM ERROR_ALL_SIDS_FILTERED}
 
24337
 
 
24338
 
 
24339
/////////////////////////////////////////////
 
24340
//                                         //
 
24341
// end of Additional Security Status Codes //
 
24342
//                                         //
 
24343
/////////////////////////////////////////////
 
24344
 
 
24345
 
 
24346
 /////////////////
 
24347
 //
 
24348
 //  FACILITY_SSPI
 
24349
 //
 
24350
 /////////////////
 
24351
 
 
24352
//
 
24353
// MessageId: NTE_BAD_UID
 
24354
//
 
24355
// MessageText:
 
24356
//
 
24357
//  Bad UID.
 
24358
//
 
24359
  NTE_BAD_UID = HRESULT($80090001);
 
24360
  {$EXTERNALSYM NTE_BAD_UID}
 
24361
 
 
24362
//
 
24363
// MessageId: NTE_BAD_HASH
 
24364
//
 
24365
// MessageText:
 
24366
//
 
24367
//  Bad Hash.
 
24368
//
 
24369
  NTE_BAD_HASH = HRESULT($80090002);
 
24370
  {$EXTERNALSYM NTE_BAD_HASH}
 
24371
 
 
24372
//
 
24373
// MessageId: NTE_BAD_KEY
 
24374
//
 
24375
// MessageText:
 
24376
//
 
24377
//  Bad Key.
 
24378
//
 
24379
  NTE_BAD_KEY = HRESULT($80090003);
 
24380
  {$EXTERNALSYM NTE_BAD_KEY}
 
24381
 
 
24382
//
 
24383
// MessageId: NTE_BAD_LEN
 
24384
//
 
24385
// MessageText:
 
24386
//
 
24387
//  Bad Length.
 
24388
//
 
24389
  NTE_BAD_LEN = HRESULT($80090004);
 
24390
  {$EXTERNALSYM NTE_BAD_LEN}
 
24391
 
 
24392
//
 
24393
// MessageId: NTE_BAD_DATA
 
24394
//
 
24395
// MessageText:
 
24396
//
 
24397
//  Bad Data.
 
24398
//
 
24399
  NTE_BAD_DATA = HRESULT($80090005);
 
24400
  {$EXTERNALSYM NTE_BAD_DATA}
 
24401
 
 
24402
//
 
24403
// MessageId: NTE_BAD_SIGNATURE
 
24404
//
 
24405
// MessageText:
 
24406
//
 
24407
//  Invalid Signature.
 
24408
//
 
24409
  NTE_BAD_SIGNATURE = HRESULT($80090006);
 
24410
  {$EXTERNALSYM NTE_BAD_SIGNATURE}
 
24411
 
 
24412
//
 
24413
// MessageId: NTE_BAD_VER
 
24414
//
 
24415
// MessageText:
 
24416
//
 
24417
//  Bad Version of provider.
 
24418
//
 
24419
  NTE_BAD_VER = HRESULT($80090007);
 
24420
  {$EXTERNALSYM NTE_BAD_VER}
 
24421
 
 
24422
//
 
24423
// MessageId: NTE_BAD_ALGID
 
24424
//
 
24425
// MessageText:
 
24426
//
 
24427
//  Invalid algorithm specified.
 
24428
//
 
24429
  NTE_BAD_ALGID = HRESULT($80090008);
 
24430
  {$EXTERNALSYM NTE_BAD_ALGID}
 
24431
 
 
24432
//
 
24433
// MessageId: NTE_BAD_FLAGS
 
24434
//
 
24435
// MessageText:
 
24436
//
 
24437
//  Invalid flags specified.
 
24438
//
 
24439
  NTE_BAD_FLAGS = HRESULT($80090009);
 
24440
  {$EXTERNALSYM NTE_BAD_FLAGS}
 
24441
 
 
24442
//
 
24443
// MessageId: NTE_BAD_TYPE
 
24444
//
 
24445
// MessageText:
 
24446
//
 
24447
//  Invalid type specified.
 
24448
//
 
24449
  NTE_BAD_TYPE = HRESULT($8009000A);
 
24450
  {$EXTERNALSYM NTE_BAD_TYPE}
 
24451
 
 
24452
//
 
24453
// MessageId: NTE_BAD_KEY_STATE
 
24454
//
 
24455
// MessageText:
 
24456
//
 
24457
//  Key not valid for use in specified state.
 
24458
//
 
24459
  NTE_BAD_KEY_STATE = HRESULT($8009000B);
 
24460
  {$EXTERNALSYM NTE_BAD_KEY_STATE}
 
24461
 
 
24462
//
 
24463
// MessageId: NTE_BAD_HASH_STATE
 
24464
//
 
24465
// MessageText:
 
24466
//
 
24467
//  Hash not valid for use in specified state.
 
24468
//
 
24469
  NTE_BAD_HASH_STATE = HRESULT($8009000C);
 
24470
  {$EXTERNALSYM NTE_BAD_HASH_STATE}
 
24471
 
 
24472
//
 
24473
// MessageId: NTE_NO_KEY
 
24474
//
 
24475
// MessageText:
 
24476
//
 
24477
//  Key does not exist.
 
24478
//
 
24479
  NTE_NO_KEY = HRESULT($8009000D);
 
24480
  {$EXTERNALSYM NTE_NO_KEY}
 
24481
 
 
24482
//
 
24483
// MessageId: NTE_NO_MEMORY
 
24484
//
 
24485
// MessageText:
 
24486
//
 
24487
//  Insufficient memory available for the operation.
 
24488
//
 
24489
  NTE_NO_MEMORY = HRESULT($8009000E);
 
24490
  {$EXTERNALSYM NTE_NO_MEMORY}
 
24491
 
 
24492
//
 
24493
// MessageId: NTE_EXISTS
 
24494
//
 
24495
// MessageText:
 
24496
//
 
24497
//  Object already exists.
 
24498
//
 
24499
  NTE_EXISTS = HRESULT($8009000F);
 
24500
  {$EXTERNALSYM NTE_EXISTS}
 
24501
 
 
24502
//
 
24503
// MessageId: NTE_PERM
 
24504
//
 
24505
// MessageText:
 
24506
//
 
24507
//  Access denied.
 
24508
//
 
24509
  NTE_PERM = HRESULT($80090010);
 
24510
  {$EXTERNALSYM NTE_PERM}
 
24511
 
 
24512
//
 
24513
// MessageId: NTE_NOT_FOUND
 
24514
//
 
24515
// MessageText:
 
24516
//
 
24517
//  Object was not found.
 
24518
//
 
24519
  NTE_NOT_FOUND = HRESULT($80090011);
 
24520
  {$EXTERNALSYM NTE_NOT_FOUND}
 
24521
 
 
24522
//
 
24523
// MessageId: NTE_DOUBLE_ENCRYPT
 
24524
//
 
24525
// MessageText:
 
24526
//
 
24527
//  Data already encrypted.
 
24528
//
 
24529
  NTE_DOUBLE_ENCRYPT = HRESULT($80090012);
 
24530
  {$EXTERNALSYM NTE_DOUBLE_ENCRYPT}
 
24531
 
 
24532
//
 
24533
// MessageId: NTE_BAD_PROVIDER
 
24534
//
 
24535
// MessageText:
 
24536
//
 
24537
//  Invalid provider specified.
 
24538
//
 
24539
  NTE_BAD_PROVIDER = HRESULT($80090013);
 
24540
  {$EXTERNALSYM NTE_BAD_PROVIDER}
 
24541
 
 
24542
//
 
24543
// MessageId: NTE_BAD_PROV_TYPE
 
24544
//
 
24545
// MessageText:
 
24546
//
 
24547
//  Invalid provider type specified.
 
24548
//
 
24549
  NTE_BAD_PROV_TYPE = HRESULT($80090014);
 
24550
  {$EXTERNALSYM NTE_BAD_PROV_TYPE}
 
24551
 
 
24552
//
 
24553
// MessageId: NTE_BAD_PUBLIC_KEY
 
24554
//
 
24555
// MessageText:
 
24556
//
 
24557
//  Provider's public key is invalid.
 
24558
//
 
24559
  NTE_BAD_PUBLIC_KEY = HRESULT($80090015);
 
24560
  {$EXTERNALSYM NTE_BAD_PUBLIC_KEY}
 
24561
 
 
24562
//
 
24563
// MessageId: NTE_BAD_KEYSET
 
24564
//
 
24565
// MessageText:
 
24566
//
 
24567
//  Keyset does not exist
 
24568
//
 
24569
  NTE_BAD_KEYSET = HRESULT($80090016);
 
24570
  {$EXTERNALSYM NTE_BAD_KEYSET}
 
24571
 
 
24572
//
 
24573
// MessageId: NTE_PROV_TYPE_NOT_DEF
 
24574
//
 
24575
// MessageText:
 
24576
//
 
24577
//  Provider type not defined.
 
24578
//
 
24579
  NTE_PROV_TYPE_NOT_DEF = HRESULT($80090017);
 
24580
  {$EXTERNALSYM NTE_PROV_TYPE_NOT_DEF}
 
24581
 
 
24582
//
 
24583
// MessageId: NTE_PROV_TYPE_ENTRY_BAD
 
24584
//
 
24585
// MessageText:
 
24586
//
 
24587
//  Provider type as registered is invalid.
 
24588
//
 
24589
  NTE_PROV_TYPE_ENTRY_BAD = HRESULT($80090018);
 
24590
  {$EXTERNALSYM NTE_PROV_TYPE_ENTRY_BAD}
 
24591
 
 
24592
//
 
24593
// MessageId: NTE_KEYSET_NOT_DEF
 
24594
//
 
24595
// MessageText:
 
24596
//
 
24597
//  The keyset is not defined.
 
24598
//
 
24599
  NTE_KEYSET_NOT_DEF = HRESULT($80090019);
 
24600
  {$EXTERNALSYM NTE_KEYSET_NOT_DEF}
 
24601
 
 
24602
//
 
24603
// MessageId: NTE_KEYSET_ENTRY_BAD
 
24604
//
 
24605
// MessageText:
 
24606
//
 
24607
//  Keyset as registered is invalid.
 
24608
//
 
24609
  NTE_KEYSET_ENTRY_BAD = HRESULT($8009001A);
 
24610
  {$EXTERNALSYM NTE_KEYSET_ENTRY_BAD}
 
24611
 
 
24612
//
 
24613
// MessageId: NTE_PROV_TYPE_NO_MATCH
 
24614
//
 
24615
// MessageText:
 
24616
//
 
24617
//  Provider type does not match registered value.
 
24618
//
 
24619
  NTE_PROV_TYPE_NO_MATCH = HRESULT($8009001B);
 
24620
  {$EXTERNALSYM NTE_PROV_TYPE_NO_MATCH}
 
24621
 
 
24622
//
 
24623
// MessageId: NTE_SIGNATURE_FILE_BAD
 
24624
//
 
24625
// MessageText:
 
24626
//
 
24627
//  The digital signature file is corrupt.
 
24628
//
 
24629
  NTE_SIGNATURE_FILE_BAD = HRESULT($8009001C);
 
24630
  {$EXTERNALSYM NTE_SIGNATURE_FILE_BAD}
 
24631
 
 
24632
//
 
24633
// MessageId: NTE_PROVIDER_DLL_FAIL
 
24634
//
 
24635
// MessageText:
 
24636
//
 
24637
//  Provider DLL failed to initialize correctly.
 
24638
//
 
24639
  NTE_PROVIDER_DLL_FAIL = HRESULT($8009001D);
 
24640
  {$EXTERNALSYM NTE_PROVIDER_DLL_FAIL}
 
24641
 
 
24642
//
 
24643
// MessageId: NTE_PROV_DLL_NOT_FOUND
 
24644
//
 
24645
// MessageText:
 
24646
//
 
24647
//  Provider DLL could not be found.
 
24648
//
 
24649
  NTE_PROV_DLL_NOT_FOUND = HRESULT($8009001E);
 
24650
  {$EXTERNALSYM NTE_PROV_DLL_NOT_FOUND}
 
24651
 
 
24652
//
 
24653
// MessageId: NTE_BAD_KEYSET_PARAM
 
24654
//
 
24655
// MessageText:
 
24656
//
 
24657
//  The Keyset parameter is invalid.
 
24658
//
 
24659
  NTE_BAD_KEYSET_PARAM = HRESULT($8009001F);
 
24660
  {$EXTERNALSYM NTE_BAD_KEYSET_PARAM}
 
24661
 
 
24662
//
 
24663
// MessageId: NTE_FAIL
 
24664
//
 
24665
// MessageText:
 
24666
//
 
24667
//  An internal error occurred.
 
24668
//
 
24669
  NTE_FAIL = HRESULT($80090020);
 
24670
  {$EXTERNALSYM NTE_FAIL}
 
24671
 
 
24672
//
 
24673
// MessageId: NTE_SYS_ERR
 
24674
//
 
24675
// MessageText:
 
24676
//
 
24677
//  A base error occurred.
 
24678
//
 
24679
  NTE_SYS_ERR = HRESULT($80090021);
 
24680
  {$EXTERNALSYM NTE_SYS_ERR}
 
24681
 
 
24682
//
 
24683
// MessageId: NTE_SILENT_CONTEXT
 
24684
//
 
24685
// MessageText:
 
24686
//
 
24687
//  Provider could not perform the action since the context was acquired as silent.
 
24688
//
 
24689
  NTE_SILENT_CONTEXT = HRESULT($80090022);
 
24690
  {$EXTERNALSYM NTE_SILENT_CONTEXT}
 
24691
 
 
24692
//
 
24693
// MessageId: NTE_TOKEN_KEYSET_STORAGE_FULL
 
24694
//
 
24695
// MessageText:
 
24696
//
 
24697
//  The security token does not have storage space available for an additional container.
 
24698
//
 
24699
  NTE_TOKEN_KEYSET_STORAGE_FULL = HRESULT($80090023);
 
24700
  {$EXTERNALSYM NTE_TOKEN_KEYSET_STORAGE_FULL}
 
24701
 
 
24702
//
 
24703
// MessageId: NTE_TEMPORARY_PROFILE
 
24704
//
 
24705
// MessageText:
 
24706
//
 
24707
//  The profile for the user is a temporary profile.
 
24708
//
 
24709
  NTE_TEMPORARY_PROFILE = HRESULT($80090024);
 
24710
  {$EXTERNALSYM NTE_TEMPORARY_PROFILE}
 
24711
 
 
24712
//
 
24713
// MessageId: NTE_FIXEDPARAMETER
 
24714
//
 
24715
// MessageText:
 
24716
//
 
24717
//  The key parameters could not be set because the CSP uses fixed parameters.
 
24718
//
 
24719
  NTE_FIXEDPARAMETER = HRESULT($80090025);
 
24720
  {$EXTERNALSYM NTE_FIXEDPARAMETER}
 
24721
 
 
24722
//
 
24723
// MessageId: SEC_E_INSUFFICIENT_MEMORY
 
24724
//
 
24725
// MessageText:
 
24726
//
 
24727
//  Not enough memory is available to complete this request
 
24728
//
 
24729
  SEC_E_INSUFFICIENT_MEMORY = HRESULT($80090300);
 
24730
  {$EXTERNALSYM SEC_E_INSUFFICIENT_MEMORY}
 
24731
 
 
24732
//
 
24733
// MessageId: SEC_E_INVALID_HANDLE
 
24734
//
 
24735
// MessageText:
 
24736
//
 
24737
//  The handle specified is invalid
 
24738
//
 
24739
  SEC_E_INVALID_HANDLE = HRESULT($80090301);
 
24740
  {$EXTERNALSYM SEC_E_INVALID_HANDLE}
 
24741
 
 
24742
//
 
24743
// MessageId: SEC_E_UNSUPPORTED_FUNCTION
 
24744
//
 
24745
// MessageText:
 
24746
//
 
24747
//  The function requested is not supported
 
24748
//
 
24749
  SEC_E_UNSUPPORTED_FUNCTION = HRESULT($80090302);
 
24750
  {$EXTERNALSYM SEC_E_UNSUPPORTED_FUNCTION}
 
24751
 
 
24752
//
 
24753
// MessageId: SEC_E_TARGET_UNKNOWN
 
24754
//
 
24755
// MessageText:
 
24756
//
 
24757
//  The specified target is unknown or unreachable
 
24758
//
 
24759
  SEC_E_TARGET_UNKNOWN = HRESULT($80090303);
 
24760
  {$EXTERNALSYM SEC_E_TARGET_UNKNOWN}
 
24761
 
 
24762
//
 
24763
// MessageId: SEC_E_INTERNAL_ERROR
 
24764
//
 
24765
// MessageText:
 
24766
//
 
24767
//  The Local Security Authority cannot be contacted
 
24768
//
 
24769
  SEC_E_INTERNAL_ERROR = HRESULT($80090304);
 
24770
  {$EXTERNALSYM SEC_E_INTERNAL_ERROR}
 
24771
 
 
24772
//
 
24773
// MessageId: SEC_E_SECPKG_NOT_FOUND
 
24774
//
 
24775
// MessageText:
 
24776
//
 
24777
//  The requested security package does not exist
 
24778
//
 
24779
  SEC_E_SECPKG_NOT_FOUND = HRESULT($80090305);
 
24780
  {$EXTERNALSYM SEC_E_SECPKG_NOT_FOUND}
 
24781
 
 
24782
//
 
24783
// MessageId: SEC_E_NOT_OWNER
 
24784
//
 
24785
// MessageText:
 
24786
//
 
24787
//  The caller is not the owner of the desired credentials
 
24788
//
 
24789
  SEC_E_NOT_OWNER = HRESULT($80090306);
 
24790
  {$EXTERNALSYM SEC_E_NOT_OWNER}
 
24791
 
 
24792
//
 
24793
// MessageId: SEC_E_CANNOT_INSTALL
 
24794
//
 
24795
// MessageText:
 
24796
//
 
24797
//  The security package failed to initialize, and cannot be installed
 
24798
//
 
24799
  SEC_E_CANNOT_INSTALL = HRESULT($80090307);
 
24800
  {$EXTERNALSYM SEC_E_CANNOT_INSTALL}
 
24801
 
 
24802
//
 
24803
// MessageId: SEC_E_INVALID_TOKEN
 
24804
//
 
24805
// MessageText:
 
24806
//
 
24807
//  The token supplied to the function is invalid
 
24808
//
 
24809
  SEC_E_INVALID_TOKEN = HRESULT($80090308);
 
24810
  {$EXTERNALSYM SEC_E_INVALID_TOKEN}
 
24811
 
 
24812
//
 
24813
// MessageId: SEC_E_CANNOT_PACK
 
24814
//
 
24815
// MessageText:
 
24816
//
 
24817
//  The security package is not able to marshall the logon buffer, so the logon attempt has failed
 
24818
//
 
24819
  SEC_E_CANNOT_PACK = HRESULT($80090309);
 
24820
  {$EXTERNALSYM SEC_E_CANNOT_PACK}
 
24821
 
 
24822
//
 
24823
// MessageId: SEC_E_QOP_NOT_SUPPORTED
 
24824
//
 
24825
// MessageText:
 
24826
//
 
24827
//  The per-message Quality of Protection is not supported by the security package
 
24828
//
 
24829
  SEC_E_QOP_NOT_SUPPORTED = HRESULT($8009030A);
 
24830
  {$EXTERNALSYM SEC_E_QOP_NOT_SUPPORTED}
 
24831
 
 
24832
//
 
24833
// MessageId: SEC_E_NO_IMPERSONATION
 
24834
//
 
24835
// MessageText:
 
24836
//
 
24837
//  The security context does not allow impersonation of the client
 
24838
//
 
24839
  SEC_E_NO_IMPERSONATION = HRESULT($8009030B);
 
24840
  {$EXTERNALSYM SEC_E_NO_IMPERSONATION}
 
24841
 
 
24842
//
 
24843
// MessageId: SEC_E_LOGON_DENIED
 
24844
//
 
24845
// MessageText:
 
24846
//
 
24847
//  The logon attempt failed
 
24848
//
 
24849
  SEC_E_LOGON_DENIED = HRESULT($8009030C);
 
24850
  {$EXTERNALSYM SEC_E_LOGON_DENIED}
 
24851
 
 
24852
//
 
24853
// MessageId: SEC_E_UNKNOWN_CREDENTIALS
 
24854
//
 
24855
// MessageText:
 
24856
//
 
24857
//  The credentials supplied to the package were not recognized
 
24858
//
 
24859
  SEC_E_UNKNOWN_CREDENTIALS = HRESULT($8009030D);
 
24860
  {$EXTERNALSYM SEC_E_UNKNOWN_CREDENTIALS}
 
24861
 
 
24862
//
 
24863
// MessageId: SEC_E_NO_CREDENTIALS
 
24864
//
 
24865
// MessageText:
 
24866
//
 
24867
//  No credentials are available in the security package
 
24868
//
 
24869
  SEC_E_NO_CREDENTIALS = HRESULT($8009030E);
 
24870
  {$EXTERNALSYM SEC_E_NO_CREDENTIALS}
 
24871
 
 
24872
//
 
24873
// MessageId: SEC_E_MESSAGE_ALTERED
 
24874
//
 
24875
// MessageText:
 
24876
//
 
24877
//  The message or signature supplied for verification has been altered
 
24878
//
 
24879
  SEC_E_MESSAGE_ALTERED = HRESULT($8009030F);
 
24880
  {$EXTERNALSYM SEC_E_MESSAGE_ALTERED}
 
24881
 
 
24882
//
 
24883
// MessageId: SEC_E_OUT_OF_SEQUENCE
 
24884
//
 
24885
// MessageText:
 
24886
//
 
24887
//  The message supplied for verification is out of sequence
 
24888
//
 
24889
  SEC_E_OUT_OF_SEQUENCE = HRESULT($80090310);
 
24890
  {$EXTERNALSYM SEC_E_OUT_OF_SEQUENCE}
 
24891
 
 
24892
//
 
24893
// MessageId: SEC_E_NO_AUTHENTICATING_AUTHORITY
 
24894
//
 
24895
// MessageText:
 
24896
//
 
24897
//  No authority could be contacted for authentication.
 
24898
//
 
24899
  SEC_E_NO_AUTHENTICATING_AUTHORITY = HRESULT($80090311);
 
24900
  {$EXTERNALSYM SEC_E_NO_AUTHENTICATING_AUTHORITY}
 
24901
 
 
24902
//
 
24903
// MessageId: SEC_I_CONTINUE_NEEDED
 
24904
//
 
24905
// MessageText:
 
24906
//
 
24907
//  The function completed successfully, but must be called again to complete the context
 
24908
//
 
24909
  SEC_I_CONTINUE_NEEDED = HRESULT($00090312);
 
24910
  {$EXTERNALSYM SEC_I_CONTINUE_NEEDED}
 
24911
 
 
24912
//
 
24913
// MessageId: SEC_I_COMPLETE_NEEDED
 
24914
//
 
24915
// MessageText:
 
24916
//
 
24917
//  The function completed successfully, but CompleteToken must be called
 
24918
//
 
24919
  SEC_I_COMPLETE_NEEDED = HRESULT($00090313);
 
24920
  {$EXTERNALSYM SEC_I_COMPLETE_NEEDED}
 
24921
 
 
24922
//
 
24923
// MessageId: SEC_I_COMPLETE_AND_CONTINUE
 
24924
//
 
24925
// MessageText:
 
24926
//
 
24927
//  The function completed successfully, but both CompleteToken and this function must be called to complete the context
 
24928
//
 
24929
  SEC_I_COMPLETE_AND_CONTINUE = HRESULT($00090314);
 
24930
  {$EXTERNALSYM SEC_I_COMPLETE_AND_CONTINUE}
 
24931
 
 
24932
//
 
24933
// MessageId: SEC_I_LOCAL_LOGON
 
24934
//
 
24935
// MessageText:
 
24936
//
 
24937
//  The logon was completed, but no network authority was available. The logon was made using locally known information
 
24938
//
 
24939
  SEC_I_LOCAL_LOGON = HRESULT($00090315);
 
24940
  {$EXTERNALSYM SEC_I_LOCAL_LOGON}
 
24941
 
 
24942
//
 
24943
// MessageId: SEC_E_BAD_PKGID
 
24944
//
 
24945
// MessageText:
 
24946
//
 
24947
//  The requested security package does not exist
 
24948
//
 
24949
  SEC_E_BAD_PKGID = HRESULT($80090316);
 
24950
  {$EXTERNALSYM SEC_E_BAD_PKGID}
 
24951
 
 
24952
//
 
24953
// MessageId: SEC_E_CONTEXT_EXPIRED
 
24954
//
 
24955
// MessageText:
 
24956
//
 
24957
//  The context has expired and can no longer be used.
 
24958
//
 
24959
  SEC_E_CONTEXT_EXPIRED = HRESULT($80090317);
 
24960
  {$EXTERNALSYM SEC_E_CONTEXT_EXPIRED}
 
24961
 
 
24962
//
 
24963
// MessageId: SEC_I_CONTEXT_EXPIRED
 
24964
//
 
24965
// MessageText:
 
24966
//
 
24967
//  The context has expired and can no longer be used.
 
24968
//
 
24969
  SEC_I_CONTEXT_EXPIRED = HRESULT($00090317);
 
24970
  {$EXTERNALSYM SEC_I_CONTEXT_EXPIRED}
 
24971
 
 
24972
//
 
24973
// MessageId: SEC_E_INCOMPLETE_MESSAGE
 
24974
//
 
24975
// MessageText:
 
24976
//
 
24977
//  The supplied message is incomplete.  The signature was not verified.
 
24978
//
 
24979
  SEC_E_INCOMPLETE_MESSAGE = HRESULT($80090318);
 
24980
  {$EXTERNALSYM SEC_E_INCOMPLETE_MESSAGE}
 
24981
 
 
24982
//
 
24983
// MessageId: SEC_E_INCOMPLETE_CREDENTIALS
 
24984
//
 
24985
// MessageText:
 
24986
//
 
24987
//  The credentials supplied were not complete, and could not be verified. The context could not be initialized.
 
24988
//
 
24989
  SEC_E_INCOMPLETE_CREDENTIALS = HRESULT($80090320);
 
24990
  {$EXTERNALSYM SEC_E_INCOMPLETE_CREDENTIALS}
 
24991
 
 
24992
//
 
24993
// MessageId: SEC_E_BUFFER_TOO_SMALL
 
24994
//
 
24995
// MessageText:
 
24996
//
 
24997
//  The buffers supplied to a function was too small.
 
24998
//
 
24999
  SEC_E_BUFFER_TOO_SMALL = HRESULT($80090321);
 
25000
  {$EXTERNALSYM SEC_E_BUFFER_TOO_SMALL}
 
25001
 
 
25002
//
 
25003
// MessageId: SEC_I_INCOMPLETE_CREDENTIALS
 
25004
//
 
25005
// MessageText:
 
25006
//
 
25007
//  The credentials supplied were not complete, and could not be verified. Additional information can be returned from the context.
 
25008
//
 
25009
  SEC_I_INCOMPLETE_CREDENTIALS = HRESULT($00090320);
 
25010
  {$EXTERNALSYM SEC_I_INCOMPLETE_CREDENTIALS}
 
25011
 
 
25012
//
 
25013
// MessageId: SEC_I_RENEGOTIATE
 
25014
//
 
25015
// MessageText:
 
25016
//
 
25017
//  The context data must be renegotiated with the peer.
 
25018
//
 
25019
  SEC_I_RENEGOTIATE = HRESULT($00090321);
 
25020
  {$EXTERNALSYM SEC_I_RENEGOTIATE}
 
25021
 
 
25022
//
 
25023
// MessageId: SEC_E_WRONG_PRINCIPAL
 
25024
//
 
25025
// MessageText:
 
25026
//
 
25027
//  The target principal name is incorrect.
 
25028
//
 
25029
  SEC_E_WRONG_PRINCIPAL = HRESULT($80090322);
 
25030
  {$EXTERNALSYM SEC_E_WRONG_PRINCIPAL}
 
25031
 
 
25032
//
 
25033
// MessageId: SEC_I_NO_LSA_CONTEXT
 
25034
//
 
25035
// MessageText:
 
25036
//
 
25037
//  There is no LSA mode context associated with this context.
 
25038
//
 
25039
  SEC_I_NO_LSA_CONTEXT = HRESULT($00090323);
 
25040
  {$EXTERNALSYM SEC_I_NO_LSA_CONTEXT}
 
25041
 
 
25042
//
 
25043
// MessageId: SEC_E_TIME_SKEW
 
25044
//
 
25045
// MessageText:
 
25046
//
 
25047
//  The clocks on the client and server machines are skewed.
 
25048
//
 
25049
  SEC_E_TIME_SKEW = HRESULT($80090324);
 
25050
  {$EXTERNALSYM SEC_E_TIME_SKEW}
 
25051
 
 
25052
//
 
25053
// MessageId: SEC_E_UNTRUSTED_ROOT
 
25054
//
 
25055
// MessageText:
 
25056
//
 
25057
//  The certificate chain was issued by an authority that is not trusted.
 
25058
//
 
25059
  SEC_E_UNTRUSTED_ROOT = HRESULT($80090325);
 
25060
  {$EXTERNALSYM SEC_E_UNTRUSTED_ROOT}
 
25061
 
 
25062
//
 
25063
// MessageId: SEC_E_ILLEGAL_MESSAGE
 
25064
//
 
25065
// MessageText:
 
25066
//
 
25067
//  The message received was unexpected or badly formatted.
 
25068
//
 
25069
  SEC_E_ILLEGAL_MESSAGE = HRESULT($80090326);
 
25070
  {$EXTERNALSYM SEC_E_ILLEGAL_MESSAGE}
 
25071
 
 
25072
//
 
25073
// MessageId: SEC_E_CERT_UNKNOWN
 
25074
//
 
25075
// MessageText:
 
25076
//
 
25077
//  An unknown error occurred while processing the certificate.
 
25078
//
 
25079
  SEC_E_CERT_UNKNOWN = HRESULT($80090327);
 
25080
  {$EXTERNALSYM SEC_E_CERT_UNKNOWN}
 
25081
 
 
25082
//
 
25083
// MessageId: SEC_E_CERT_EXPIRED
 
25084
//
 
25085
// MessageText:
 
25086
//
 
25087
//  The received certificate has expired.
 
25088
//
 
25089
  SEC_E_CERT_EXPIRED = HRESULT($80090328);
 
25090
  {$EXTERNALSYM SEC_E_CERT_EXPIRED}
 
25091
 
 
25092
//
 
25093
// MessageId: SEC_E_ENCRYPT_FAILURE
 
25094
//
 
25095
// MessageText:
 
25096
//
 
25097
//  The specified data could not be encrypted.
 
25098
//
 
25099
  SEC_E_ENCRYPT_FAILURE = HRESULT($80090329);
 
25100
  {$EXTERNALSYM SEC_E_ENCRYPT_FAILURE}
 
25101
 
 
25102
//
 
25103
// MessageId: SEC_E_DECRYPT_FAILURE
 
25104
//
 
25105
// MessageText:
 
25106
//
 
25107
//  The specified data could not be decrypted.
 
25108
//  
 
25109
//
 
25110
  SEC_E_DECRYPT_FAILURE = HRESULT($80090330);
 
25111
  {$EXTERNALSYM SEC_E_DECRYPT_FAILURE}
 
25112
 
 
25113
//
 
25114
// MessageId: SEC_E_ALGORITHM_MISMATCH
 
25115
//
 
25116
// MessageText:
 
25117
//
 
25118
//  The client and server cannot communicate, because they do not possess a common algorithm.
 
25119
//
 
25120
  SEC_E_ALGORITHM_MISMATCH = HRESULT($80090331);
 
25121
  {$EXTERNALSYM SEC_E_ALGORITHM_MISMATCH}
 
25122
 
 
25123
//
 
25124
// MessageId: SEC_E_SECURITY_QOS_FAILED
 
25125
//
 
25126
// MessageText:
 
25127
//
 
25128
//  The security context could not be established due to a failure in the requested quality of service (e.g. mutual authentication or delegation).
 
25129
//
 
25130
  SEC_E_SECURITY_QOS_FAILED = HRESULT($80090332);
 
25131
  {$EXTERNALSYM SEC_E_SECURITY_QOS_FAILED}
 
25132
 
 
25133
//
 
25134
// MessageId: SEC_E_UNFINISHED_CONTEXT_DELETED
 
25135
//
 
25136
// MessageText:
 
25137
//
 
25138
//  A security context was deleted before the context was completed.  This is considered a logon failure.
 
25139
//
 
25140
  SEC_E_UNFINISHED_CONTEXT_DELETED = HRESULT($80090333);
 
25141
  {$EXTERNALSYM SEC_E_UNFINISHED_CONTEXT_DELETED}
 
25142
 
 
25143
//
 
25144
// MessageId: SEC_E_NO_TGT_REPLY
 
25145
//
 
25146
// MessageText:
 
25147
//
 
25148
//  The client is trying to negotiate a context and the server requires user-to-user but didn't send a TGT reply.
 
25149
//
 
25150
  SEC_E_NO_TGT_REPLY = HRESULT($80090334);
 
25151
  {$EXTERNALSYM SEC_E_NO_TGT_REPLY}
 
25152
 
 
25153
//
 
25154
// MessageId: SEC_E_NO_IP_ADDRESSES
 
25155
//
 
25156
// MessageText:
 
25157
//
 
25158
//  Unable to accomplish the requested task because the local machine does not have any IP addresses.
 
25159
//
 
25160
  SEC_E_NO_IP_ADDRESSES = HRESULT($80090335);
 
25161
  {$EXTERNALSYM SEC_E_NO_IP_ADDRESSES}
 
25162
 
 
25163
//
 
25164
// MessageId: SEC_E_WRONG_CREDENTIAL_HANDLE
 
25165
//
 
25166
// MessageText:
 
25167
//
 
25168
//  The supplied credential handle does not match the credential associated with the security context.
 
25169
//
 
25170
  SEC_E_WRONG_CREDENTIAL_HANDLE = HRESULT($80090336);
 
25171
  {$EXTERNALSYM SEC_E_WRONG_CREDENTIAL_HANDLE}
 
25172
 
 
25173
//
 
25174
// MessageId: SEC_E_CRYPTO_SYSTEM_INVALID
 
25175
//
 
25176
// MessageText:
 
25177
//
 
25178
//  The crypto system or checksum function is invalid because a required function is unavailable.
 
25179
//
 
25180
  SEC_E_CRYPTO_SYSTEM_INVALID = HRESULT($80090337);
 
25181
  {$EXTERNALSYM SEC_E_CRYPTO_SYSTEM_INVALID}
 
25182
 
 
25183
//
 
25184
// MessageId: SEC_E_MAX_REFERRALS_EXCEEDED
 
25185
//
 
25186
// MessageText:
 
25187
//
 
25188
//  The number of maximum ticket referrals has been exceeded.
 
25189
//
 
25190
  SEC_E_MAX_REFERRALS_EXCEEDED = HRESULT($80090338);
 
25191
  {$EXTERNALSYM SEC_E_MAX_REFERRALS_EXCEEDED}
 
25192
 
 
25193
//
 
25194
// MessageId: SEC_E_MUST_BE_KDC
 
25195
//
 
25196
// MessageText:
 
25197
//
 
25198
//  The local machine must be a Kerberos KDC (domain controller) and it is not.
 
25199
//
 
25200
  SEC_E_MUST_BE_KDC = HRESULT($80090339);
 
25201
  {$EXTERNALSYM SEC_E_MUST_BE_KDC}
 
25202
 
 
25203
//
 
25204
// MessageId: SEC_E_STRONG_CRYPTO_NOT_SUPPORTED
 
25205
//
 
25206
// MessageText:
 
25207
//
 
25208
//  The other end of the security negotiation is requires strong crypto but it is not supported on the local machine.
 
25209
//
 
25210
  SEC_E_STRONG_CRYPTO_NOT_SUPPORTED = HRESULT($8009033A);
 
25211
  {$EXTERNALSYM SEC_E_STRONG_CRYPTO_NOT_SUPPORTED}
 
25212
 
 
25213
//
 
25214
// MessageId: SEC_E_TOO_MANY_PRINCIPALS
 
25215
//
 
25216
// MessageText:
 
25217
//
 
25218
//  The KDC reply contained more than one principal name.
 
25219
//
 
25220
  SEC_E_TOO_MANY_PRINCIPALS = HRESULT($8009033B);
 
25221
  {$EXTERNALSYM SEC_E_TOO_MANY_PRINCIPALS}
 
25222
 
 
25223
//
 
25224
// MessageId: SEC_E_NO_PA_DATA
 
25225
//
 
25226
// MessageText:
 
25227
//
 
25228
//  Expected to find PA data for a hint of what etype to use, but it was not found.
 
25229
//
 
25230
  SEC_E_NO_PA_DATA = HRESULT($8009033C);
 
25231
  {$EXTERNALSYM SEC_E_NO_PA_DATA}
 
25232
 
 
25233
//
 
25234
// MessageId: SEC_E_PKINIT_NAME_MISMATCH
 
25235
//
 
25236
// MessageText:
 
25237
//
 
25238
//  The client certificate does not contain a valid UPN, or does not match the client name 
 
25239
//  in the logon request.  Please contact your administrator.
 
25240
//
 
25241
  SEC_E_PKINIT_NAME_MISMATCH = HRESULT($8009033D);
 
25242
  {$EXTERNALSYM SEC_E_PKINIT_NAME_MISMATCH}
 
25243
 
 
25244
//
 
25245
// MessageId: SEC_E_SMARTCARD_LOGON_REQUIRED
 
25246
//
 
25247
// MessageText:
 
25248
//
 
25249
//  Smartcard logon is required and was not used.
 
25250
//
 
25251
  SEC_E_SMARTCARD_LOGON_REQUIRED = HRESULT($8009033E);
 
25252
  {$EXTERNALSYM SEC_E_SMARTCARD_LOGON_REQUIRED}
 
25253
 
 
25254
//
 
25255
// MessageId: SEC_E_SHUTDOWN_IN_PROGRESS
 
25256
//
 
25257
// MessageText:
 
25258
//
 
25259
//  A system shutdown is in progress.
 
25260
//
 
25261
  SEC_E_SHUTDOWN_IN_PROGRESS = HRESULT($8009033F);
 
25262
  {$EXTERNALSYM SEC_E_SHUTDOWN_IN_PROGRESS}
 
25263
 
 
25264
//
 
25265
// MessageId: SEC_E_KDC_INVALID_REQUEST
 
25266
//
 
25267
// MessageText:
 
25268
//
 
25269
//  An invalid request was sent to the KDC.
 
25270
//
 
25271
  SEC_E_KDC_INVALID_REQUEST = HRESULT($80090340);
 
25272
  {$EXTERNALSYM SEC_E_KDC_INVALID_REQUEST}
 
25273
 
 
25274
//
 
25275
// MessageId: SEC_E_KDC_UNABLE_TO_REFER
 
25276
//
 
25277
// MessageText:
 
25278
//
 
25279
//  The KDC was unable to generate a referral for the service requested.
 
25280
//
 
25281
  SEC_E_KDC_UNABLE_TO_REFER = HRESULT($80090341);
 
25282
  {$EXTERNALSYM SEC_E_KDC_UNABLE_TO_REFER}
 
25283
 
 
25284
//
 
25285
// MessageId: SEC_E_KDC_UNKNOWN_ETYPE
 
25286
//
 
25287
// MessageText:
 
25288
//
 
25289
//  The encryption type requested is not supported by the KDC.
 
25290
//
 
25291
  SEC_E_KDC_UNKNOWN_ETYPE = HRESULT($80090342);
 
25292
  {$EXTERNALSYM SEC_E_KDC_UNKNOWN_ETYPE}
 
25293
 
 
25294
//
 
25295
// MessageId: SEC_E_UNSUPPORTED_PREAUTH
 
25296
//
 
25297
// MessageText:
 
25298
//
 
25299
//  An unsupported preauthentication mechanism was presented to the kerberos package.
 
25300
//
 
25301
  SEC_E_UNSUPPORTED_PREAUTH = HRESULT($80090343);
 
25302
  {$EXTERNALSYM SEC_E_UNSUPPORTED_PREAUTH}
 
25303
 
 
25304
//
 
25305
// MessageId: SEC_E_DELEGATION_REQUIRED
 
25306
//
 
25307
// MessageText:
 
25308
//
 
25309
//  The requested operation requires delegation to be enabled on the machine.
 
25310
//
 
25311
  SEC_E_DELEGATION_REQUIRED = HRESULT($80090345);
 
25312
  {$EXTERNALSYM SEC_E_DELEGATION_REQUIRED}
 
25313
 
 
25314
//
 
25315
// MessageId: SEC_E_BAD_BINDINGS
 
25316
//
 
25317
// MessageText:
 
25318
//
 
25319
//  Client's supplied SSPI channel bindings were incorrect.
 
25320
//
 
25321
  SEC_E_BAD_BINDINGS = HRESULT($80090346);
 
25322
  {$EXTERNALSYM SEC_E_BAD_BINDINGS}
 
25323
 
 
25324
//
 
25325
// MessageId: SEC_E_MULTIPLE_ACCOUNTS
 
25326
//
 
25327
// MessageText:
 
25328
//
 
25329
//  The received certificate was mapped to multiple accounts.
 
25330
//
 
25331
  SEC_E_MULTIPLE_ACCOUNTS = HRESULT($80090347);
 
25332
  {$EXTERNALSYM SEC_E_MULTIPLE_ACCOUNTS}
 
25333
 
 
25334
//
 
25335
// MessageId: SEC_E_NO_KERB_KEY
 
25336
//
 
25337
// MessageText:
 
25338
//
 
25339
//  SEC_E_NO_KERB_KEY
 
25340
//
 
25341
  SEC_E_NO_KERB_KEY = HRESULT($80090348);
 
25342
  {$EXTERNALSYM SEC_E_NO_KERB_KEY}
 
25343
 
 
25344
//
 
25345
// MessageId: SEC_E_CERT_WRONG_USAGE
 
25346
//
 
25347
// MessageText:
 
25348
//
 
25349
//  The certificate is not valid for the requested usage.
 
25350
//
 
25351
  SEC_E_CERT_WRONG_USAGE = HRESULT($80090349);
 
25352
  {$EXTERNALSYM SEC_E_CERT_WRONG_USAGE}
 
25353
 
 
25354
//
 
25355
// MessageId: SEC_E_DOWNGRADE_DETECTED
 
25356
//
 
25357
// MessageText:
 
25358
//
 
25359
//  The system detected a possible attempt to compromise security.  Please ensure that you can contact the server that authenticated you.
 
25360
//
 
25361
  SEC_E_DOWNGRADE_DETECTED = HRESULT($80090350);
 
25362
  {$EXTERNALSYM SEC_E_DOWNGRADE_DETECTED}
 
25363
 
 
25364
//
 
25365
// MessageId: SEC_E_SMARTCARD_CERT_REVOKED
 
25366
//
 
25367
// MessageText:
 
25368
//
 
25369
//  The smartcard certificate used for authentication has been revoked.
 
25370
//  Please contact your system administrator.  There may be additional information in the
 
25371
//  event log.
 
25372
//
 
25373
  SEC_E_SMARTCARD_CERT_REVOKED = HRESULT($80090351);
 
25374
  {$EXTERNALSYM SEC_E_SMARTCARD_CERT_REVOKED}
 
25375
 
 
25376
//
 
25377
// MessageId: SEC_E_ISSUING_CA_UNTRUSTED
 
25378
//
 
25379
// MessageText:
 
25380
//
 
25381
//  An untrusted certificate authority was detected While processing the
 
25382
//  smartcard certificate used for authentication.  Please contact your system
 
25383
//  administrator.
 
25384
//
 
25385
  SEC_E_ISSUING_CA_UNTRUSTED = HRESULT($80090352);
 
25386
  {$EXTERNALSYM SEC_E_ISSUING_CA_UNTRUSTED}
 
25387
 
 
25388
//
 
25389
// MessageId: SEC_E_REVOCATION_OFFLINE_C
 
25390
//
 
25391
// MessageText:
 
25392
//
 
25393
//  The revocation status of the smartcard certificate used for
 
25394
//  authentication could not be determined. Please contact your system administrator.
 
25395
//
 
25396
  SEC_E_REVOCATION_OFFLINE_C = HRESULT($80090353);
 
25397
  {$EXTERNALSYM SEC_E_REVOCATION_OFFLINE_C}
 
25398
 
 
25399
//
 
25400
// MessageId: SEC_E_PKINIT_CLIENT_FAILURE
 
25401
//
 
25402
// MessageText:
 
25403
//
 
25404
//  The smartcard certificate used for authentication was not trusted.  Please
 
25405
//  contact your system administrator.
 
25406
//
 
25407
  SEC_E_PKINIT_CLIENT_FAILURE = HRESULT($80090354);
 
25408
  {$EXTERNALSYM SEC_E_PKINIT_CLIENT_FAILURE}
 
25409
 
 
25410
//
 
25411
// MessageId: SEC_E_SMARTCARD_CERT_EXPIRED
 
25412
//
 
25413
// MessageText:
 
25414
//
 
25415
//  The smartcard certificate used for authentication has expired.  Please
 
25416
//  contact your system administrator.
 
25417
//
 
25418
  SEC_E_SMARTCARD_CERT_EXPIRED = HRESULT($80090355);
 
25419
  {$EXTERNALSYM SEC_E_SMARTCARD_CERT_EXPIRED}
 
25420
 
 
25421
//
 
25422
// MessageId: SEC_E_NO_S4U_PROT_SUPPORT
 
25423
//
 
25424
// MessageText:
 
25425
//
 
25426
//  The Kerberos subsystem encountered an error.  A service for user protocol request was made 
 
25427
//  against a domain controller which does not support service for user.
 
25428
//
 
25429
  SEC_E_NO_S4U_PROT_SUPPORT = HRESULT($80090356);
 
25430
  {$EXTERNALSYM SEC_E_NO_S4U_PROT_SUPPORT}
 
25431
 
 
25432
//
 
25433
// MessageId: SEC_E_CROSSREALM_DELEGATION_FAILURE
 
25434
//
 
25435
// MessageText:
 
25436
//
 
25437
//  An attempt was made by this server to make a Kerberos constrained delegation request for a target
 
25438
//  outside of the server's realm.  This is not supported, and indicates a misconfiguration on this
 
25439
//  server's allowed to delegate to list.  Please contact your administrator.
 
25440
//
 
25441
  SEC_E_CROSSREALM_DELEGATION_FAILURE = HRESULT($80090357);
 
25442
  {$EXTERNALSYM SEC_E_CROSSREALM_DELEGATION_FAILURE}
 
25443
 
 
25444
//
 
25445
// MessageId: SEC_E_REVOCATION_OFFLINE_KDC
 
25446
//
 
25447
// MessageText:
 
25448
//
 
25449
//  The revocation status of the domain controller certificate used for smartcard
 
25450
//  authentication could not be determined.  There is additional information in the system event
 
25451
//  log. Please contact your system administrator.
 
25452
//
 
25453
  SEC_E_REVOCATION_OFFLINE_KDC = HRESULT($80090358);
 
25454
  {$EXTERNALSYM SEC_E_REVOCATION_OFFLINE_KDC}
 
25455
 
 
25456
//
 
25457
// MessageId: SEC_E_ISSUING_CA_UNTRUSTED_KDC
 
25458
//
 
25459
// MessageText:
 
25460
//
 
25461
//  An untrusted certificate authority was detected while processing the
 
25462
//  domain controller certificate used for authentication.  There is additional information in
 
25463
//  the system event log.  Please contact your system administrator.
 
25464
//
 
25465
  SEC_E_ISSUING_CA_UNTRUSTED_KDC = HRESULT($80090359);
 
25466
  {$EXTERNALSYM SEC_E_ISSUING_CA_UNTRUSTED_KDC}
 
25467
 
 
25468
//
 
25469
// MessageId: SEC_E_KDC_CERT_EXPIRED
 
25470
//
 
25471
// MessageText:
 
25472
//
 
25473
//  The domain controller certificate used for smartcard logon has expired.
 
25474
//  Please contact your system administrator with the contents of your system event log.
 
25475
//
 
25476
  SEC_E_KDC_CERT_EXPIRED = HRESULT($8009035A);
 
25477
  {$EXTERNALSYM SEC_E_KDC_CERT_EXPIRED}
 
25478
 
 
25479
//
 
25480
// MessageId: SEC_E_KDC_CERT_REVOKED
 
25481
//
 
25482
// MessageText:
 
25483
//
 
25484
//  The domain controller certificate used for smartcard logon has been revoked.
 
25485
//  Please contact your system administrator with the contents of your system event log.
 
25486
//
 
25487
  SEC_E_KDC_CERT_REVOKED = HRESULT($8009035B);
 
25488
  {$EXTERNALSYM SEC_E_KDC_CERT_REVOKED}
 
25489
 
 
25490
//
 
25491
// Provided for backwards compatibility
 
25492
//
 
25493
 
 
25494
  SEC_E_NO_SPM = SEC_E_INTERNAL_ERROR;
 
25495
  {$EXTERNALSYM SEC_E_NO_SPM}
 
25496
  SEC_E_NOT_SUPPORTED = SEC_E_UNSUPPORTED_FUNCTION;
 
25497
  {$EXTERNALSYM SEC_E_NOT_SUPPORTED}
 
25498
 
 
25499
//
 
25500
// MessageId: CRYPT_E_MSG_ERROR
 
25501
//
 
25502
// MessageText:
 
25503
//
 
25504
//  An error occurred while performing an operation on a cryptographic message.
 
25505
//
 
25506
  CRYPT_E_MSG_ERROR = HRESULT($80091001);
 
25507
  {$EXTERNALSYM CRYPT_E_MSG_ERROR}
 
25508
 
 
25509
//
 
25510
// MessageId: CRYPT_E_UNKNOWN_ALGO
 
25511
//
 
25512
// MessageText:
 
25513
//
 
25514
//  Unknown cryptographic algorithm.
 
25515
//
 
25516
  CRYPT_E_UNKNOWN_ALGO = HRESULT($80091002);
 
25517
  {$EXTERNALSYM CRYPT_E_UNKNOWN_ALGO}
 
25518
 
 
25519
//
 
25520
// MessageId: CRYPT_E_OID_FORMAT
 
25521
//
 
25522
// MessageText:
 
25523
//
 
25524
//  The object identifier is poorly formatted.
 
25525
//
 
25526
  CRYPT_E_OID_FORMAT = HRESULT($80091003);
 
25527
  {$EXTERNALSYM CRYPT_E_OID_FORMAT}
 
25528
 
 
25529
//
 
25530
// MessageId: CRYPT_E_INVALID_MSG_TYPE
 
25531
//
 
25532
// MessageText:
 
25533
//
 
25534
//  Invalid cryptographic message type.
 
25535
//
 
25536
  CRYPT_E_INVALID_MSG_TYPE = HRESULT($80091004);
 
25537
  {$EXTERNALSYM CRYPT_E_INVALID_MSG_TYPE}
 
25538
 
 
25539
//
 
25540
// MessageId: CRYPT_E_UNEXPECTED_ENCODING
 
25541
//
 
25542
// MessageText:
 
25543
//
 
25544
//  Unexpected cryptographic message encoding.
 
25545
//
 
25546
  CRYPT_E_UNEXPECTED_ENCODING = HRESULT($80091005);
 
25547
  {$EXTERNALSYM CRYPT_E_UNEXPECTED_ENCODING}
 
25548
 
 
25549
//
 
25550
// MessageId: CRYPT_E_AUTH_ATTR_MISSING
 
25551
//
 
25552
// MessageText:
 
25553
//
 
25554
//  The cryptographic message does not contain an expected authenticated attribute.
 
25555
//
 
25556
  CRYPT_E_AUTH_ATTR_MISSING = HRESULT($80091006);
 
25557
  {$EXTERNALSYM CRYPT_E_AUTH_ATTR_MISSING}
 
25558
 
 
25559
//
 
25560
// MessageId: CRYPT_E_HASH_VALUE
 
25561
//
 
25562
// MessageText:
 
25563
//
 
25564
//  The hash value is not correct.
 
25565
//
 
25566
  CRYPT_E_HASH_VALUE = HRESULT($80091007);
 
25567
  {$EXTERNALSYM CRYPT_E_HASH_VALUE}
 
25568
 
 
25569
//
 
25570
// MessageId: CRYPT_E_INVALID_INDEX
 
25571
//
 
25572
// MessageText:
 
25573
//
 
25574
//  The index value is not valid.
 
25575
//
 
25576
  CRYPT_E_INVALID_INDEX = HRESULT($80091008);
 
25577
  {$EXTERNALSYM CRYPT_E_INVALID_INDEX}
 
25578
 
 
25579
//
 
25580
// MessageId: CRYPT_E_ALREADY_DECRYPTED
 
25581
//
 
25582
// MessageText:
 
25583
//
 
25584
//  The content of the cryptographic message has already been decrypted.
 
25585
//
 
25586
  CRYPT_E_ALREADY_DECRYPTED = HRESULT($80091009);
 
25587
  {$EXTERNALSYM CRYPT_E_ALREADY_DECRYPTED}
 
25588
 
 
25589
//
 
25590
// MessageId: CRYPT_E_NOT_DECRYPTED
 
25591
//
 
25592
// MessageText:
 
25593
//
 
25594
//  The content of the cryptographic message has not been decrypted yet.
 
25595
//
 
25596
  CRYPT_E_NOT_DECRYPTED = HRESULT($8009100A);
 
25597
  {$EXTERNALSYM CRYPT_E_NOT_DECRYPTED}
 
25598
 
 
25599
//
 
25600
// MessageId: CRYPT_E_RECIPIENT_NOT_FOUND
 
25601
//
 
25602
// MessageText:
 
25603
//
 
25604
//  The enveloped-data message does not contain the specified recipient.
 
25605
//
 
25606
  CRYPT_E_RECIPIENT_NOT_FOUND = HRESULT($8009100B);
 
25607
  {$EXTERNALSYM CRYPT_E_RECIPIENT_NOT_FOUND}
 
25608
 
 
25609
//
 
25610
// MessageId: CRYPT_E_CONTROL_TYPE
 
25611
//
 
25612
// MessageText:
 
25613
//
 
25614
//  Invalid control type.
 
25615
//
 
25616
  CRYPT_E_CONTROL_TYPE = HRESULT($8009100C);
 
25617
  {$EXTERNALSYM CRYPT_E_CONTROL_TYPE}
 
25618
 
 
25619
//
 
25620
// MessageId: CRYPT_E_ISSUER_SERIALNUMBER
 
25621
//
 
25622
// MessageText:
 
25623
//
 
25624
//  Invalid issuer and/or serial number.
 
25625
//
 
25626
  CRYPT_E_ISSUER_SERIALNUMBER = HRESULT($8009100D);
 
25627
  {$EXTERNALSYM CRYPT_E_ISSUER_SERIALNUMBER}
 
25628
 
 
25629
//
 
25630
// MessageId: CRYPT_E_SIGNER_NOT_FOUND
 
25631
//
 
25632
// MessageText:
 
25633
//
 
25634
//  Cannot find the original signer.
 
25635
//
 
25636
  CRYPT_E_SIGNER_NOT_FOUND = HRESULT($8009100E);
 
25637
  {$EXTERNALSYM CRYPT_E_SIGNER_NOT_FOUND}
 
25638
 
 
25639
//
 
25640
// MessageId: CRYPT_E_ATTRIBUTES_MISSING
 
25641
//
 
25642
// MessageText:
 
25643
//
 
25644
//  The cryptographic message does not contain all of the requested attributes.
 
25645
//
 
25646
  CRYPT_E_ATTRIBUTES_MISSING = HRESULT($8009100F);
 
25647
  {$EXTERNALSYM CRYPT_E_ATTRIBUTES_MISSING}
 
25648
 
 
25649
//
 
25650
// MessageId: CRYPT_E_STREAM_MSG_NOT_READY
 
25651
//
 
25652
// MessageText:
 
25653
//
 
25654
//  The streamed cryptographic message is not ready to return data.
 
25655
//
 
25656
  CRYPT_E_STREAM_MSG_NOT_READY = HRESULT($80091010);
 
25657
  {$EXTERNALSYM CRYPT_E_STREAM_MSG_NOT_READY}
 
25658
 
 
25659
//
 
25660
// MessageId: CRYPT_E_STREAM_INSUFFICIENT_DATA
 
25661
//
 
25662
// MessageText:
 
25663
//
 
25664
//  The streamed cryptographic message requires more data to complete the decode operation.
 
25665
//
 
25666
  CRYPT_E_STREAM_INSUFFICIENT_DATA = HRESULT($80091011);
 
25667
  {$EXTERNALSYM CRYPT_E_STREAM_INSUFFICIENT_DATA}
 
25668
 
 
25669
//
 
25670
// MessageId: CRYPT_I_NEW_PROTECTION_REQUIRED
 
25671
//
 
25672
// MessageText:
 
25673
//
 
25674
//  The protected data needs to be re-protected.
 
25675
//
 
25676
  CRYPT_I_NEW_PROTECTION_REQUIRED = HRESULT($00091012);
 
25677
  {$EXTERNALSYM CRYPT_I_NEW_PROTECTION_REQUIRED}
 
25678
 
 
25679
//
 
25680
// MessageId: CRYPT_E_BAD_LEN
 
25681
//
 
25682
// MessageText:
 
25683
//
 
25684
//  The length specified for the output data was insufficient.
 
25685
//
 
25686
  CRYPT_E_BAD_LEN = HRESULT($80092001);
 
25687
  {$EXTERNALSYM CRYPT_E_BAD_LEN}
 
25688
 
 
25689
//
 
25690
// MessageId: CRYPT_E_BAD_ENCODE
 
25691
//
 
25692
// MessageText:
 
25693
//
 
25694
//  An error occurred during encode or decode operation.
 
25695
//
 
25696
  CRYPT_E_BAD_ENCODE = HRESULT($80092002);
 
25697
  {$EXTERNALSYM CRYPT_E_BAD_ENCODE}
 
25698
 
 
25699
//
 
25700
// MessageId: CRYPT_E_FILE_ERROR
 
25701
//
 
25702
// MessageText:
 
25703
//
 
25704
//  An error occurred while reading or writing to a file.
 
25705
//
 
25706
  CRYPT_E_FILE_ERROR = HRESULT($80092003);
 
25707
  {$EXTERNALSYM CRYPT_E_FILE_ERROR}
 
25708
 
 
25709
//
 
25710
// MessageId: CRYPT_E_NOT_FOUND
 
25711
//
 
25712
// MessageText:
 
25713
//
 
25714
//  Cannot find object or property.
 
25715
//
 
25716
  CRYPT_E_NOT_FOUND = HRESULT($80092004);
 
25717
  {$EXTERNALSYM CRYPT_E_NOT_FOUND}
 
25718
 
 
25719
//
 
25720
// MessageId: CRYPT_E_EXISTS
 
25721
//
 
25722
// MessageText:
 
25723
//
 
25724
//  The object or property already exists.
 
25725
//
 
25726
  CRYPT_E_EXISTS = HRESULT($80092005);
 
25727
  {$EXTERNALSYM CRYPT_E_EXISTS}
 
25728
 
 
25729
//
 
25730
// MessageId: CRYPT_E_NO_PROVIDER
 
25731
//
 
25732
// MessageText:
 
25733
//
 
25734
//  No provider was specified for the store or object.
 
25735
//
 
25736
  CRYPT_E_NO_PROVIDER = HRESULT($80092006);
 
25737
  {$EXTERNALSYM CRYPT_E_NO_PROVIDER}
 
25738
 
 
25739
//
 
25740
// MessageId: CRYPT_E_SELF_SIGNED
 
25741
//
 
25742
// MessageText:
 
25743
//
 
25744
//  The specified certificate is self signed.
 
25745
//
 
25746
  CRYPT_E_SELF_SIGNED = HRESULT($80092007);
 
25747
  {$EXTERNALSYM CRYPT_E_SELF_SIGNED}
 
25748
 
 
25749
//
 
25750
// MessageId: CRYPT_E_DELETED_PREV
 
25751
//
 
25752
// MessageText:
 
25753
//
 
25754
//  The previous certificate or CRL context was deleted.
 
25755
//
 
25756
  CRYPT_E_DELETED_PREV = HRESULT($80092008);
 
25757
  {$EXTERNALSYM CRYPT_E_DELETED_PREV}
 
25758
 
 
25759
//
 
25760
// MessageId: CRYPT_E_NO_MATCH
 
25761
//
 
25762
// MessageText:
 
25763
//
 
25764
//  Cannot find the requested object.
 
25765
//
 
25766
  CRYPT_E_NO_MATCH = HRESULT($80092009);
 
25767
  {$EXTERNALSYM CRYPT_E_NO_MATCH}
 
25768
 
 
25769
//
 
25770
// MessageId: CRYPT_E_UNEXPECTED_MSG_TYPE
 
25771
//
 
25772
// MessageText:
 
25773
//
 
25774
//  The certificate does not have a property that references a private key.
 
25775
//
 
25776
  CRYPT_E_UNEXPECTED_MSG_TYPE = HRESULT($8009200A);
 
25777
  {$EXTERNALSYM CRYPT_E_UNEXPECTED_MSG_TYPE}
 
25778
 
 
25779
//
 
25780
// MessageId: CRYPT_E_NO_KEY_PROPERTY
 
25781
//
 
25782
// MessageText:
 
25783
//
 
25784
//  Cannot find the certificate and private key for decryption.
 
25785
//
 
25786
  CRYPT_E_NO_KEY_PROPERTY = HRESULT($8009200B);
 
25787
  {$EXTERNALSYM CRYPT_E_NO_KEY_PROPERTY}
 
25788
 
 
25789
//
 
25790
// MessageId: CRYPT_E_NO_DECRYPT_CERT
 
25791
//
 
25792
// MessageText:
 
25793
//
 
25794
//  Cannot find the certificate and private key to use for decryption.
 
25795
//
 
25796
  CRYPT_E_NO_DECRYPT_CERT = HRESULT($8009200C);
 
25797
  {$EXTERNALSYM CRYPT_E_NO_DECRYPT_CERT}
 
25798
 
 
25799
//
 
25800
// MessageId: CRYPT_E_BAD_MSG
 
25801
//
 
25802
// MessageText:
 
25803
//
 
25804
//  Not a cryptographic message or the cryptographic message is not formatted correctly.
 
25805
//
 
25806
  CRYPT_E_BAD_MSG = HRESULT($8009200D);
 
25807
  {$EXTERNALSYM CRYPT_E_BAD_MSG}
 
25808
 
 
25809
//
 
25810
// MessageId: CRYPT_E_NO_SIGNER
 
25811
//
 
25812
// MessageText:
 
25813
//
 
25814
//  The signed cryptographic message does not have a signer for the specified signer index.
 
25815
//
 
25816
  CRYPT_E_NO_SIGNER = HRESULT($8009200E);
 
25817
  {$EXTERNALSYM CRYPT_E_NO_SIGNER}
 
25818
 
 
25819
//
 
25820
// MessageId: CRYPT_E_PENDING_CLOSE
 
25821
//
 
25822
// MessageText:
 
25823
//
 
25824
//  Final closure is pending until additional frees or closes.
 
25825
//
 
25826
  CRYPT_E_PENDING_CLOSE = HRESULT($8009200F);
 
25827
  {$EXTERNALSYM CRYPT_E_PENDING_CLOSE}
 
25828
 
 
25829
//
 
25830
// MessageId: CRYPT_E_REVOKED
 
25831
//
 
25832
// MessageText:
 
25833
//
 
25834
//  The certificate is revoked.
 
25835
//
 
25836
  CRYPT_E_REVOKED = HRESULT($80092010);
 
25837
  {$EXTERNALSYM CRYPT_E_REVOKED}
 
25838
 
 
25839
//
 
25840
// MessageId: CRYPT_E_NO_REVOCATION_DLL
 
25841
//
 
25842
// MessageText:
 
25843
//
 
25844
//  No Dll or exported function was found to verify revocation.
 
25845
//
 
25846
  CRYPT_E_NO_REVOCATION_DLL = HRESULT($80092011);
 
25847
  {$EXTERNALSYM CRYPT_E_NO_REVOCATION_DLL}
 
25848
 
 
25849
//
 
25850
// MessageId: CRYPT_E_NO_REVOCATION_CHECK
 
25851
//
 
25852
// MessageText:
 
25853
//
 
25854
//  The revocation function was unable to check revocation for the certificate.
 
25855
//
 
25856
  CRYPT_E_NO_REVOCATION_CHECK = HRESULT($80092012);
 
25857
  {$EXTERNALSYM CRYPT_E_NO_REVOCATION_CHECK}
 
25858
 
 
25859
//
 
25860
// MessageId: CRYPT_E_REVOCATION_OFFLINE
 
25861
//
 
25862
// MessageText:
 
25863
//
 
25864
//  The revocation function was unable to check revocation because the revocation server was offline.
 
25865
//
 
25866
  CRYPT_E_REVOCATION_OFFLINE = HRESULT($80092013);
 
25867
  {$EXTERNALSYM CRYPT_E_REVOCATION_OFFLINE}
 
25868
 
 
25869
//
 
25870
// MessageId: CRYPT_E_NOT_IN_REVOCATION_DATABASE
 
25871
//
 
25872
// MessageText:
 
25873
//
 
25874
//  The certificate is not in the revocation server's database.
 
25875
//
 
25876
  CRYPT_E_NOT_IN_REVOCATION_DATABASE = HRESULT($80092014);
 
25877
  {$EXTERNALSYM CRYPT_E_NOT_IN_REVOCATION_DATABASE}
 
25878
 
 
25879
//
 
25880
// MessageId: CRYPT_E_INVALID_NUMERIC_STRING
 
25881
//
 
25882
// MessageText:
 
25883
//
 
25884
//  The string contains a non-numeric character.
 
25885
//
 
25886
  CRYPT_E_INVALID_NUMERIC_STRING = HRESULT($80092020);
 
25887
  {$EXTERNALSYM CRYPT_E_INVALID_NUMERIC_STRING}
 
25888
 
 
25889
//
 
25890
// MessageId: CRYPT_E_INVALID_PRINTABLE_STRING
 
25891
//
 
25892
// MessageText:
 
25893
//
 
25894
//  The string contains a non-printable character.
 
25895
//
 
25896
  CRYPT_E_INVALID_PRINTABLE_STRING = HRESULT($80092021);
 
25897
  {$EXTERNALSYM CRYPT_E_INVALID_PRINTABLE_STRING}
 
25898
 
 
25899
//
 
25900
// MessageId: CRYPT_E_INVALID_IA5_STRING
 
25901
//
 
25902
// MessageText:
 
25903
//
 
25904
//  The string contains a character not in the 7 bit ASCII character set.
 
25905
//
 
25906
  CRYPT_E_INVALID_IA5_STRING = HRESULT($80092022);
 
25907
  {$EXTERNALSYM CRYPT_E_INVALID_IA5_STRING}
 
25908
 
 
25909
//
 
25910
// MessageId: CRYPT_E_INVALID_X500_STRING
 
25911
//
 
25912
// MessageText:
 
25913
//
 
25914
//  The string contains an invalid X500 name attribute key, oid, value or delimiter.
 
25915
//
 
25916
  CRYPT_E_INVALID_X500_STRING = HRESULT($80092023);
 
25917
  {$EXTERNALSYM CRYPT_E_INVALID_X500_STRING}
 
25918
 
 
25919
//
 
25920
// MessageId: CRYPT_E_NOT_CHAR_STRING
 
25921
//
 
25922
// MessageText:
 
25923
//
 
25924
//  The dwValueType for the CERT_NAME_VALUE is not one of the character strings.  Most likely it is either a CERT_RDN_ENCODED_BLOB or CERT_TDN_OCTED_STRING.
 
25925
//
 
25926
  CRYPT_E_NOT_CHAR_STRING = HRESULT($80092024);
 
25927
  {$EXTERNALSYM CRYPT_E_NOT_CHAR_STRING}
 
25928
 
 
25929
//
 
25930
// MessageId: CRYPT_E_FILERESIZED
 
25931
//
 
25932
// MessageText:
 
25933
//
 
25934
//  The Put operation can not continue.  The file needs to be resized.  However, there is already a signature present.  A complete signing operation must be done.
 
25935
//
 
25936
  CRYPT_E_FILERESIZED = HRESULT($80092025);
 
25937
  {$EXTERNALSYM CRYPT_E_FILERESIZED}
 
25938
 
 
25939
//
 
25940
// MessageId: CRYPT_E_SECURITY_SETTINGS
 
25941
//
 
25942
// MessageText:
 
25943
//
 
25944
//  The cryptographic operation failed due to a local security option setting.
 
25945
//
 
25946
  CRYPT_E_SECURITY_SETTINGS = HRESULT($80092026);
 
25947
  {$EXTERNALSYM CRYPT_E_SECURITY_SETTINGS}
 
25948
 
 
25949
//
 
25950
// MessageId: CRYPT_E_NO_VERIFY_USAGE_DLL
 
25951
//
 
25952
// MessageText:
 
25953
//
 
25954
//  No DLL or exported function was found to verify subject usage.
 
25955
//
 
25956
  CRYPT_E_NO_VERIFY_USAGE_DLL = HRESULT($80092027);
 
25957
  {$EXTERNALSYM CRYPT_E_NO_VERIFY_USAGE_DLL}
 
25958
 
 
25959
//
 
25960
// MessageId: CRYPT_E_NO_VERIFY_USAGE_CHECK
 
25961
//
 
25962
// MessageText:
 
25963
//
 
25964
//  The called function was unable to do a usage check on the subject.
 
25965
//
 
25966
  CRYPT_E_NO_VERIFY_USAGE_CHECK = HRESULT($80092028);
 
25967
  {$EXTERNALSYM CRYPT_E_NO_VERIFY_USAGE_CHECK}
 
25968
 
 
25969
//
 
25970
// MessageId: CRYPT_E_VERIFY_USAGE_OFFLINE
 
25971
//
 
25972
// MessageText:
 
25973
//
 
25974
//  Since the server was offline, the called function was unable to complete the usage check.
 
25975
//
 
25976
  CRYPT_E_VERIFY_USAGE_OFFLINE = HRESULT($80092029);
 
25977
  {$EXTERNALSYM CRYPT_E_VERIFY_USAGE_OFFLINE}
 
25978
 
 
25979
//
 
25980
// MessageId: CRYPT_E_NOT_IN_CTL
 
25981
//
 
25982
// MessageText:
 
25983
//
 
25984
//  The subject was not found in a Certificate Trust List (CTL).
 
25985
//
 
25986
  CRYPT_E_NOT_IN_CTL = HRESULT($8009202A);
 
25987
  {$EXTERNALSYM CRYPT_E_NOT_IN_CTL}
 
25988
 
 
25989
//
 
25990
// MessageId: CRYPT_E_NO_TRUSTED_SIGNER
 
25991
//
 
25992
// MessageText:
 
25993
//
 
25994
//  None of the signers of the cryptographic message or certificate trust list is trusted.
 
25995
//
 
25996
  CRYPT_E_NO_TRUSTED_SIGNER = HRESULT($8009202B);
 
25997
  {$EXTERNALSYM CRYPT_E_NO_TRUSTED_SIGNER}
 
25998
 
 
25999
//
 
26000
// MessageId: CRYPT_E_MISSING_PUBKEY_PARA
 
26001
//
 
26002
// MessageText:
 
26003
//
 
26004
//  The public key's algorithm parameters are missing.
 
26005
//
 
26006
  CRYPT_E_MISSING_PUBKEY_PARA = HRESULT($8009202C);
 
26007
  {$EXTERNALSYM CRYPT_E_MISSING_PUBKEY_PARA}
 
26008
 
 
26009
//
 
26010
// MessageId: CRYPT_E_OSS_ERROR
 
26011
//
 
26012
// MessageText:
 
26013
//
 
26014
//  OSS Certificate encode/decode error code base
 
26015
//  
 
26016
//  See asn1code.h for a definition of the OSS runtime errors. The OSS
 
26017
//  error values are offset by CRYPT_E_OSS_ERROR.
 
26018
//
 
26019
  CRYPT_E_OSS_ERROR = HRESULT($80093000);
 
26020
  {$EXTERNALSYM CRYPT_E_OSS_ERROR}
 
26021
 
 
26022
//
 
26023
// MessageId: OSS_MORE_BUF
 
26024
//
 
26025
// MessageText:
 
26026
//
 
26027
//  OSS ASN.1 Error: Output Buffer is too small.
 
26028
//
 
26029
  OSS_MORE_BUF = HRESULT($80093001);
 
26030
  {$EXTERNALSYM OSS_MORE_BUF}
 
26031
 
 
26032
//
 
26033
// MessageId: OSS_NEGATIVE_UINTEGER
 
26034
//
 
26035
// MessageText:
 
26036
//
 
26037
//  OSS ASN.1 Error: Signed integer is encoded as a unsigned integer.
 
26038
//
 
26039
  OSS_NEGATIVE_UINTEGER = HRESULT($80093002);
 
26040
  {$EXTERNALSYM OSS_NEGATIVE_UINTEGER}
 
26041
 
 
26042
//
 
26043
// MessageId: OSS_PDU_RANGE
 
26044
//
 
26045
// MessageText:
 
26046
//
 
26047
//  OSS ASN.1 Error: Unknown ASN.1 data type.
 
26048
//
 
26049
  OSS_PDU_RANGE = HRESULT($80093003);
 
26050
  {$EXTERNALSYM OSS_PDU_RANGE}
 
26051
 
 
26052
//
 
26053
// MessageId: OSS_MORE_INPUT
 
26054
//
 
26055
// MessageText:
 
26056
//
 
26057
//  OSS ASN.1 Error: Output buffer is too small, the decoded data has been truncated.
 
26058
//
 
26059
  OSS_MORE_INPUT = HRESULT($80093004);
 
26060
  {$EXTERNALSYM OSS_MORE_INPUT}
 
26061
 
 
26062
//
 
26063
// MessageId: OSS_DATA_ERROR
 
26064
//
 
26065
// MessageText:
 
26066
//
 
26067
//  OSS ASN.1 Error: Invalid data.
 
26068
//
 
26069
  OSS_DATA_ERROR = HRESULT($80093005);
 
26070
  {$EXTERNALSYM OSS_DATA_ERROR}
 
26071
 
 
26072
//
 
26073
// MessageId: OSS_BAD_ARG
 
26074
//
 
26075
// MessageText:
 
26076
//
 
26077
//  OSS ASN.1 Error: Invalid argument.
 
26078
//
 
26079
  OSS_BAD_ARG = HRESULT($80093006);
 
26080
  {$EXTERNALSYM OSS_BAD_ARG}
 
26081
 
 
26082
//
 
26083
// MessageId: OSS_BAD_VERSION
 
26084
//
 
26085
// MessageText:
 
26086
//
 
26087
//  OSS ASN.1 Error: Encode/Decode version mismatch.
 
26088
//
 
26089
  OSS_BAD_VERSION = HRESULT($80093007);
 
26090
  {$EXTERNALSYM OSS_BAD_VERSION}
 
26091
 
 
26092
//
 
26093
// MessageId: OSS_OUT_MEMORY
 
26094
//
 
26095
// MessageText:
 
26096
//
 
26097
//  OSS ASN.1 Error: Out of memory.
 
26098
//
 
26099
  OSS_OUT_MEMORY = HRESULT($80093008);
 
26100
  {$EXTERNALSYM OSS_OUT_MEMORY}
 
26101
 
 
26102
//
 
26103
// MessageId: OSS_PDU_MISMATCH
 
26104
//
 
26105
// MessageText:
 
26106
//
 
26107
//  OSS ASN.1 Error: Encode/Decode Error.
 
26108
//
 
26109
  OSS_PDU_MISMATCH = HRESULT($80093009);
 
26110
  {$EXTERNALSYM OSS_PDU_MISMATCH}
 
26111
 
 
26112
//
 
26113
// MessageId: OSS_LIMITED
 
26114
//
 
26115
// MessageText:
 
26116
//
 
26117
//  OSS ASN.1 Error: Internal Error.
 
26118
//
 
26119
  OSS_LIMITED = HRESULT($8009300A);
 
26120
  {$EXTERNALSYM OSS_LIMITED}
 
26121
 
 
26122
//
 
26123
// MessageId: OSS_BAD_PTR
 
26124
//
 
26125
// MessageText:
 
26126
//
 
26127
//  OSS ASN.1 Error: Invalid data.
 
26128
//
 
26129
  OSS_BAD_PTR = HRESULT($8009300B);
 
26130
  {$EXTERNALSYM OSS_BAD_PTR}
 
26131
 
 
26132
//
 
26133
// MessageId: OSS_BAD_TIME
 
26134
//
 
26135
// MessageText:
 
26136
//
 
26137
//  OSS ASN.1 Error: Invalid data.
 
26138
//
 
26139
  OSS_BAD_TIME = HRESULT($8009300C);
 
26140
  {$EXTERNALSYM OSS_BAD_TIME}
 
26141
 
 
26142
//
 
26143
// MessageId: OSS_INDEFINITE_NOT_SUPPORTED
 
26144
//
 
26145
// MessageText:
 
26146
//
 
26147
//  OSS ASN.1 Error: Unsupported BER indefinite-length encoding.
 
26148
//
 
26149
  OSS_INDEFINITE_NOT_SUPPORTED = HRESULT($8009300D);
 
26150
  {$EXTERNALSYM OSS_INDEFINITE_NOT_SUPPORTED}
 
26151
 
 
26152
//
 
26153
// MessageId: OSS_MEM_ERROR
 
26154
//
 
26155
// MessageText:
 
26156
//
 
26157
//  OSS ASN.1 Error: Access violation.
 
26158
//
 
26159
  OSS_MEM_ERROR = HRESULT($8009300E);
 
26160
  {$EXTERNALSYM OSS_MEM_ERROR}
 
26161
 
 
26162
//
 
26163
// MessageId: OSS_BAD_TABLE
 
26164
//
 
26165
// MessageText:
 
26166
//
 
26167
//  OSS ASN.1 Error: Invalid data.
 
26168
//
 
26169
  OSS_BAD_TABLE = HRESULT($8009300F);
 
26170
  {$EXTERNALSYM OSS_BAD_TABLE}
 
26171
 
 
26172
//
 
26173
// MessageId: OSS_TOO_LONG
 
26174
//
 
26175
// MessageText:
 
26176
//
 
26177
//  OSS ASN.1 Error: Invalid data.
 
26178
//
 
26179
  OSS_TOO_LONG = HRESULT($80093010);
 
26180
  {$EXTERNALSYM OSS_TOO_LONG}
 
26181
 
 
26182
//
 
26183
// MessageId: OSS_CONSTRAINT_VIOLATED
 
26184
//
 
26185
// MessageText:
 
26186
//
 
26187
//  OSS ASN.1 Error: Invalid data.
 
26188
//
 
26189
  OSS_CONSTRAINT_VIOLATED = HRESULT($80093011);
 
26190
  {$EXTERNALSYM OSS_CONSTRAINT_VIOLATED}
 
26191
 
 
26192
//
 
26193
// MessageId: OSS_FATAL_ERROR
 
26194
//
 
26195
// MessageText:
 
26196
//
 
26197
//  OSS ASN.1 Error: Internal Error.
 
26198
//
 
26199
  OSS_FATAL_ERROR = HRESULT($80093012);
 
26200
  {$EXTERNALSYM OSS_FATAL_ERROR}
 
26201
 
 
26202
//
 
26203
// MessageId: OSS_ACCESS_SERIALIZATION_ERROR
 
26204
//
 
26205
// MessageText:
 
26206
//
 
26207
//  OSS ASN.1 Error: Multi-threading conflict.
 
26208
//
 
26209
  OSS_ACCESS_SERIALIZATION_ERROR = HRESULT($80093013);
 
26210
  {$EXTERNALSYM OSS_ACCESS_SERIALIZATION_ERROR}
 
26211
 
 
26212
//
 
26213
// MessageId: OSS_NULL_TBL
 
26214
//
 
26215
// MessageText:
 
26216
//
 
26217
//  OSS ASN.1 Error: Invalid data.
 
26218
//
 
26219
  OSS_NULL_TBL = HRESULT($80093014);
 
26220
  {$EXTERNALSYM OSS_NULL_TBL}
 
26221
 
 
26222
//
 
26223
// MessageId: OSS_NULL_FCN
 
26224
//
 
26225
// MessageText:
 
26226
//
 
26227
//  OSS ASN.1 Error: Invalid data.
 
26228
//
 
26229
  OSS_NULL_FCN = HRESULT($80093015);
 
26230
  {$EXTERNALSYM OSS_NULL_FCN}
 
26231
 
 
26232
//
 
26233
// MessageId: OSS_BAD_ENCRULES
 
26234
//
 
26235
// MessageText:
 
26236
//
 
26237
//  OSS ASN.1 Error: Invalid data.
 
26238
//
 
26239
  OSS_BAD_ENCRULES = HRESULT($80093016);
 
26240
  {$EXTERNALSYM OSS_BAD_ENCRULES}
 
26241
 
 
26242
//
 
26243
// MessageId: OSS_UNAVAIL_ENCRULES
 
26244
//
 
26245
// MessageText:
 
26246
//
 
26247
//  OSS ASN.1 Error: Encode/Decode function not implemented.
 
26248
//
 
26249
  OSS_UNAVAIL_ENCRULES = HRESULT($80093017);
 
26250
  {$EXTERNALSYM OSS_UNAVAIL_ENCRULES}
 
26251
 
 
26252
//
 
26253
// MessageId: OSS_CANT_OPEN_TRACE_WINDOW
 
26254
//
 
26255
// MessageText:
 
26256
//
 
26257
//  OSS ASN.1 Error: Trace file error.
 
26258
//
 
26259
  OSS_CANT_OPEN_TRACE_WINDOW = HRESULT($80093018);
 
26260
  {$EXTERNALSYM OSS_CANT_OPEN_TRACE_WINDOW}
 
26261
 
 
26262
//
 
26263
// MessageId: OSS_UNIMPLEMENTED
 
26264
//
 
26265
// MessageText:
 
26266
//
 
26267
//  OSS ASN.1 Error: Function not implemented.
 
26268
//
 
26269
  OSS_UNIMPLEMENTED = HRESULT($80093019);
 
26270
  {$EXTERNALSYM OSS_UNIMPLEMENTED}
 
26271
 
 
26272
//
 
26273
// MessageId: OSS_OID_DLL_NOT_LINKED
 
26274
//
 
26275
// MessageText:
 
26276
//
 
26277
//  OSS ASN.1 Error: Program link error.
 
26278
//
 
26279
  OSS_OID_DLL_NOT_LINKED = HRESULT($8009301A);
 
26280
  {$EXTERNALSYM OSS_OID_DLL_NOT_LINKED}
 
26281
 
 
26282
//
 
26283
// MessageId: OSS_CANT_OPEN_TRACE_FILE
 
26284
//
 
26285
// MessageText:
 
26286
//
 
26287
//  OSS ASN.1 Error: Trace file error.
 
26288
//
 
26289
  OSS_CANT_OPEN_TRACE_FILE = HRESULT($8009301B);
 
26290
  {$EXTERNALSYM OSS_CANT_OPEN_TRACE_FILE}
 
26291
 
 
26292
//
 
26293
// MessageId: OSS_TRACE_FILE_ALREADY_OPEN
 
26294
//
 
26295
// MessageText:
 
26296
//
 
26297
//  OSS ASN.1 Error: Trace file error.
 
26298
//
 
26299
  OSS_TRACE_FILE_ALREADY_OPEN = HRESULT($8009301C);
 
26300
  {$EXTERNALSYM OSS_TRACE_FILE_ALREADY_OPEN}
 
26301
 
 
26302
//
 
26303
// MessageId: OSS_TABLE_MISMATCH
 
26304
//
 
26305
// MessageText:
 
26306
//
 
26307
//  OSS ASN.1 Error: Invalid data.
 
26308
//
 
26309
  OSS_TABLE_MISMATCH = HRESULT($8009301D);
 
26310
  {$EXTERNALSYM OSS_TABLE_MISMATCH}
 
26311
 
 
26312
//
 
26313
// MessageId: OSS_TYPE_NOT_SUPPORTED
 
26314
//
 
26315
// MessageText:
 
26316
//
 
26317
//  OSS ASN.1 Error: Invalid data.
 
26318
//
 
26319
  OSS_TYPE_NOT_SUPPORTED = HRESULT($8009301E);
 
26320
  {$EXTERNALSYM OSS_TYPE_NOT_SUPPORTED}
 
26321
 
 
26322
//
 
26323
// MessageId: OSS_REAL_DLL_NOT_LINKED
 
26324
//
 
26325
// MessageText:
 
26326
//
 
26327
//  OSS ASN.1 Error: Program link error.
 
26328
//
 
26329
  OSS_REAL_DLL_NOT_LINKED = HRESULT($8009301F);
 
26330
  {$EXTERNALSYM OSS_REAL_DLL_NOT_LINKED}
 
26331
 
 
26332
//
 
26333
// MessageId: OSS_REAL_CODE_NOT_LINKED
 
26334
//
 
26335
// MessageText:
 
26336
//
 
26337
//  OSS ASN.1 Error: Program link error.
 
26338
//
 
26339
  OSS_REAL_CODE_NOT_LINKED = HRESULT($80093020);
 
26340
  {$EXTERNALSYM OSS_REAL_CODE_NOT_LINKED}
 
26341
 
 
26342
//
 
26343
// MessageId: OSS_OUT_OF_RANGE
 
26344
//
 
26345
// MessageText:
 
26346
//
 
26347
//  OSS ASN.1 Error: Program link error.
 
26348
//
 
26349
  OSS_OUT_OF_RANGE = HRESULT($80093021);
 
26350
  {$EXTERNALSYM OSS_OUT_OF_RANGE}
 
26351
 
 
26352
//
 
26353
// MessageId: OSS_COPIER_DLL_NOT_LINKED
 
26354
//
 
26355
// MessageText:
 
26356
//
 
26357
//  OSS ASN.1 Error: Program link error.
 
26358
//
 
26359
  OSS_COPIER_DLL_NOT_LINKED = HRESULT($80093022);
 
26360
  {$EXTERNALSYM OSS_COPIER_DLL_NOT_LINKED}
 
26361
 
 
26362
//
 
26363
// MessageId: OSS_CONSTRAINT_DLL_NOT_LINKED
 
26364
//
 
26365
// MessageText:
 
26366
//
 
26367
//  OSS ASN.1 Error: Program link error.
 
26368
//
 
26369
  OSS_CONSTRAINT_DLL_NOT_LINKED = HRESULT($80093023);
 
26370
  {$EXTERNALSYM OSS_CONSTRAINT_DLL_NOT_LINKED}
 
26371
 
 
26372
//
 
26373
// MessageId: OSS_COMPARATOR_DLL_NOT_LINKED
 
26374
//
 
26375
// MessageText:
 
26376
//
 
26377
//  OSS ASN.1 Error: Program link error.
 
26378
//
 
26379
  OSS_COMPARATOR_DLL_NOT_LINKED = HRESULT($80093024);
 
26380
  {$EXTERNALSYM OSS_COMPARATOR_DLL_NOT_LINKED}
 
26381
 
 
26382
//
 
26383
// MessageId: OSS_COMPARATOR_CODE_NOT_LINKED
 
26384
//
 
26385
// MessageText:
 
26386
//
 
26387
//  OSS ASN.1 Error: Program link error.
 
26388
//
 
26389
  OSS_COMPARATOR_CODE_NOT_LINKED = HRESULT($80093025);
 
26390
  {$EXTERNALSYM OSS_COMPARATOR_CODE_NOT_LINKED}
 
26391
 
 
26392
//
 
26393
// MessageId: OSS_MEM_MGR_DLL_NOT_LINKED
 
26394
//
 
26395
// MessageText:
 
26396
//
 
26397
//  OSS ASN.1 Error: Program link error.
 
26398
//
 
26399
  OSS_MEM_MGR_DLL_NOT_LINKED = HRESULT($80093026);
 
26400
  {$EXTERNALSYM OSS_MEM_MGR_DLL_NOT_LINKED}
 
26401
 
 
26402
//
 
26403
// MessageId: OSS_PDV_DLL_NOT_LINKED
 
26404
//
 
26405
// MessageText:
 
26406
//
 
26407
//  OSS ASN.1 Error: Program link error.
 
26408
//
 
26409
  OSS_PDV_DLL_NOT_LINKED = HRESULT($80093027);
 
26410
  {$EXTERNALSYM OSS_PDV_DLL_NOT_LINKED}
 
26411
 
 
26412
//
 
26413
// MessageId: OSS_PDV_CODE_NOT_LINKED
 
26414
//
 
26415
// MessageText:
 
26416
//
 
26417
//  OSS ASN.1 Error: Program link error.
 
26418
//
 
26419
  OSS_PDV_CODE_NOT_LINKED = HRESULT($80093028);
 
26420
  {$EXTERNALSYM OSS_PDV_CODE_NOT_LINKED}
 
26421
 
 
26422
//
 
26423
// MessageId: OSS_API_DLL_NOT_LINKED
 
26424
//
 
26425
// MessageText:
 
26426
//
 
26427
//  OSS ASN.1 Error: Program link error.
 
26428
//
 
26429
  OSS_API_DLL_NOT_LINKED = HRESULT($80093029);
 
26430
  {$EXTERNALSYM OSS_API_DLL_NOT_LINKED}
 
26431
 
 
26432
//
 
26433
// MessageId: OSS_BERDER_DLL_NOT_LINKED
 
26434
//
 
26435
// MessageText:
 
26436
//
 
26437
//  OSS ASN.1 Error: Program link error.
 
26438
//
 
26439
  OSS_BERDER_DLL_NOT_LINKED = HRESULT($8009302A);
 
26440
  {$EXTERNALSYM OSS_BERDER_DLL_NOT_LINKED}
 
26441
 
 
26442
//
 
26443
// MessageId: OSS_PER_DLL_NOT_LINKED
 
26444
//
 
26445
// MessageText:
 
26446
//
 
26447
//  OSS ASN.1 Error: Program link error.
 
26448
//
 
26449
  OSS_PER_DLL_NOT_LINKED = HRESULT($8009302B);
 
26450
  {$EXTERNALSYM OSS_PER_DLL_NOT_LINKED}
 
26451
 
 
26452
//
 
26453
// MessageId: OSS_OPEN_TYPE_ERROR
 
26454
//
 
26455
// MessageText:
 
26456
//
 
26457
//  OSS ASN.1 Error: Program link error.
 
26458
//
 
26459
  OSS_OPEN_TYPE_ERROR = HRESULT($8009302C);
 
26460
  {$EXTERNALSYM OSS_OPEN_TYPE_ERROR}
 
26461
 
 
26462
//
 
26463
// MessageId: OSS_MUTEX_NOT_CREATED
 
26464
//
 
26465
// MessageText:
 
26466
//
 
26467
//  OSS ASN.1 Error: System resource error.
 
26468
//
 
26469
  OSS_MUTEX_NOT_CREATED = HRESULT($8009302D);
 
26470
  {$EXTERNALSYM OSS_MUTEX_NOT_CREATED}
 
26471
 
 
26472
//
 
26473
// MessageId: OSS_CANT_CLOSE_TRACE_FILE
 
26474
//
 
26475
// MessageText:
 
26476
//
 
26477
//  OSS ASN.1 Error: Trace file error.
 
26478
//
 
26479
  OSS_CANT_CLOSE_TRACE_FILE = HRESULT($8009302E);
 
26480
  {$EXTERNALSYM OSS_CANT_CLOSE_TRACE_FILE}
 
26481
 
 
26482
//
 
26483
// MessageId: CRYPT_E_ASN1_ERROR
 
26484
//
 
26485
// MessageText:
 
26486
//
 
26487
//  ASN1 Certificate encode/decode error code base.
 
26488
//  
 
26489
//  The ASN1 error values are offset by CRYPT_E_ASN1_ERROR.
 
26490
//
 
26491
  CRYPT_E_ASN1_ERROR = HRESULT($80093100);
 
26492
  {$EXTERNALSYM CRYPT_E_ASN1_ERROR}
 
26493
 
 
26494
//
 
26495
// MessageId: CRYPT_E_ASN1_INTERNAL
 
26496
//
 
26497
// MessageText:
 
26498
//
 
26499
//  ASN1 internal encode or decode error.
 
26500
//
 
26501
  CRYPT_E_ASN1_INTERNAL = HRESULT($80093101);
 
26502
  {$EXTERNALSYM CRYPT_E_ASN1_INTERNAL}
 
26503
 
 
26504
//
 
26505
// MessageId: CRYPT_E_ASN1_EOD
 
26506
//
 
26507
// MessageText:
 
26508
//
 
26509
//  ASN1 unexpected end of data.
 
26510
//
 
26511
  CRYPT_E_ASN1_EOD = HRESULT($80093102);
 
26512
  {$EXTERNALSYM CRYPT_E_ASN1_EOD}
 
26513
 
 
26514
//
 
26515
// MessageId: CRYPT_E_ASN1_CORRUPT
 
26516
//
 
26517
// MessageText:
 
26518
//
 
26519
//  ASN1 corrupted data.
 
26520
//
 
26521
  CRYPT_E_ASN1_CORRUPT = HRESULT($80093103);
 
26522
  {$EXTERNALSYM CRYPT_E_ASN1_CORRUPT}
 
26523
 
 
26524
//
 
26525
// MessageId: CRYPT_E_ASN1_LARGE
 
26526
//
 
26527
// MessageText:
 
26528
//
 
26529
//  ASN1 value too large.
 
26530
//
 
26531
  CRYPT_E_ASN1_LARGE = HRESULT($80093104);
 
26532
  {$EXTERNALSYM CRYPT_E_ASN1_LARGE}
 
26533
 
 
26534
//
 
26535
// MessageId: CRYPT_E_ASN1_CONSTRAINT
 
26536
//
 
26537
// MessageText:
 
26538
//
 
26539
//  ASN1 constraint violated.
 
26540
//
 
26541
  CRYPT_E_ASN1_CONSTRAINT = HRESULT($80093105);
 
26542
  {$EXTERNALSYM CRYPT_E_ASN1_CONSTRAINT}
 
26543
 
 
26544
//
 
26545
// MessageId: CRYPT_E_ASN1_MEMORY
 
26546
//
 
26547
// MessageText:
 
26548
//
 
26549
//  ASN1 out of memory.
 
26550
//
 
26551
  CRYPT_E_ASN1_MEMORY = HRESULT($80093106);
 
26552
  {$EXTERNALSYM CRYPT_E_ASN1_MEMORY}
 
26553
 
 
26554
//
 
26555
// MessageId: CRYPT_E_ASN1_OVERFLOW
 
26556
//
 
26557
// MessageText:
 
26558
//
 
26559
//  ASN1 buffer overflow.
 
26560
//
 
26561
  CRYPT_E_ASN1_OVERFLOW = HRESULT($80093107);
 
26562
  {$EXTERNALSYM CRYPT_E_ASN1_OVERFLOW}
 
26563
 
 
26564
//
 
26565
// MessageId: CRYPT_E_ASN1_BADPDU
 
26566
//
 
26567
// MessageText:
 
26568
//
 
26569
//  ASN1 function not supported for this PDU.
 
26570
//
 
26571
  CRYPT_E_ASN1_BADPDU = HRESULT($80093108);
 
26572
  {$EXTERNALSYM CRYPT_E_ASN1_BADPDU}
 
26573
 
 
26574
//
 
26575
// MessageId: CRYPT_E_ASN1_BADARGS
 
26576
//
 
26577
// MessageText:
 
26578
//
 
26579
//  ASN1 bad arguments to function call.
 
26580
//
 
26581
  CRYPT_E_ASN1_BADARGS = HRESULT($80093109);
 
26582
  {$EXTERNALSYM CRYPT_E_ASN1_BADARGS}
 
26583
 
 
26584
//
 
26585
// MessageId: CRYPT_E_ASN1_BADREAL
 
26586
//
 
26587
// MessageText:
 
26588
//
 
26589
//  ASN1 bad real value.
 
26590
//
 
26591
  CRYPT_E_ASN1_BADREAL = HRESULT($8009310A);
 
26592
  {$EXTERNALSYM CRYPT_E_ASN1_BADREAL}
 
26593
 
 
26594
//
 
26595
// MessageId: CRYPT_E_ASN1_BADTAG
 
26596
//
 
26597
// MessageText:
 
26598
//
 
26599
//  ASN1 bad tag value met.
 
26600
//
 
26601
  CRYPT_E_ASN1_BADTAG = HRESULT($8009310B);
 
26602
  {$EXTERNALSYM CRYPT_E_ASN1_BADTAG}
 
26603
 
 
26604
//
 
26605
// MessageId: CRYPT_E_ASN1_CHOICE
 
26606
//
 
26607
// MessageText:
 
26608
//
 
26609
//  ASN1 bad choice value.
 
26610
//
 
26611
  CRYPT_E_ASN1_CHOICE = HRESULT($8009310C);
 
26612
  {$EXTERNALSYM CRYPT_E_ASN1_CHOICE}
 
26613
 
 
26614
//
 
26615
// MessageId: CRYPT_E_ASN1_RULE
 
26616
//
 
26617
// MessageText:
 
26618
//
 
26619
//  ASN1 bad encoding rule.
 
26620
//
 
26621
  CRYPT_E_ASN1_RULE = HRESULT($8009310D);
 
26622
  {$EXTERNALSYM CRYPT_E_ASN1_RULE}
 
26623
 
 
26624
//
 
26625
// MessageId: CRYPT_E_ASN1_UTF8
 
26626
//
 
26627
// MessageText:
 
26628
//
 
26629
//  ASN1 bad unicode (UTF8).
 
26630
//
 
26631
  CRYPT_E_ASN1_UTF8 = HRESULT($8009310E);
 
26632
  {$EXTERNALSYM CRYPT_E_ASN1_UTF8}
 
26633
 
 
26634
//
 
26635
// MessageId: CRYPT_E_ASN1_PDU_TYPE
 
26636
//
 
26637
// MessageText:
 
26638
//
 
26639
//  ASN1 bad PDU type.
 
26640
//
 
26641
  CRYPT_E_ASN1_PDU_TYPE = HRESULT($80093133);
 
26642
  {$EXTERNALSYM CRYPT_E_ASN1_PDU_TYPE}
 
26643
 
 
26644
//
 
26645
// MessageId: CRYPT_E_ASN1_NYI
 
26646
//
 
26647
// MessageText:
 
26648
//
 
26649
//  ASN1 not yet implemented.
 
26650
//
 
26651
  CRYPT_E_ASN1_NYI = HRESULT($80093134);
 
26652
  {$EXTERNALSYM CRYPT_E_ASN1_NYI}
 
26653
 
 
26654
//
 
26655
// MessageId: CRYPT_E_ASN1_EXTENDED
 
26656
//
 
26657
// MessageText:
 
26658
//
 
26659
//  ASN1 skipped unknown extension(s).
 
26660
//
 
26661
  CRYPT_E_ASN1_EXTENDED = HRESULT($80093201);
 
26662
  {$EXTERNALSYM CRYPT_E_ASN1_EXTENDED}
 
26663
 
 
26664
//
 
26665
// MessageId: CRYPT_E_ASN1_NOEOD
 
26666
//
 
26667
// MessageText:
 
26668
//
 
26669
//  ASN1 end of data expected
 
26670
//
 
26671
  CRYPT_E_ASN1_NOEOD = HRESULT($80093202);
 
26672
  {$EXTERNALSYM CRYPT_E_ASN1_NOEOD}
 
26673
 
 
26674
//
 
26675
// MessageId: CERTSRV_E_BAD_REQUESTSUBJECT
 
26676
//
 
26677
// MessageText:
 
26678
//
 
26679
//  The request subject name is invalid or too long.
 
26680
//
 
26681
  CERTSRV_E_BAD_REQUESTSUBJECT = HRESULT($80094001);
 
26682
  {$EXTERNALSYM CERTSRV_E_BAD_REQUESTSUBJECT}
 
26683
 
 
26684
//
 
26685
// MessageId: CERTSRV_E_NO_REQUEST
 
26686
//
 
26687
// MessageText:
 
26688
//
 
26689
//  The request does not exist.
 
26690
//
 
26691
  CERTSRV_E_NO_REQUEST = HRESULT($80094002);
 
26692
  {$EXTERNALSYM CERTSRV_E_NO_REQUEST}
 
26693
 
 
26694
//
 
26695
// MessageId: CERTSRV_E_BAD_REQUESTSTATUS
 
26696
//
 
26697
// MessageText:
 
26698
//
 
26699
//  The request's current status does not allow this operation.
 
26700
//
 
26701
  CERTSRV_E_BAD_REQUESTSTATUS = HRESULT($80094003);
 
26702
  {$EXTERNALSYM CERTSRV_E_BAD_REQUESTSTATUS}
 
26703
 
 
26704
//
 
26705
// MessageId: CERTSRV_E_PROPERTY_EMPTY
 
26706
//
 
26707
// MessageText:
 
26708
//
 
26709
//  The requested property value is empty.
 
26710
//
 
26711
  CERTSRV_E_PROPERTY_EMPTY = HRESULT($80094004);
 
26712
  {$EXTERNALSYM CERTSRV_E_PROPERTY_EMPTY}
 
26713
 
 
26714
//
 
26715
// MessageId: CERTSRV_E_INVALID_CA_CERTIFICATE
 
26716
//
 
26717
// MessageText:
 
26718
//
 
26719
//  The certification authority's certificate contains invalid data.
 
26720
//
 
26721
  CERTSRV_E_INVALID_CA_CERTIFICATE = HRESULT($80094005);
 
26722
  {$EXTERNALSYM CERTSRV_E_INVALID_CA_CERTIFICATE}
 
26723
 
 
26724
//
 
26725
// MessageId: CERTSRV_E_SERVER_SUSPENDED
 
26726
//
 
26727
// MessageText:
 
26728
//
 
26729
//  Certificate service has been suspended for a database restore operation.
 
26730
//
 
26731
  CERTSRV_E_SERVER_SUSPENDED = HRESULT($80094006);
 
26732
  {$EXTERNALSYM CERTSRV_E_SERVER_SUSPENDED}
 
26733
 
 
26734
//
 
26735
// MessageId: CERTSRV_E_ENCODING_LENGTH
 
26736
//
 
26737
// MessageText:
 
26738
//
 
26739
//  The certificate contains an encoded length that is potentially incompatible with older enrollment software.
 
26740
//
 
26741
  CERTSRV_E_ENCODING_LENGTH = HRESULT($80094007);
 
26742
  {$EXTERNALSYM CERTSRV_E_ENCODING_LENGTH}
 
26743
 
 
26744
//
 
26745
// MessageId: CERTSRV_E_ROLECONFLICT
 
26746
//
 
26747
// MessageText:
 
26748
//
 
26749
//  The operation is denied. The user has multiple roles assigned and the certification authority is configured to enforce role separation.
 
26750
//
 
26751
  CERTSRV_E_ROLECONFLICT = HRESULT($80094008);
 
26752
  {$EXTERNALSYM CERTSRV_E_ROLECONFLICT}
 
26753
 
 
26754
//
 
26755
// MessageId: CERTSRV_E_RESTRICTEDOFFICER
 
26756
//
 
26757
// MessageText:
 
26758
//
 
26759
//  The operation is denied. It can only be performed by a certificate manager that is allowed to manage certificates for the current requester.
 
26760
//
 
26761
  CERTSRV_E_RESTRICTEDOFFICER = HRESULT($80094009);
 
26762
  {$EXTERNALSYM CERTSRV_E_RESTRICTEDOFFICER}
 
26763
 
 
26764
//
 
26765
// MessageId: CERTSRV_E_KEY_ARCHIVAL_NOT_CONFIGURED
 
26766
//
 
26767
// MessageText:
 
26768
//
 
26769
//  Cannot archive private key.  The certification authority is not configured for key archival.
 
26770
//
 
26771
  CERTSRV_E_KEY_ARCHIVAL_NOT_CONFIGURED = HRESULT($8009400A);
 
26772
  {$EXTERNALSYM CERTSRV_E_KEY_ARCHIVAL_NOT_CONFIGURED}
 
26773
 
 
26774
//
 
26775
// MessageId: CERTSRV_E_NO_VALID_KRA
 
26776
//
 
26777
// MessageText:
 
26778
//
 
26779
//  Cannot archive private key.  The certification authority could not verify one or more key recovery certificates.
 
26780
//
 
26781
  CERTSRV_E_NO_VALID_KRA = HRESULT($8009400B);
 
26782
  {$EXTERNALSYM CERTSRV_E_NO_VALID_KRA}
 
26783
 
 
26784
//
 
26785
// MessageId: CERTSRV_E_BAD_REQUEST_KEY_ARCHIVAL
 
26786
//
 
26787
// MessageText:
 
26788
//
 
26789
//  The request is incorrectly formatted.  The encrypted private key must be in an unauthenticated attribute in an outermost signature.
 
26790
//
 
26791
  CERTSRV_E_BAD_REQUEST_KEY_ARCHIVAL = HRESULT($8009400C);
 
26792
  {$EXTERNALSYM CERTSRV_E_BAD_REQUEST_KEY_ARCHIVAL}
 
26793
 
 
26794
//
 
26795
// MessageId: CERTSRV_E_NO_CAADMIN_DEFINED
 
26796
//
 
26797
// MessageText:
 
26798
//
 
26799
//  At least one security principal must have the permission to manage this CA.
 
26800
//
 
26801
  CERTSRV_E_NO_CAADMIN_DEFINED = HRESULT($8009400D);
 
26802
  {$EXTERNALSYM CERTSRV_E_NO_CAADMIN_DEFINED}
 
26803
 
 
26804
//
 
26805
// MessageId: CERTSRV_E_BAD_RENEWAL_CERT_ATTRIBUTE
 
26806
//
 
26807
// MessageText:
 
26808
//
 
26809
//  The request contains an invalid renewal certificate attribute.
 
26810
//
 
26811
  CERTSRV_E_BAD_RENEWAL_CERT_ATTRIBUTE = HRESULT($8009400E);
 
26812
  {$EXTERNALSYM CERTSRV_E_BAD_RENEWAL_CERT_ATTRIBUTE}
 
26813
 
 
26814
//
 
26815
// MessageId: CERTSRV_E_NO_DB_SESSIONS
 
26816
//
 
26817
// MessageText:
 
26818
//
 
26819
//  An attempt was made to open a Certification Authority database session, but there are already too many active sessions.  The server may need to be configured to allow additional sessions.
 
26820
//
 
26821
  CERTSRV_E_NO_DB_SESSIONS = HRESULT($8009400F);
 
26822
  {$EXTERNALSYM CERTSRV_E_NO_DB_SESSIONS}
 
26823
 
 
26824
//
 
26825
// MessageId: CERTSRV_E_ALIGNMENT_FAULT
 
26826
//
 
26827
// MessageText:
 
26828
//
 
26829
//  A memory reference caused a data alignment fault.
 
26830
//
 
26831
  CERTSRV_E_ALIGNMENT_FAULT = HRESULT($80094010);
 
26832
  {$EXTERNALSYM CERTSRV_E_ALIGNMENT_FAULT}
 
26833
 
 
26834
//
 
26835
// MessageId: CERTSRV_E_ENROLL_DENIED
 
26836
//
 
26837
// MessageText:
 
26838
//
 
26839
//  The permissions on this certification authority do not allow the current user to enroll for certificates.
 
26840
//
 
26841
  CERTSRV_E_ENROLL_DENIED = HRESULT($80094011);
 
26842
  {$EXTERNALSYM CERTSRV_E_ENROLL_DENIED}
 
26843
 
 
26844
//
 
26845
// MessageId: CERTSRV_E_TEMPLATE_DENIED
 
26846
//
 
26847
// MessageText:
 
26848
//
 
26849
//  The permissions on the certificate template do not allow the current user to enroll for this type of certificate.
 
26850
//
 
26851
  CERTSRV_E_TEMPLATE_DENIED = HRESULT($80094012);
 
26852
  {$EXTERNALSYM CERTSRV_E_TEMPLATE_DENIED}
 
26853
 
 
26854
//
 
26855
// MessageId: CERTSRV_E_DOWNLEVEL_DC_SSL_OR_UPGRADE
 
26856
//
 
26857
// MessageText:
 
26858
//
 
26859
//  The contacted domain controller cannot support signed LDAP traffic.  Update the domain controller or configure Certificate Services to use SSL for Active Directory access.
 
26860
//
 
26861
  CERTSRV_E_DOWNLEVEL_DC_SSL_OR_UPGRADE = HRESULT($80094013);
 
26862
  {$EXTERNALSYM CERTSRV_E_DOWNLEVEL_DC_SSL_OR_UPGRADE}
 
26863
 
 
26864
//
 
26865
// MessageId: CERTSRV_E_UNSUPPORTED_CERT_TYPE
 
26866
//
 
26867
// MessageText:
 
26868
//
 
26869
//  The requested certificate template is not supported by this CA.
 
26870
//
 
26871
  CERTSRV_E_UNSUPPORTED_CERT_TYPE = HRESULT($80094800);
 
26872
  {$EXTERNALSYM CERTSRV_E_UNSUPPORTED_CERT_TYPE}
 
26873
 
 
26874
//
 
26875
// MessageId: CERTSRV_E_NO_CERT_TYPE
 
26876
//
 
26877
// MessageText:
 
26878
//
 
26879
//  The request contains no certificate template information.
 
26880
//
 
26881
  CERTSRV_E_NO_CERT_TYPE = HRESULT($80094801);
 
26882
  {$EXTERNALSYM CERTSRV_E_NO_CERT_TYPE}
 
26883
 
 
26884
//
 
26885
// MessageId: CERTSRV_E_TEMPLATE_CONFLICT
 
26886
//
 
26887
// MessageText:
 
26888
//
 
26889
//  The request contains conflicting template information.
 
26890
//
 
26891
  CERTSRV_E_TEMPLATE_CONFLICT = HRESULT($80094802);
 
26892
  {$EXTERNALSYM CERTSRV_E_TEMPLATE_CONFLICT}
 
26893
 
 
26894
//
 
26895
// MessageId: CERTSRV_E_SUBJECT_ALT_NAME_REQUIRED
 
26896
//
 
26897
// MessageText:
 
26898
//
 
26899
//  The request is missing a required Subject Alternate name extension.
 
26900
//
 
26901
  CERTSRV_E_SUBJECT_ALT_NAME_REQUIRED = HRESULT($80094803);
 
26902
  {$EXTERNALSYM CERTSRV_E_SUBJECT_ALT_NAME_REQUIRED}
 
26903
 
 
26904
//
 
26905
// MessageId: CERTSRV_E_ARCHIVED_KEY_REQUIRED
 
26906
//
 
26907
// MessageText:
 
26908
//
 
26909
//  The request is missing a required private key for archival by the server.
 
26910
//
 
26911
  CERTSRV_E_ARCHIVED_KEY_REQUIRED = HRESULT($80094804);
 
26912
  {$EXTERNALSYM CERTSRV_E_ARCHIVED_KEY_REQUIRED}
 
26913
 
 
26914
//
 
26915
// MessageId: CERTSRV_E_SMIME_REQUIRED
 
26916
//
 
26917
// MessageText:
 
26918
//
 
26919
//  The request is missing a required SMIME capabilities extension.
 
26920
//
 
26921
  CERTSRV_E_SMIME_REQUIRED = HRESULT($80094805);
 
26922
  {$EXTERNALSYM CERTSRV_E_SMIME_REQUIRED}
 
26923
 
 
26924
//
 
26925
// MessageId: CERTSRV_E_BAD_RENEWAL_SUBJECT
 
26926
//
 
26927
// MessageText:
 
26928
//
 
26929
//  The request was made on behalf of a subject other than the caller.  The certificate template must be configured to require at least one signature to authorize the request.
 
26930
//
 
26931
  CERTSRV_E_BAD_RENEWAL_SUBJECT = HRESULT($80094806);
 
26932
  {$EXTERNALSYM CERTSRV_E_BAD_RENEWAL_SUBJECT}
 
26933
 
 
26934
//
 
26935
// MessageId: CERTSRV_E_BAD_TEMPLATE_VERSION
 
26936
//
 
26937
// MessageText:
 
26938
//
 
26939
//  The request template version is newer than the supported template version.
 
26940
//
 
26941
  CERTSRV_E_BAD_TEMPLATE_VERSION = HRESULT($80094807);
 
26942
  {$EXTERNALSYM CERTSRV_E_BAD_TEMPLATE_VERSION}
 
26943
 
 
26944
//
 
26945
// MessageId: CERTSRV_E_TEMPLATE_POLICY_REQUIRED
 
26946
//
 
26947
// MessageText:
 
26948
//
 
26949
//  The template is missing a required signature policy attribute.
 
26950
//
 
26951
  CERTSRV_E_TEMPLATE_POLICY_REQUIRED = HRESULT($80094808);
 
26952
  {$EXTERNALSYM CERTSRV_E_TEMPLATE_POLICY_REQUIRED}
 
26953
 
 
26954
//
 
26955
// MessageId: CERTSRV_E_SIGNATURE_POLICY_REQUIRED
 
26956
//
 
26957
// MessageText:
 
26958
//
 
26959
//  The request is missing required signature policy information.
 
26960
//
 
26961
  CERTSRV_E_SIGNATURE_POLICY_REQUIRED = HRESULT($80094809);
 
26962
  {$EXTERNALSYM CERTSRV_E_SIGNATURE_POLICY_REQUIRED}
 
26963
 
 
26964
//
 
26965
// MessageId: CERTSRV_E_SIGNATURE_COUNT
 
26966
//
 
26967
// MessageText:
 
26968
//
 
26969
//  The request is missing one or more required signatures.
 
26970
//
 
26971
  CERTSRV_E_SIGNATURE_COUNT = HRESULT($8009480A);
 
26972
  {$EXTERNALSYM CERTSRV_E_SIGNATURE_COUNT}
 
26973
 
 
26974
//
 
26975
// MessageId: CERTSRV_E_SIGNATURE_REJECTED
 
26976
//
 
26977
// MessageText:
 
26978
//
 
26979
//  One or more signatures did not include the required application or issuance policies.  The request is missing one or more required valid signatures.
 
26980
//
 
26981
  CERTSRV_E_SIGNATURE_REJECTED = HRESULT($8009480B);
 
26982
  {$EXTERNALSYM CERTSRV_E_SIGNATURE_REJECTED}
 
26983
 
 
26984
//
 
26985
// MessageId: CERTSRV_E_ISSUANCE_POLICY_REQUIRED
 
26986
//
 
26987
// MessageText:
 
26988
//
 
26989
//  The request is missing one or more required signature issuance policies.
 
26990
//
 
26991
  CERTSRV_E_ISSUANCE_POLICY_REQUIRED = HRESULT($8009480C);
 
26992
  {$EXTERNALSYM CERTSRV_E_ISSUANCE_POLICY_REQUIRED}
 
26993
 
 
26994
//
 
26995
// MessageId: CERTSRV_E_SUBJECT_UPN_REQUIRED
 
26996
//
 
26997
// MessageText:
 
26998
//
 
26999
//  The UPN is unavailable and cannot be added to the Subject Alternate name.
 
27000
//
 
27001
  CERTSRV_E_SUBJECT_UPN_REQUIRED = HRESULT($8009480D);
 
27002
  {$EXTERNALSYM CERTSRV_E_SUBJECT_UPN_REQUIRED}
 
27003
 
 
27004
//
 
27005
// MessageId: CERTSRV_E_SUBJECT_DIRECTORY_GUID_REQUIRED
 
27006
//
 
27007
// MessageText:
 
27008
//
 
27009
//  The Active Directory GUID is unavailable and cannot be added to the Subject Alternate name.
 
27010
//
 
27011
  CERTSRV_E_SUBJECT_DIRECTORY_GUID_REQUIRED = HRESULT($8009480E);
 
27012
  {$EXTERNALSYM CERTSRV_E_SUBJECT_DIRECTORY_GUID_REQUIRED}
 
27013
 
 
27014
//
 
27015
// MessageId: CERTSRV_E_SUBJECT_DNS_REQUIRED
 
27016
//
 
27017
// MessageText:
 
27018
//
 
27019
//  The DNS name is unavailable and cannot be added to the Subject Alternate name.
 
27020
//
 
27021
  CERTSRV_E_SUBJECT_DNS_REQUIRED = HRESULT($8009480F);
 
27022
  {$EXTERNALSYM CERTSRV_E_SUBJECT_DNS_REQUIRED}
 
27023
 
 
27024
//
 
27025
// MessageId: CERTSRV_E_ARCHIVED_KEY_UNEXPECTED
 
27026
//
 
27027
// MessageText:
 
27028
//
 
27029
//  The request includes a private key for archival by the server, but key archival is not enabled for the specified certificate template.
 
27030
//
 
27031
  CERTSRV_E_ARCHIVED_KEY_UNEXPECTED = HRESULT($80094810);
 
27032
  {$EXTERNALSYM CERTSRV_E_ARCHIVED_KEY_UNEXPECTED}
 
27033
 
 
27034
//
 
27035
// MessageId: CERTSRV_E_KEY_LENGTH
 
27036
//
 
27037
// MessageText:
 
27038
//
 
27039
//  The public key does not meet the minimum size required by the specified certificate template.
 
27040
//
 
27041
  CERTSRV_E_KEY_LENGTH = HRESULT($80094811);
 
27042
  {$EXTERNALSYM CERTSRV_E_KEY_LENGTH}
 
27043
 
 
27044
//
 
27045
// MessageId: CERTSRV_E_SUBJECT_EMAIL_REQUIRED
 
27046
//
 
27047
// MessageText:
 
27048
//
 
27049
//  The EMail name is unavailable and cannot be added to the Subject or Subject Alternate name.
 
27050
//
 
27051
  CERTSRV_E_SUBJECT_EMAIL_REQUIRED = HRESULT($80094812);
 
27052
  {$EXTERNALSYM CERTSRV_E_SUBJECT_EMAIL_REQUIRED}
 
27053
 
 
27054
//
 
27055
// MessageId: CERTSRV_E_UNKNOWN_CERT_TYPE
 
27056
//
 
27057
// MessageText:
 
27058
//
 
27059
//  One or more certificate templates to be enabled on this certification authority could not be found.
 
27060
//
 
27061
  CERTSRV_E_UNKNOWN_CERT_TYPE = HRESULT($80094813);
 
27062
  {$EXTERNALSYM CERTSRV_E_UNKNOWN_CERT_TYPE}
 
27063
 
 
27064
//
 
27065
// MessageId: CERTSRV_E_CERT_TYPE_OVERLAP
 
27066
//
 
27067
// MessageText:
 
27068
//
 
27069
//  The certificate template renewal period is longer than the certificate validity period.  The template should be reconfigured or the CA certificate renewed.
 
27070
//
 
27071
  CERTSRV_E_CERT_TYPE_OVERLAP = HRESULT($80094814);
 
27072
  {$EXTERNALSYM CERTSRV_E_CERT_TYPE_OVERLAP}
 
27073
 
 
27074
//
 
27075
// The range 0x5000-0x51ff is reserved for XENROLL errors.
 
27076
//
 
27077
//
 
27078
// MessageId: XENROLL_E_KEY_NOT_EXPORTABLE
 
27079
//
 
27080
// MessageText:
 
27081
//
 
27082
//  The key is not exportable.
 
27083
//
 
27084
  XENROLL_E_KEY_NOT_EXPORTABLE = HRESULT($80095000);
 
27085
  {$EXTERNALSYM XENROLL_E_KEY_NOT_EXPORTABLE}
 
27086
 
 
27087
//
 
27088
// MessageId: XENROLL_E_CANNOT_ADD_ROOT_CERT
 
27089
//
 
27090
// MessageText:
 
27091
//
 
27092
//  You cannot add the root CA certificate into your local store.
 
27093
//
 
27094
  XENROLL_E_CANNOT_ADD_ROOT_CERT = HRESULT($80095001);
 
27095
  {$EXTERNALSYM XENROLL_E_CANNOT_ADD_ROOT_CERT}
 
27096
 
 
27097
//
 
27098
// MessageId: XENROLL_E_RESPONSE_KA_HASH_NOT_FOUND
 
27099
//
 
27100
// MessageText:
 
27101
//
 
27102
//  The key archival hash attribute was not found in the response.
 
27103
//
 
27104
  XENROLL_E_RESPONSE_KA_HASH_NOT_FOUND = HRESULT($80095002);
 
27105
  {$EXTERNALSYM XENROLL_E_RESPONSE_KA_HASH_NOT_FOUND}
 
27106
 
 
27107
//
 
27108
// MessageId: XENROLL_E_RESPONSE_UNEXPECTED_KA_HASH
 
27109
//
 
27110
// MessageText:
 
27111
//
 
27112
//  An unexpected key archival hash attribute was found in the response.
 
27113
//
 
27114
  XENROLL_E_RESPONSE_UNEXPECTED_KA_HASH = HRESULT($80095003);
 
27115
  {$EXTERNALSYM XENROLL_E_RESPONSE_UNEXPECTED_KA_HASH}
 
27116
 
 
27117
//
 
27118
// MessageId: XENROLL_E_RESPONSE_KA_HASH_MISMATCH
 
27119
//
 
27120
// MessageText:
 
27121
//
 
27122
//  There is a key archival hash mismatch between the request and the response.
 
27123
//
 
27124
  XENROLL_E_RESPONSE_KA_HASH_MISMATCH = HRESULT($80095004);
 
27125
  {$EXTERNALSYM XENROLL_E_RESPONSE_KA_HASH_MISMATCH}
 
27126
 
 
27127
//
 
27128
// MessageId: XENROLL_E_KEYSPEC_SMIME_MISMATCH
 
27129
//
 
27130
// MessageText:
 
27131
//
 
27132
//  Signing certificate cannot include SMIME extension.
 
27133
//
 
27134
  XENROLL_E_KEYSPEC_SMIME_MISMATCH = HRESULT($80095005);
 
27135
  {$EXTERNALSYM XENROLL_E_KEYSPEC_SMIME_MISMATCH}
 
27136
 
 
27137
//
 
27138
// MessageId: TRUST_E_SYSTEM_ERROR
 
27139
//
 
27140
// MessageText:
 
27141
//
 
27142
//  A system-level error occurred while verifying trust.
 
27143
//
 
27144
  TRUST_E_SYSTEM_ERROR = HRESULT($80096001);
 
27145
  {$EXTERNALSYM TRUST_E_SYSTEM_ERROR}
 
27146
 
 
27147
//
 
27148
// MessageId: TRUST_E_NO_SIGNER_CERT
 
27149
//
 
27150
// MessageText:
 
27151
//
 
27152
//  The certificate for the signer of the message is invalid or not found.
 
27153
//
 
27154
  TRUST_E_NO_SIGNER_CERT = HRESULT($80096002);
 
27155
  {$EXTERNALSYM TRUST_E_NO_SIGNER_CERT}
 
27156
 
 
27157
//
 
27158
// MessageId: TRUST_E_COUNTER_SIGNER
 
27159
//
 
27160
// MessageText:
 
27161
//
 
27162
//  One of the counter signatures was invalid.
 
27163
//
 
27164
  TRUST_E_COUNTER_SIGNER = HRESULT($80096003);
 
27165
  {$EXTERNALSYM TRUST_E_COUNTER_SIGNER}
 
27166
 
 
27167
//
 
27168
// MessageId: TRUST_E_CERT_SIGNATURE
 
27169
//
 
27170
// MessageText:
 
27171
//
 
27172
//  The signature of the certificate can not be verified.
 
27173
//
 
27174
  TRUST_E_CERT_SIGNATURE = HRESULT($80096004);
 
27175
  {$EXTERNALSYM TRUST_E_CERT_SIGNATURE}
 
27176
 
 
27177
//
 
27178
// MessageId: TRUST_E_TIME_STAMP
 
27179
//
 
27180
// MessageText:
 
27181
//
 
27182
//  The timestamp signature and/or certificate could not be verified or is malformed.
 
27183
//
 
27184
  TRUST_E_TIME_STAMP = HRESULT($80096005);
 
27185
  {$EXTERNALSYM TRUST_E_TIME_STAMP}
 
27186
 
 
27187
//
 
27188
// MessageId: TRUST_E_BAD_DIGEST
 
27189
//
 
27190
// MessageText:
 
27191
//
 
27192
//  The digital signature of the object did not verify.
 
27193
//
 
27194
  TRUST_E_BAD_DIGEST = HRESULT($80096010);
 
27195
  {$EXTERNALSYM TRUST_E_BAD_DIGEST}
 
27196
 
 
27197
//
 
27198
// MessageId: TRUST_E_BASIC_CONSTRAINTS
 
27199
//
 
27200
// MessageText:
 
27201
//
 
27202
//  A certificate's basic constraint extension has not been observed.
 
27203
//
 
27204
  TRUST_E_BASIC_CONSTRAINTS = HRESULT($80096019);
 
27205
  {$EXTERNALSYM TRUST_E_BASIC_CONSTRAINTS}
 
27206
 
 
27207
//
 
27208
// MessageId: TRUST_E_FINANCIAL_CRITERIA
 
27209
//
 
27210
// MessageText:
 
27211
//
 
27212
//  The certificate does not meet or contain the Authenticode(tm) financial extensions.
 
27213
//
 
27214
  TRUST_E_FINANCIAL_CRITERIA = HRESULT($8009601E);
 
27215
  {$EXTERNALSYM TRUST_E_FINANCIAL_CRITERIA}
 
27216
 
 
27217
//
 
27218
//  Error codes for mssipotf.dll
 
27219
//  Most of the error codes can only occur when an error occurs
 
27220
//    during font file signing
 
27221
//
 
27222
//
 
27223
//
 
27224
// MessageId: MSSIPOTF_E_OUTOFMEMRANGE
 
27225
//
 
27226
// MessageText:
 
27227
//
 
27228
//  Tried to reference a part of the file outside the proper range.
 
27229
//
 
27230
  MSSIPOTF_E_OUTOFMEMRANGE = HRESULT($80097001);
 
27231
  {$EXTERNALSYM MSSIPOTF_E_OUTOFMEMRANGE}
 
27232
 
 
27233
//
 
27234
// MessageId: MSSIPOTF_E_CANTGETOBJECT
 
27235
//
 
27236
// MessageText:
 
27237
//
 
27238
//  Could not retrieve an object from the file.
 
27239
//
 
27240
  MSSIPOTF_E_CANTGETOBJECT = HRESULT($80097002);
 
27241
  {$EXTERNALSYM MSSIPOTF_E_CANTGETOBJECT}
 
27242
 
 
27243
//
 
27244
// MessageId: MSSIPOTF_E_NOHEADTABLE
 
27245
//
 
27246
// MessageText:
 
27247
//
 
27248
//  Could not find the head table in the file.
 
27249
//
 
27250
  MSSIPOTF_E_NOHEADTABLE = HRESULT($80097003);
 
27251
  {$EXTERNALSYM MSSIPOTF_E_NOHEADTABLE}
 
27252
 
 
27253
//
 
27254
// MessageId: MSSIPOTF_E_BAD_MAGICNUMBER
 
27255
//
 
27256
// MessageText:
 
27257
//
 
27258
//  The magic number in the head table is incorrect.
 
27259
//
 
27260
  MSSIPOTF_E_BAD_MAGICNUMBER = HRESULT($80097004);
 
27261
  {$EXTERNALSYM MSSIPOTF_E_BAD_MAGICNUMBER}
 
27262
 
 
27263
//
 
27264
// MessageId: MSSIPOTF_E_BAD_OFFSET_TABLE
 
27265
//
 
27266
// MessageText:
 
27267
//
 
27268
//  The offset table has incorrect values.
 
27269
//
 
27270
  MSSIPOTF_E_BAD_OFFSET_TABLE = HRESULT($80097005);
 
27271
  {$EXTERNALSYM MSSIPOTF_E_BAD_OFFSET_TABLE}
 
27272
 
 
27273
//
 
27274
// MessageId: MSSIPOTF_E_TABLE_TAGORDER
 
27275
//
 
27276
// MessageText:
 
27277
//
 
27278
//  Duplicate table tags or tags out of alphabetical order.
 
27279
//
 
27280
  MSSIPOTF_E_TABLE_TAGORDER = HRESULT($80097006);
 
27281
  {$EXTERNALSYM MSSIPOTF_E_TABLE_TAGORDER}
 
27282
 
 
27283
//
 
27284
// MessageId: MSSIPOTF_E_TABLE_LONGWORD
 
27285
//
 
27286
// MessageText:
 
27287
//
 
27288
//  A table does not start on a long word boundary.
 
27289
//
 
27290
  MSSIPOTF_E_TABLE_LONGWORD = HRESULT($80097007);
 
27291
  {$EXTERNALSYM MSSIPOTF_E_TABLE_LONGWORD}
 
27292
 
 
27293
//
 
27294
// MessageId: MSSIPOTF_E_BAD_FIRST_TABLE_PLACEMENT
 
27295
//
 
27296
// MessageText:
 
27297
//
 
27298
//  First table does not appear after header information.
 
27299
//
 
27300
  MSSIPOTF_E_BAD_FIRST_TABLE_PLACEMENT = HRESULT($80097008);
 
27301
  {$EXTERNALSYM MSSIPOTF_E_BAD_FIRST_TABLE_PLACEMENT}
 
27302
 
 
27303
//
 
27304
// MessageId: MSSIPOTF_E_TABLES_OVERLAP
 
27305
//
 
27306
// MessageText:
 
27307
//
 
27308
//  Two or more tables overlap.
 
27309
//
 
27310
  MSSIPOTF_E_TABLES_OVERLAP = HRESULT($80097009);
 
27311
  {$EXTERNALSYM MSSIPOTF_E_TABLES_OVERLAP}
 
27312
 
 
27313
//
 
27314
// MessageId: MSSIPOTF_E_TABLE_PADBYTES
 
27315
//
 
27316
// MessageText:
 
27317
//
 
27318
//  Too many pad bytes between tables or pad bytes are not 0.
 
27319
//
 
27320
  MSSIPOTF_E_TABLE_PADBYTES = HRESULT($8009700A);
 
27321
  {$EXTERNALSYM MSSIPOTF_E_TABLE_PADBYTES}
 
27322
 
 
27323
//
 
27324
// MessageId: MSSIPOTF_E_FILETOOSMALL
 
27325
//
 
27326
// MessageText:
 
27327
//
 
27328
//  File is too small to contain the last table.
 
27329
//
 
27330
  MSSIPOTF_E_FILETOOSMALL = HRESULT($8009700B);
 
27331
  {$EXTERNALSYM MSSIPOTF_E_FILETOOSMALL}
 
27332
 
 
27333
//
 
27334
// MessageId: MSSIPOTF_E_TABLE_CHECKSUM
 
27335
//
 
27336
// MessageText:
 
27337
//
 
27338
//  A table checksum is incorrect.
 
27339
//
 
27340
  MSSIPOTF_E_TABLE_CHECKSUM = HRESULT($8009700C);
 
27341
  {$EXTERNALSYM MSSIPOTF_E_TABLE_CHECKSUM}
 
27342
 
 
27343
//
 
27344
// MessageId: MSSIPOTF_E_FILE_CHECKSUM
 
27345
//
 
27346
// MessageText:
 
27347
//
 
27348
//  The file checksum is incorrect.
 
27349
//
 
27350
  MSSIPOTF_E_FILE_CHECKSUM = HRESULT($8009700D);
 
27351
  {$EXTERNALSYM MSSIPOTF_E_FILE_CHECKSUM}
 
27352
 
 
27353
//
 
27354
// MessageId: MSSIPOTF_E_FAILED_POLICY
 
27355
//
 
27356
// MessageText:
 
27357
//
 
27358
//  The signature does not have the correct attributes for the policy.
 
27359
//
 
27360
  MSSIPOTF_E_FAILED_POLICY = HRESULT($80097010);
 
27361
  {$EXTERNALSYM MSSIPOTF_E_FAILED_POLICY}
 
27362
 
 
27363
//
 
27364
// MessageId: MSSIPOTF_E_FAILED_HINTS_CHECK
 
27365
//
 
27366
// MessageText:
 
27367
//
 
27368
//  The file did not pass the hints check.
 
27369
//
 
27370
  MSSIPOTF_E_FAILED_HINTS_CHECK = HRESULT($80097011);
 
27371
  {$EXTERNALSYM MSSIPOTF_E_FAILED_HINTS_CHECK}
 
27372
 
 
27373
//
 
27374
// MessageId: MSSIPOTF_E_NOT_OPENTYPE
 
27375
//
 
27376
// MessageText:
 
27377
//
 
27378
//  The file is not an OpenType file.
 
27379
//
 
27380
  MSSIPOTF_E_NOT_OPENTYPE = HRESULT($80097012);
 
27381
  {$EXTERNALSYM MSSIPOTF_E_NOT_OPENTYPE}
 
27382
 
 
27383
//
 
27384
// MessageId: MSSIPOTF_E_FILE
 
27385
//
 
27386
// MessageText:
 
27387
//
 
27388
//  Failed on a file operation (open, map, read, write).
 
27389
//
 
27390
  MSSIPOTF_E_FILE = HRESULT($80097013);
 
27391
  {$EXTERNALSYM MSSIPOTF_E_FILE}
 
27392
 
 
27393
//
 
27394
// MessageId: MSSIPOTF_E_CRYPT
 
27395
//
 
27396
// MessageText:
 
27397
//
 
27398
//  A call to a CryptoAPI function failed.
 
27399
//
 
27400
  MSSIPOTF_E_CRYPT = HRESULT($80097014);
 
27401
  {$EXTERNALSYM MSSIPOTF_E_CRYPT}
 
27402
 
 
27403
//
 
27404
// MessageId: MSSIPOTF_E_BADVERSION
 
27405
//
 
27406
// MessageText:
 
27407
//
 
27408
//  There is a bad version number in the file.
 
27409
//
 
27410
  MSSIPOTF_E_BADVERSION = HRESULT($80097015);
 
27411
  {$EXTERNALSYM MSSIPOTF_E_BADVERSION}
 
27412
 
 
27413
//
 
27414
// MessageId: MSSIPOTF_E_DSIG_STRUCTURE
 
27415
//
 
27416
// MessageText:
 
27417
//
 
27418
//  The structure of the DSIG table is incorrect.
 
27419
//
 
27420
  MSSIPOTF_E_DSIG_STRUCTURE = HRESULT($80097016);
 
27421
  {$EXTERNALSYM MSSIPOTF_E_DSIG_STRUCTURE}
 
27422
 
 
27423
//
 
27424
// MessageId: MSSIPOTF_E_PCONST_CHECK
 
27425
//
 
27426
// MessageText:
 
27427
//
 
27428
//  A check failed in a partially constant table.
 
27429
//
 
27430
  MSSIPOTF_E_PCONST_CHECK = HRESULT($80097017);
 
27431
  {$EXTERNALSYM MSSIPOTF_E_PCONST_CHECK}
 
27432
 
 
27433
//
 
27434
// MessageId: MSSIPOTF_E_STRUCTURE
 
27435
//
 
27436
// MessageText:
 
27437
//
 
27438
//  Some kind of structural error.
 
27439
//
 
27440
  MSSIPOTF_E_STRUCTURE = HRESULT($80097018);
 
27441
  {$EXTERNALSYM MSSIPOTF_E_STRUCTURE}
 
27442
 
 
27443
  NTE_OP_OK = 0;
 
27444
  {$EXTERNALSYM NTE_OP_OK}
 
27445
 
 
27446
//
 
27447
// Note that additional FACILITY_SSPI errors are in issperr.h
 
27448
//
 
27449
// ******************
 
27450
// FACILITY_CERT
 
27451
// ******************
 
27452
//
 
27453
// MessageId: TRUST_E_PROVIDER_UNKNOWN
 
27454
//
 
27455
// MessageText:
 
27456
//
 
27457
//  Unknown trust provider.
 
27458
//
 
27459
  TRUST_E_PROVIDER_UNKNOWN = HRESULT($800B0001);
 
27460
  {$EXTERNALSYM TRUST_E_PROVIDER_UNKNOWN}
 
27461
 
 
27462
//
 
27463
// MessageId: TRUST_E_ACTION_UNKNOWN
 
27464
//
 
27465
// MessageText:
 
27466
//
 
27467
//  The trust verification action specified is not supported by the specified trust provider.
 
27468
//
 
27469
  TRUST_E_ACTION_UNKNOWN = HRESULT($800B0002);
 
27470
  {$EXTERNALSYM TRUST_E_ACTION_UNKNOWN}
 
27471
 
 
27472
//
 
27473
// MessageId: TRUST_E_SUBJECT_FORM_UNKNOWN
 
27474
//
 
27475
// MessageText:
 
27476
//
 
27477
//  The form specified for the subject is not one supported or known by the specified trust provider.
 
27478
//
 
27479
  TRUST_E_SUBJECT_FORM_UNKNOWN = HRESULT($800B0003);
 
27480
  {$EXTERNALSYM TRUST_E_SUBJECT_FORM_UNKNOWN}
 
27481
 
 
27482
//
 
27483
// MessageId: TRUST_E_SUBJECT_NOT_TRUSTED
 
27484
//
 
27485
// MessageText:
 
27486
//
 
27487
//  The subject is not trusted for the specified action.
 
27488
//
 
27489
  TRUST_E_SUBJECT_NOT_TRUSTED = HRESULT($800B0004);
 
27490
  {$EXTERNALSYM TRUST_E_SUBJECT_NOT_TRUSTED}
 
27491
 
 
27492
//
 
27493
// MessageId: DIGSIG_E_ENCODE
 
27494
//
 
27495
// MessageText:
 
27496
//
 
27497
//  Error due to problem in ASN.1 encoding process.
 
27498
//
 
27499
  DIGSIG_E_ENCODE = HRESULT($800B0005);
 
27500
  {$EXTERNALSYM DIGSIG_E_ENCODE}
 
27501
 
 
27502
//
 
27503
// MessageId: DIGSIG_E_DECODE
 
27504
//
 
27505
// MessageText:
 
27506
//
 
27507
//  Error due to problem in ASN.1 decoding process.
 
27508
//
 
27509
  DIGSIG_E_DECODE = HRESULT($800B0006);
 
27510
  {$EXTERNALSYM DIGSIG_E_DECODE}
 
27511
 
 
27512
//
 
27513
// MessageId: DIGSIG_E_EXTENSIBILITY
 
27514
//
 
27515
// MessageText:
 
27516
//
 
27517
//  Reading / writing Extensions where Attributes are appropriate, and visa versa.
 
27518
//
 
27519
  DIGSIG_E_EXTENSIBILITY = HRESULT($800B0007);
 
27520
  {$EXTERNALSYM DIGSIG_E_EXTENSIBILITY}
 
27521
 
 
27522
//
 
27523
// MessageId: DIGSIG_E_CRYPTO
 
27524
//
 
27525
// MessageText:
 
27526
//
 
27527
//  Unspecified cryptographic failure.
 
27528
//
 
27529
  DIGSIG_E_CRYPTO = HRESULT($800B0008);
 
27530
  {$EXTERNALSYM DIGSIG_E_CRYPTO}
 
27531
 
 
27532
//
 
27533
// MessageId: PERSIST_E_SIZEDEFINITE
 
27534
//
 
27535
// MessageText:
 
27536
//
 
27537
//  The size of the data could not be determined.
 
27538
//
 
27539
  PERSIST_E_SIZEDEFINITE = HRESULT($800B0009);
 
27540
  {$EXTERNALSYM PERSIST_E_SIZEDEFINITE}
 
27541
 
 
27542
//
 
27543
// MessageId: PERSIST_E_SIZEINDEFINITE
 
27544
//
 
27545
// MessageText:
 
27546
//
 
27547
//  The size of the indefinite-sized data could not be determined.
 
27548
//
 
27549
  PERSIST_E_SIZEINDEFINITE = HRESULT($800B000A);
 
27550
  {$EXTERNALSYM PERSIST_E_SIZEINDEFINITE}
 
27551
 
 
27552
//
 
27553
// MessageId: PERSIST_E_NOTSELFSIZING
 
27554
//
 
27555
// MessageText:
 
27556
//
 
27557
//  This object does not read and write self-sizing data.
 
27558
//
 
27559
  PERSIST_E_NOTSELFSIZING = HRESULT($800B000B);
 
27560
  {$EXTERNALSYM PERSIST_E_NOTSELFSIZING}
 
27561
 
 
27562
//
 
27563
// MessageId: TRUST_E_NOSIGNATURE
 
27564
//
 
27565
// MessageText:
 
27566
//
 
27567
//  No signature was present in the subject.
 
27568
//
 
27569
  TRUST_E_NOSIGNATURE = HRESULT($800B0100);
 
27570
  {$EXTERNALSYM TRUST_E_NOSIGNATURE}
 
27571
 
 
27572
//
 
27573
// MessageId: CERT_E_EXPIRED
 
27574
//
 
27575
// MessageText:
 
27576
//
 
27577
//  A required certificate is not within its validity period when verifying against the current system clock or the timestamp in the signed file.
 
27578
//
 
27579
  CERT_E_EXPIRED = HRESULT($800B0101);
 
27580
  {$EXTERNALSYM CERT_E_EXPIRED}
 
27581
 
 
27582
//
 
27583
// MessageId: CERT_E_VALIDITYPERIODNESTING
 
27584
//
 
27585
// MessageText:
 
27586
//
 
27587
//  The validity periods of the certification chain do not nest correctly.
 
27588
//
 
27589
  CERT_E_VALIDITYPERIODNESTING = HRESULT($800B0102);
 
27590
  {$EXTERNALSYM CERT_E_VALIDITYPERIODNESTING}
 
27591
 
 
27592
//
 
27593
// MessageId: CERT_E_ROLE
 
27594
//
 
27595
// MessageText:
 
27596
//
 
27597
//  A certificate that can only be used as an end-entity is being used as a CA or visa versa.
 
27598
//
 
27599
  CERT_E_ROLE = HRESULT($800B0103);
 
27600
  {$EXTERNALSYM CERT_E_ROLE}
 
27601
 
 
27602
//
 
27603
// MessageId: CERT_E_PATHLENCONST
 
27604
//
 
27605
// MessageText:
 
27606
//
 
27607
//  A path length constraint in the certification chain has been violated.
 
27608
//
 
27609
  CERT_E_PATHLENCONST = HRESULT($800B0104);
 
27610
  {$EXTERNALSYM CERT_E_PATHLENCONST}
 
27611
 
 
27612
//
 
27613
// MessageId: CERT_E_CRITICAL
 
27614
//
 
27615
// MessageText:
 
27616
//
 
27617
//  A certificate contains an unknown extension that is marked 'critical'.
 
27618
//
 
27619
  CERT_E_CRITICAL = HRESULT($800B0105);
 
27620
  {$EXTERNALSYM CERT_E_CRITICAL}
 
27621
 
 
27622
//
 
27623
// MessageId: CERT_E_PURPOSE
 
27624
//
 
27625
// MessageText:
 
27626
//
 
27627
//  A certificate being used for a purpose other than the ones specified by its CA.
 
27628
//
 
27629
  CERT_E_PURPOSE = HRESULT($800B0106);
 
27630
  {$EXTERNALSYM CERT_E_PURPOSE}
 
27631
 
 
27632
//
 
27633
// MessageId: CERT_E_ISSUERCHAINING
 
27634
//
 
27635
// MessageText:
 
27636
//
 
27637
//  A parent of a given certificate in fact did not issue that child certificate.
 
27638
//
 
27639
  CERT_E_ISSUERCHAINING = HRESULT($800B0107);
 
27640
  {$EXTERNALSYM CERT_E_ISSUERCHAINING}
 
27641
 
 
27642
//
 
27643
// MessageId: CERT_E_MALFORMED
 
27644
//
 
27645
// MessageText:
 
27646
//
 
27647
//  A certificate is missing or has an empty value for an important field, such as a subject or issuer name.
 
27648
//
 
27649
  CERT_E_MALFORMED = HRESULT($800B0108);
 
27650
  {$EXTERNALSYM CERT_E_MALFORMED}
 
27651
 
 
27652
//
 
27653
// MessageId: CERT_E_UNTRUSTEDROOT
 
27654
//
 
27655
// MessageText:
 
27656
//
 
27657
//  A certificate chain processed, but terminated in a root certificate which is not trusted by the trust provider.
 
27658
//
 
27659
  CERT_E_UNTRUSTEDROOT = HRESULT($800B0109);
 
27660
  {$EXTERNALSYM CERT_E_UNTRUSTEDROOT}
 
27661
 
 
27662
//
 
27663
// MessageId: CERT_E_CHAINING
 
27664
//
 
27665
// MessageText:
 
27666
//
 
27667
//  A certificate chain could not be built to a trusted root authority.
 
27668
//
 
27669
  CERT_E_CHAINING = HRESULT($800B010A);
 
27670
  {$EXTERNALSYM CERT_E_CHAINING}
 
27671
 
 
27672
//
 
27673
// MessageId: TRUST_E_FAIL
 
27674
//
 
27675
// MessageText:
 
27676
//
 
27677
//  Generic trust failure.
 
27678
//
 
27679
  TRUST_E_FAIL = HRESULT($800B010B);
 
27680
  {$EXTERNALSYM TRUST_E_FAIL}
 
27681
 
 
27682
//
 
27683
// MessageId: CERT_E_REVOKED
 
27684
//
 
27685
// MessageText:
 
27686
//
 
27687
//  A certificate was explicitly revoked by its issuer.
 
27688
//
 
27689
  CERT_E_REVOKED = HRESULT($800B010C);
 
27690
  {$EXTERNALSYM CERT_E_REVOKED}
 
27691
 
 
27692
//
 
27693
// MessageId: CERT_E_UNTRUSTEDTESTROOT
 
27694
//
 
27695
// MessageText:
 
27696
//
 
27697
//  The certification path terminates with the test root which is not trusted with the current policy settings.
 
27698
//
 
27699
  CERT_E_UNTRUSTEDTESTROOT = HRESULT($800B010D);
 
27700
  {$EXTERNALSYM CERT_E_UNTRUSTEDTESTROOT}
 
27701
 
 
27702
//
 
27703
// MessageId: CERT_E_REVOCATION_FAILURE
 
27704
//
 
27705
// MessageText:
 
27706
//
 
27707
//  The revocation process could not continue - the certificate(s) could not be checked.
 
27708
//
 
27709
  CERT_E_REVOCATION_FAILURE = HRESULT($800B010E);
 
27710
  {$EXTERNALSYM CERT_E_REVOCATION_FAILURE}
 
27711
 
 
27712
//
 
27713
// MessageId: CERT_E_CN_NO_MATCH
 
27714
//
 
27715
// MessageText:
 
27716
//
 
27717
//  The certificate's CN name does not match the passed value.
 
27718
//
 
27719
  CERT_E_CN_NO_MATCH = HRESULT($800B010F);
 
27720
  {$EXTERNALSYM CERT_E_CN_NO_MATCH}
 
27721
 
 
27722
//
 
27723
// MessageId: CERT_E_WRONG_USAGE
 
27724
//
 
27725
// MessageText:
 
27726
//
 
27727
//  The certificate is not valid for the requested usage.
 
27728
//
 
27729
  CERT_E_WRONG_USAGE = HRESULT($800B0110);
 
27730
  {$EXTERNALSYM CERT_E_WRONG_USAGE}
 
27731
 
 
27732
//
 
27733
// MessageId: TRUST_E_EXPLICIT_DISTRUST
 
27734
//
 
27735
// MessageText:
 
27736
//
 
27737
//  The certificate was explicitly marked as untrusted by the user.
 
27738
//
 
27739
  TRUST_E_EXPLICIT_DISTRUST = HRESULT($800B0111);
 
27740
  {$EXTERNALSYM TRUST_E_EXPLICIT_DISTRUST}
 
27741
 
 
27742
//
 
27743
// MessageId: CERT_E_UNTRUSTEDCA
 
27744
//
 
27745
// MessageText:
 
27746
//
 
27747
//  A certification chain processed correctly, but one of the CA certificates is not trusted by the policy provider.
 
27748
//
 
27749
  CERT_E_UNTRUSTEDCA = HRESULT($800B0112);
 
27750
  {$EXTERNALSYM CERT_E_UNTRUSTEDCA}
 
27751
 
 
27752
//
 
27753
// MessageId: CERT_E_INVALID_POLICY
 
27754
//
 
27755
// MessageText:
 
27756
//
 
27757
//  The certificate has invalid policy.
 
27758
//
 
27759
  CERT_E_INVALID_POLICY = HRESULT($800B0113);
 
27760
  {$EXTERNALSYM CERT_E_INVALID_POLICY}
 
27761
 
 
27762
//
 
27763
// MessageId: CERT_E_INVALID_NAME
 
27764
//
 
27765
// MessageText:
 
27766
//
 
27767
//  The certificate has an invalid name. The name is not included in the permitted list or is explicitly excluded.
 
27768
//
 
27769
  CERT_E_INVALID_NAME = HRESULT($800B0114);
 
27770
  {$EXTERNALSYM CERT_E_INVALID_NAME}
 
27771
 
 
27772
// *****************
 
27773
// FACILITY_SETUPAPI
 
27774
// *****************
 
27775
//
 
27776
// Since these error codes aren't in the standard Win32 range (i.e., 0-64K), define a
 
27777
// macro to map either Win32 or SetupAPI error codes into an HRESULT.
 
27778
//
 
27779
 
 
27780
function HRESULT_FROM_SETUPAPI(x: DWORD): HRESULT;
 
27781
{$EXTERNALSYM HRESULT_FROM_SETUPAPI}
 
27782
 
 
27783
//
 
27784
// MessageId: SPAPI_E_EXPECTED_SECTION_NAME
 
27785
//
 
27786
// MessageText:
 
27787
//
 
27788
//  A non-empty line was encountered in the INF before the start of a section.
 
27789
//
 
27790
 
 
27791
const
 
27792
  SPAPI_E_EXPECTED_SECTION_NAME = HRESULT($800F0000);
 
27793
  {$EXTERNALSYM SPAPI_E_EXPECTED_SECTION_NAME}
 
27794
 
 
27795
//
 
27796
// MessageId: SPAPI_E_BAD_SECTION_NAME_LINE
 
27797
//
 
27798
// MessageText:
 
27799
//
 
27800
//  A section name marker in the INF is not complete, or does not exist on a line by itself.
 
27801
//
 
27802
  SPAPI_E_BAD_SECTION_NAME_LINE = HRESULT($800F0001);
 
27803
  {$EXTERNALSYM SPAPI_E_BAD_SECTION_NAME_LINE}
 
27804
 
 
27805
//
 
27806
// MessageId: SPAPI_E_SECTION_NAME_TOO_LONG
 
27807
//
 
27808
// MessageText:
 
27809
//
 
27810
//  An INF section was encountered whose name exceeds the maximum section name length.
 
27811
//
 
27812
  SPAPI_E_SECTION_NAME_TOO_LONG = HRESULT($800F0002);
 
27813
  {$EXTERNALSYM SPAPI_E_SECTION_NAME_TOO_LONG}
 
27814
 
 
27815
//
 
27816
// MessageId: SPAPI_E_GENERAL_SYNTAX
 
27817
//
 
27818
// MessageText:
 
27819
//
 
27820
//  The syntax of the INF is invalid.
 
27821
//
 
27822
  SPAPI_E_GENERAL_SYNTAX = HRESULT($800F0003);
 
27823
  {$EXTERNALSYM SPAPI_E_GENERAL_SYNTAX}
 
27824
 
 
27825
//
 
27826
// MessageId: SPAPI_E_WRONG_INF_STYLE
 
27827
//
 
27828
// MessageText:
 
27829
//
 
27830
//  The style of the INF is different than what was requested.
 
27831
//
 
27832
  SPAPI_E_WRONG_INF_STYLE = HRESULT($800F0100);
 
27833
  {$EXTERNALSYM SPAPI_E_WRONG_INF_STYLE}
 
27834
 
 
27835
//
 
27836
// MessageId: SPAPI_E_SECTION_NOT_FOUND
 
27837
//
 
27838
// MessageText:
 
27839
//
 
27840
//  The required section was not found in the INF.
 
27841
//
 
27842
  SPAPI_E_SECTION_NOT_FOUND = HRESULT($800F0101);
 
27843
  {$EXTERNALSYM SPAPI_E_SECTION_NOT_FOUND}
 
27844
 
 
27845
//
 
27846
// MessageId: SPAPI_E_LINE_NOT_FOUND
 
27847
//
 
27848
// MessageText:
 
27849
//
 
27850
//  The required line was not found in the INF.
 
27851
//
 
27852
  SPAPI_E_LINE_NOT_FOUND = HRESULT($800F0102);
 
27853
  {$EXTERNALSYM SPAPI_E_LINE_NOT_FOUND}
 
27854
 
 
27855
//
 
27856
// MessageId: SPAPI_E_NO_BACKUP
 
27857
//
 
27858
// MessageText:
 
27859
//
 
27860
//  The files affected by the installation of this file queue have not been backed up for uninstall.
 
27861
//
 
27862
  SPAPI_E_NO_BACKUP = HRESULT($800F0103);
 
27863
  {$EXTERNALSYM SPAPI_E_NO_BACKUP}
 
27864
 
 
27865
//
 
27866
// MessageId: SPAPI_E_NO_ASSOCIATED_CLASS
 
27867
//
 
27868
// MessageText:
 
27869
//
 
27870
//  The INF or the device information set or element does not have an associated install class.
 
27871
//
 
27872
  SPAPI_E_NO_ASSOCIATED_CLASS = HRESULT($800F0200);
 
27873
  {$EXTERNALSYM SPAPI_E_NO_ASSOCIATED_CLASS}
 
27874
 
 
27875
//
 
27876
// MessageId: SPAPI_E_CLASS_MISMATCH
 
27877
//
 
27878
// MessageText:
 
27879
//
 
27880
//  The INF or the device information set or element does not match the specified install class.
 
27881
//
 
27882
  SPAPI_E_CLASS_MISMATCH = HRESULT($800F0201);
 
27883
  {$EXTERNALSYM SPAPI_E_CLASS_MISMATCH}
 
27884
 
 
27885
//
 
27886
// MessageId: SPAPI_E_DUPLICATE_FOUND
 
27887
//
 
27888
// MessageText:
 
27889
//
 
27890
//  An existing device was found that is a duplicate of the device being manually installed.
 
27891
//
 
27892
  SPAPI_E_DUPLICATE_FOUND = HRESULT($800F0202);
 
27893
  {$EXTERNALSYM SPAPI_E_DUPLICATE_FOUND}
 
27894
 
 
27895
//
 
27896
// MessageId: SPAPI_E_NO_DRIVER_SELECTED
 
27897
//
 
27898
// MessageText:
 
27899
//
 
27900
//  There is no driver selected for the device information set or element.
 
27901
//
 
27902
  SPAPI_E_NO_DRIVER_SELECTED = HRESULT($800F0203);
 
27903
  {$EXTERNALSYM SPAPI_E_NO_DRIVER_SELECTED}
 
27904
 
 
27905
//
 
27906
// MessageId: SPAPI_E_KEY_DOES_NOT_EXIST
 
27907
//
 
27908
// MessageText:
 
27909
//
 
27910
//  The requested device registry key does not exist.
 
27911
//
 
27912
  SPAPI_E_KEY_DOES_NOT_EXIST = HRESULT($800F0204);
 
27913
  {$EXTERNALSYM SPAPI_E_KEY_DOES_NOT_EXIST}
 
27914
 
 
27915
//
 
27916
// MessageId: SPAPI_E_INVALID_DEVINST_NAME
 
27917
//
 
27918
// MessageText:
 
27919
//
 
27920
//  The device instance name is invalid.
 
27921
//
 
27922
  SPAPI_E_INVALID_DEVINST_NAME = HRESULT($800F0205);
 
27923
  {$EXTERNALSYM SPAPI_E_INVALID_DEVINST_NAME}
 
27924
 
 
27925
//
 
27926
// MessageId: SPAPI_E_INVALID_CLASS
 
27927
//
 
27928
// MessageText:
 
27929
//
 
27930
//  The install class is not present or is invalid.
 
27931
//
 
27932
  SPAPI_E_INVALID_CLASS = HRESULT($800F0206);
 
27933
  {$EXTERNALSYM SPAPI_E_INVALID_CLASS}
 
27934
 
 
27935
//
 
27936
// MessageId: SPAPI_E_DEVINST_ALREADY_EXISTS
 
27937
//
 
27938
// MessageText:
 
27939
//
 
27940
//  The device instance cannot be created because it already exists.
 
27941
//
 
27942
  SPAPI_E_DEVINST_ALREADY_EXISTS = HRESULT($800F0207);
 
27943
  {$EXTERNALSYM SPAPI_E_DEVINST_ALREADY_EXISTS}
 
27944
 
 
27945
//
 
27946
// MessageId: SPAPI_E_DEVINFO_NOT_REGISTERED
 
27947
//
 
27948
// MessageText:
 
27949
//
 
27950
//  The operation cannot be performed on a device information element that has not been registered.
 
27951
//
 
27952
  SPAPI_E_DEVINFO_NOT_REGISTERED = HRESULT($800F0208);
 
27953
  {$EXTERNALSYM SPAPI_E_DEVINFO_NOT_REGISTERED}
 
27954
 
 
27955
//
 
27956
// MessageId: SPAPI_E_INVALID_REG_PROPERTY
 
27957
//
 
27958
// MessageText:
 
27959
//
 
27960
//  The device property code is invalid.
 
27961
//
 
27962
  SPAPI_E_INVALID_REG_PROPERTY = HRESULT($800F0209);
 
27963
  {$EXTERNALSYM SPAPI_E_INVALID_REG_PROPERTY}
 
27964
 
 
27965
//
 
27966
// MessageId: SPAPI_E_NO_INF
 
27967
//
 
27968
// MessageText:
 
27969
//
 
27970
//  The INF from which a driver list is to be built does not exist.
 
27971
//
 
27972
  SPAPI_E_NO_INF = HRESULT($800F020A);
 
27973
  {$EXTERNALSYM SPAPI_E_NO_INF}
 
27974
 
 
27975
//
 
27976
// MessageId: SPAPI_E_NO_SUCH_DEVINST
 
27977
//
 
27978
// MessageText:
 
27979
//
 
27980
//  The device instance does not exist in the hardware tree.
 
27981
//
 
27982
  SPAPI_E_NO_SUCH_DEVINST = HRESULT($800F020B);
 
27983
  {$EXTERNALSYM SPAPI_E_NO_SUCH_DEVINST}
 
27984
 
 
27985
//
 
27986
// MessageId: SPAPI_E_CANT_LOAD_CLASS_ICON
 
27987
//
 
27988
// MessageText:
 
27989
//
 
27990
//  The icon representing this install class cannot be loaded.
 
27991
//
 
27992
  SPAPI_E_CANT_LOAD_CLASS_ICON = HRESULT($800F020C);
 
27993
  {$EXTERNALSYM SPAPI_E_CANT_LOAD_CLASS_ICON}
 
27994
 
 
27995
//
 
27996
// MessageId: SPAPI_E_INVALID_CLASS_INSTALLER
 
27997
//
 
27998
// MessageText:
 
27999
//
 
28000
//  The class installer registry entry is invalid.
 
28001
//
 
28002
  SPAPI_E_INVALID_CLASS_INSTALLER = HRESULT($800F020D);
 
28003
  {$EXTERNALSYM SPAPI_E_INVALID_CLASS_INSTALLER}
 
28004
 
 
28005
//
 
28006
// MessageId: SPAPI_E_DI_DO_DEFAULT
 
28007
//
 
28008
// MessageText:
 
28009
//
 
28010
//  The class installer has indicated that the default action should be performed for this installation request.
 
28011
//
 
28012
  SPAPI_E_DI_DO_DEFAULT = HRESULT($800F020E);
 
28013
  {$EXTERNALSYM SPAPI_E_DI_DO_DEFAULT}
 
28014
 
 
28015
//
 
28016
// MessageId: SPAPI_E_DI_NOFILECOPY
 
28017
//
 
28018
// MessageText:
 
28019
//
 
28020
//  The operation does not require any files to be copied.
 
28021
//
 
28022
  SPAPI_E_DI_NOFILECOPY = HRESULT($800F020F);
 
28023
  {$EXTERNALSYM SPAPI_E_DI_NOFILECOPY}
 
28024
 
 
28025
//
 
28026
// MessageId: SPAPI_E_INVALID_HWPROFILE
 
28027
//
 
28028
// MessageText:
 
28029
//
 
28030
//  The specified hardware profile does not exist.
 
28031
//
 
28032
  SPAPI_E_INVALID_HWPROFILE = HRESULT($800F0210);
 
28033
  {$EXTERNALSYM SPAPI_E_INVALID_HWPROFILE}
 
28034
 
 
28035
//
 
28036
// MessageId: SPAPI_E_NO_DEVICE_SELECTED
 
28037
//
 
28038
// MessageText:
 
28039
//
 
28040
//  There is no device information element currently selected for this device information set.
 
28041
//
 
28042
  SPAPI_E_NO_DEVICE_SELECTED = HRESULT($800F0211);
 
28043
  {$EXTERNALSYM SPAPI_E_NO_DEVICE_SELECTED}
 
28044
 
 
28045
//
 
28046
// MessageId: SPAPI_E_DEVINFO_LIST_LOCKED
 
28047
//
 
28048
// MessageText:
 
28049
//
 
28050
//  The operation cannot be performed because the device information set is locked.
 
28051
//
 
28052
  SPAPI_E_DEVINFO_LIST_LOCKED = HRESULT($800F0212);
 
28053
  {$EXTERNALSYM SPAPI_E_DEVINFO_LIST_LOCKED}
 
28054
 
 
28055
//
 
28056
// MessageId: SPAPI_E_DEVINFO_DATA_LOCKED
 
28057
//
 
28058
// MessageText:
 
28059
//
 
28060
//  The operation cannot be performed because the device information element is locked.
 
28061
//
 
28062
  SPAPI_E_DEVINFO_DATA_LOCKED = HRESULT($800F0213);
 
28063
  {$EXTERNALSYM SPAPI_E_DEVINFO_DATA_LOCKED}
 
28064
 
 
28065
//
 
28066
// MessageId: SPAPI_E_DI_BAD_PATH
 
28067
//
 
28068
// MessageText:
 
28069
//
 
28070
//  The specified path does not contain any applicable device INFs.
 
28071
//
 
28072
  SPAPI_E_DI_BAD_PATH = HRESULT($800F0214);
 
28073
  {$EXTERNALSYM SPAPI_E_DI_BAD_PATH}
 
28074
 
 
28075
//
 
28076
// MessageId: SPAPI_E_NO_CLASSINSTALL_PARAMS
 
28077
//
 
28078
// MessageText:
 
28079
//
 
28080
//  No class installer parameters have been set for the device information set or element.
 
28081
//
 
28082
  SPAPI_E_NO_CLASSINSTALL_PARAMS = HRESULT($800F0215);
 
28083
  {$EXTERNALSYM SPAPI_E_NO_CLASSINSTALL_PARAMS}
 
28084
 
 
28085
//
 
28086
// MessageId: SPAPI_E_FILEQUEUE_LOCKED
 
28087
//
 
28088
// MessageText:
 
28089
//
 
28090
//  The operation cannot be performed because the file queue is locked.
 
28091
//
 
28092
  SPAPI_E_FILEQUEUE_LOCKED = HRESULT($800F0216);
 
28093
  {$EXTERNALSYM SPAPI_E_FILEQUEUE_LOCKED}
 
28094
 
 
28095
//
 
28096
// MessageId: SPAPI_E_BAD_SERVICE_INSTALLSECT
 
28097
//
 
28098
// MessageText:
 
28099
//
 
28100
//  A service installation section in this INF is invalid.
 
28101
//
 
28102
  SPAPI_E_BAD_SERVICE_INSTALLSECT = HRESULT($800F0217);
 
28103
  {$EXTERNALSYM SPAPI_E_BAD_SERVICE_INSTALLSECT}
 
28104
 
 
28105
//
 
28106
// MessageId: SPAPI_E_NO_CLASS_DRIVER_LIST
 
28107
//
 
28108
// MessageText:
 
28109
//
 
28110
//  There is no class driver list for the device information element.
 
28111
//
 
28112
  SPAPI_E_NO_CLASS_DRIVER_LIST = HRESULT($800F0218);
 
28113
  {$EXTERNALSYM SPAPI_E_NO_CLASS_DRIVER_LIST}
 
28114
 
 
28115
//
 
28116
// MessageId: SPAPI_E_NO_ASSOCIATED_SERVICE
 
28117
//
 
28118
// MessageText:
 
28119
//
 
28120
//  The installation failed because a function driver was not specified for this device instance.
 
28121
//
 
28122
  SPAPI_E_NO_ASSOCIATED_SERVICE = HRESULT($800F0219);
 
28123
  {$EXTERNALSYM SPAPI_E_NO_ASSOCIATED_SERVICE}
 
28124
 
 
28125
//
 
28126
// MessageId: SPAPI_E_NO_DEFAULT_DEVICE_INTERFACE
 
28127
//
 
28128
// MessageText:
 
28129
//
 
28130
//  There is presently no default device interface designated for this interface class.
 
28131
//
 
28132
  SPAPI_E_NO_DEFAULT_DEVICE_INTERFACE = HRESULT($800F021A);
 
28133
  {$EXTERNALSYM SPAPI_E_NO_DEFAULT_DEVICE_INTERFACE}
 
28134
 
 
28135
//
 
28136
// MessageId: SPAPI_E_DEVICE_INTERFACE_ACTIVE
 
28137
//
 
28138
// MessageText:
 
28139
//
 
28140
//  The operation cannot be performed because the device interface is currently active.
 
28141
//
 
28142
  SPAPI_E_DEVICE_INTERFACE_ACTIVE = HRESULT($800F021B);
 
28143
  {$EXTERNALSYM SPAPI_E_DEVICE_INTERFACE_ACTIVE}
 
28144
 
 
28145
//
 
28146
// MessageId: SPAPI_E_DEVICE_INTERFACE_REMOVED
 
28147
//
 
28148
// MessageText:
 
28149
//
 
28150
//  The operation cannot be performed because the device interface has been removed from the system.
 
28151
//
 
28152
  SPAPI_E_DEVICE_INTERFACE_REMOVED = HRESULT($800F021C);
 
28153
  {$EXTERNALSYM SPAPI_E_DEVICE_INTERFACE_REMOVED}
 
28154
 
 
28155
//
 
28156
// MessageId: SPAPI_E_BAD_INTERFACE_INSTALLSECT
 
28157
//
 
28158
// MessageText:
 
28159
//
 
28160
//  An interface installation section in this INF is invalid.
 
28161
//
 
28162
  SPAPI_E_BAD_INTERFACE_INSTALLSECT = HRESULT($800F021D);
 
28163
  {$EXTERNALSYM SPAPI_E_BAD_INTERFACE_INSTALLSECT}
 
28164
 
 
28165
//
 
28166
// MessageId: SPAPI_E_NO_SUCH_INTERFACE_CLASS
 
28167
//
 
28168
// MessageText:
 
28169
//
 
28170
//  This interface class does not exist in the system.
 
28171
//
 
28172
  SPAPI_E_NO_SUCH_INTERFACE_CLASS = HRESULT($800F021E);
 
28173
  {$EXTERNALSYM SPAPI_E_NO_SUCH_INTERFACE_CLASS}
 
28174
 
 
28175
//
 
28176
// MessageId: SPAPI_E_INVALID_REFERENCE_STRING
 
28177
//
 
28178
// MessageText:
 
28179
//
 
28180
//  The reference string supplied for this interface device is invalid.
 
28181
//
 
28182
  SPAPI_E_INVALID_REFERENCE_STRING = HRESULT($800F021F);
 
28183
  {$EXTERNALSYM SPAPI_E_INVALID_REFERENCE_STRING}
 
28184
 
 
28185
//
 
28186
// MessageId: SPAPI_E_INVALID_MACHINENAME
 
28187
//
 
28188
// MessageText:
 
28189
//
 
28190
//  The specified machine name does not conform to UNC naming conventions.
 
28191
//
 
28192
  SPAPI_E_INVALID_MACHINENAME = HRESULT($800F0220);
 
28193
  {$EXTERNALSYM SPAPI_E_INVALID_MACHINENAME}
 
28194
 
 
28195
//
 
28196
// MessageId: SPAPI_E_REMOTE_COMM_FAILURE
 
28197
//
 
28198
// MessageText:
 
28199
//
 
28200
//  A general remote communication error occurred.
 
28201
//
 
28202
  SPAPI_E_REMOTE_COMM_FAILURE = HRESULT($800F0221);
 
28203
  {$EXTERNALSYM SPAPI_E_REMOTE_COMM_FAILURE}
 
28204
 
 
28205
//
 
28206
// MessageId: SPAPI_E_MACHINE_UNAVAILABLE
 
28207
//
 
28208
// MessageText:
 
28209
//
 
28210
//  The machine selected for remote communication is not available at this time.
 
28211
//
 
28212
  SPAPI_E_MACHINE_UNAVAILABLE = HRESULT($800F0222);
 
28213
  {$EXTERNALSYM SPAPI_E_MACHINE_UNAVAILABLE}
 
28214
 
 
28215
//
 
28216
// MessageId: SPAPI_E_NO_CONFIGMGR_SERVICES
 
28217
//
 
28218
// MessageText:
 
28219
//
 
28220
//  The Plug and Play service is not available on the remote machine.
 
28221
//
 
28222
  SPAPI_E_NO_CONFIGMGR_SERVICES = HRESULT($800F0223);
 
28223
  {$EXTERNALSYM SPAPI_E_NO_CONFIGMGR_SERVICES}
 
28224
 
 
28225
//
 
28226
// MessageId: SPAPI_E_INVALID_PROPPAGE_PROVIDER
 
28227
//
 
28228
// MessageText:
 
28229
//
 
28230
//  The property page provider registry entry is invalid.
 
28231
//
 
28232
  SPAPI_E_INVALID_PROPPAGE_PROVIDER = HRESULT($800F0224);
 
28233
  {$EXTERNALSYM SPAPI_E_INVALID_PROPPAGE_PROVIDER}
 
28234
 
 
28235
//
 
28236
// MessageId: SPAPI_E_NO_SUCH_DEVICE_INTERFACE
 
28237
//
 
28238
// MessageText:
 
28239
//
 
28240
//  The requested device interface is not present in the system.
 
28241
//
 
28242
  SPAPI_E_NO_SUCH_DEVICE_INTERFACE = HRESULT($800F0225);
 
28243
  {$EXTERNALSYM SPAPI_E_NO_SUCH_DEVICE_INTERFACE}
 
28244
 
 
28245
//
 
28246
// MessageId: SPAPI_E_DI_POSTPROCESSING_REQUIRED
 
28247
//
 
28248
// MessageText:
 
28249
//
 
28250
//  The device's co-installer has additional work to perform after installation is complete.
 
28251
//
 
28252
  SPAPI_E_DI_POSTPROCESSING_REQUIRED = HRESULT($800F0226);
 
28253
  {$EXTERNALSYM SPAPI_E_DI_POSTPROCESSING_REQUIRED}
 
28254
 
 
28255
//
 
28256
// MessageId: SPAPI_E_INVALID_COINSTALLER
 
28257
//
 
28258
// MessageText:
 
28259
//
 
28260
//  The device's co-installer is invalid.
 
28261
//
 
28262
  SPAPI_E_INVALID_COINSTALLER = HRESULT($800F0227);
 
28263
  {$EXTERNALSYM SPAPI_E_INVALID_COINSTALLER}
 
28264
 
 
28265
//
 
28266
// MessageId: SPAPI_E_NO_COMPAT_DRIVERS
 
28267
//
 
28268
// MessageText:
 
28269
//
 
28270
//  There are no compatible drivers for this device.
 
28271
//
 
28272
  SPAPI_E_NO_COMPAT_DRIVERS = HRESULT($800F0228);
 
28273
  {$EXTERNALSYM SPAPI_E_NO_COMPAT_DRIVERS}
 
28274
 
 
28275
//
 
28276
// MessageId: SPAPI_E_NO_DEVICE_ICON
 
28277
//
 
28278
// MessageText:
 
28279
//
 
28280
//  There is no icon that represents this device or device type.
 
28281
//
 
28282
  SPAPI_E_NO_DEVICE_ICON = HRESULT($800F0229);
 
28283
  {$EXTERNALSYM SPAPI_E_NO_DEVICE_ICON}
 
28284
 
 
28285
//
 
28286
// MessageId: SPAPI_E_INVALID_INF_LOGCONFIG
 
28287
//
 
28288
// MessageText:
 
28289
//
 
28290
//  A logical configuration specified in this INF is invalid.
 
28291
//
 
28292
  SPAPI_E_INVALID_INF_LOGCONFIG = HRESULT($800F022A);
 
28293
  {$EXTERNALSYM SPAPI_E_INVALID_INF_LOGCONFIG}
 
28294
 
 
28295
//
 
28296
// MessageId: SPAPI_E_DI_DONT_INSTALL
 
28297
//
 
28298
// MessageText:
 
28299
//
 
28300
//  The class installer has denied the request to install or upgrade this device.
 
28301
//
 
28302
  SPAPI_E_DI_DONT_INSTALL = HRESULT($800F022B);
 
28303
  {$EXTERNALSYM SPAPI_E_DI_DONT_INSTALL}
 
28304
 
 
28305
//
 
28306
// MessageId: SPAPI_E_INVALID_FILTER_DRIVER
 
28307
//
 
28308
// MessageText:
 
28309
//
 
28310
//  One of the filter drivers installed for this device is invalid.
 
28311
//
 
28312
  SPAPI_E_INVALID_FILTER_DRIVER = HRESULT($800F022C);
 
28313
  {$EXTERNALSYM SPAPI_E_INVALID_FILTER_DRIVER}
 
28314
 
 
28315
//
 
28316
// MessageId: SPAPI_E_NON_WINDOWS_NT_DRIVER
 
28317
//
 
28318
// MessageText:
 
28319
//
 
28320
//  The driver selected for this device does not support Windows XP.
 
28321
//
 
28322
  SPAPI_E_NON_WINDOWS_NT_DRIVER = HRESULT($800F022D);
 
28323
  {$EXTERNALSYM SPAPI_E_NON_WINDOWS_NT_DRIVER}
 
28324
 
 
28325
//
 
28326
// MessageId: SPAPI_E_NON_WINDOWS_DRIVER
 
28327
//
 
28328
// MessageText:
 
28329
//
 
28330
//  The driver selected for this device does not support Windows.
 
28331
//
 
28332
  SPAPI_E_NON_WINDOWS_DRIVER = HRESULT($800F022E);
 
28333
  {$EXTERNALSYM SPAPI_E_NON_WINDOWS_DRIVER}
 
28334
 
 
28335
//
 
28336
// MessageId: SPAPI_E_NO_CATALOG_FOR_OEM_INF
 
28337
//
 
28338
// MessageText:
 
28339
//
 
28340
//  The third-party INF does not contain digital signature information.
 
28341
//
 
28342
  SPAPI_E_NO_CATALOG_FOR_OEM_INF = HRESULT($800F022F);
 
28343
  {$EXTERNALSYM SPAPI_E_NO_CATALOG_FOR_OEM_INF}
 
28344
 
 
28345
//
 
28346
// MessageId: SPAPI_E_DEVINSTALL_QUEUE_NONNATIVE
 
28347
//
 
28348
// MessageText:
 
28349
//
 
28350
//  An invalid attempt was made to use a device installation file queue for verification of digital signatures relative to other platforms.
 
28351
//
 
28352
  SPAPI_E_DEVINSTALL_QUEUE_NONNATIVE = HRESULT($800F0230);
 
28353
  {$EXTERNALSYM SPAPI_E_DEVINSTALL_QUEUE_NONNATIVE}
 
28354
 
 
28355
//
 
28356
// MessageId: SPAPI_E_NOT_DISABLEABLE
 
28357
//
 
28358
// MessageText:
 
28359
//
 
28360
//  The device cannot be disabled.
 
28361
//
 
28362
  SPAPI_E_NOT_DISABLEABLE = HRESULT($800F0231);
 
28363
  {$EXTERNALSYM SPAPI_E_NOT_DISABLEABLE}
 
28364
 
 
28365
//
 
28366
// MessageId: SPAPI_E_CANT_REMOVE_DEVINST
 
28367
//
 
28368
// MessageText:
 
28369
//
 
28370
//  The device could not be dynamically removed.
 
28371
//
 
28372
  SPAPI_E_CANT_REMOVE_DEVINST = HRESULT($800F0232);
 
28373
  {$EXTERNALSYM SPAPI_E_CANT_REMOVE_DEVINST}
 
28374
 
 
28375
//
 
28376
// MessageId: SPAPI_E_INVALID_TARGET
 
28377
//
 
28378
// MessageText:
 
28379
//
 
28380
//  Cannot copy to specified target.
 
28381
//
 
28382
  SPAPI_E_INVALID_TARGET = HRESULT($800F0233);
 
28383
  {$EXTERNALSYM SPAPI_E_INVALID_TARGET}
 
28384
 
 
28385
//
 
28386
// MessageId: SPAPI_E_DRIVER_NONNATIVE
 
28387
//
 
28388
// MessageText:
 
28389
//
 
28390
//  Driver is not intended for this platform.
 
28391
//
 
28392
  SPAPI_E_DRIVER_NONNATIVE = HRESULT($800F0234);
 
28393
  {$EXTERNALSYM SPAPI_E_DRIVER_NONNATIVE}
 
28394
 
 
28395
//
 
28396
// MessageId: SPAPI_E_IN_WOW64
 
28397
//
 
28398
// MessageText:
 
28399
//
 
28400
//  Operation not allowed in WOW64.
 
28401
//
 
28402
  SPAPI_E_IN_WOW64 = HRESULT($800F0235);
 
28403
  {$EXTERNALSYM SPAPI_E_IN_WOW64}
 
28404
 
 
28405
//
 
28406
// MessageId: SPAPI_E_SET_SYSTEM_RESTORE_POINT
 
28407
//
 
28408
// MessageText:
 
28409
//
 
28410
//  The operation involving unsigned file copying was rolled back, so that a system restore point could be set.
 
28411
//
 
28412
  SPAPI_E_SET_SYSTEM_RESTORE_POINT = HRESULT($800F0236);
 
28413
  {$EXTERNALSYM SPAPI_E_SET_SYSTEM_RESTORE_POINT}
 
28414
 
 
28415
//
 
28416
// MessageId: SPAPI_E_INCORRECTLY_COPIED_INF
 
28417
//
 
28418
// MessageText:
 
28419
//
 
28420
//  An INF was copied into the Windows INF directory in an improper manner.
 
28421
//
 
28422
  SPAPI_E_INCORRECTLY_COPIED_INF = HRESULT($800F0237);
 
28423
  {$EXTERNALSYM SPAPI_E_INCORRECTLY_COPIED_INF}
 
28424
 
 
28425
//
 
28426
// MessageId: SPAPI_E_SCE_DISABLED
 
28427
//
 
28428
// MessageText:
 
28429
//
 
28430
//  The Security Configuration Editor (SCE) APIs have been disabled on this Embedded product.
 
28431
//
 
28432
  SPAPI_E_SCE_DISABLED = HRESULT($800F0238);
 
28433
  {$EXTERNALSYM SPAPI_E_SCE_DISABLED}
 
28434
 
 
28435
//
 
28436
// MessageId: SPAPI_E_UNKNOWN_EXCEPTION
 
28437
//
 
28438
// MessageText:
 
28439
//
 
28440
//  An unknown exception was encountered.
 
28441
//
 
28442
  SPAPI_E_UNKNOWN_EXCEPTION = HRESULT($800F0239);
 
28443
  {$EXTERNALSYM SPAPI_E_UNKNOWN_EXCEPTION}
 
28444
 
 
28445
//
 
28446
// MessageId: SPAPI_E_PNP_REGISTRY_ERROR
 
28447
//
 
28448
// MessageText:
 
28449
//
 
28450
//  A problem was encountered when accessing the Plug and Play registry database.
 
28451
//
 
28452
  SPAPI_E_PNP_REGISTRY_ERROR = HRESULT($800F023A);
 
28453
  {$EXTERNALSYM SPAPI_E_PNP_REGISTRY_ERROR}
 
28454
 
 
28455
//
 
28456
// MessageId: SPAPI_E_REMOTE_REQUEST_UNSUPPORTED
 
28457
//
 
28458
// MessageText:
 
28459
//
 
28460
//  The requested operation is not supported for a remote machine.
 
28461
//
 
28462
  SPAPI_E_REMOTE_REQUEST_UNSUPPORTED = HRESULT($800F023B);
 
28463
  {$EXTERNALSYM SPAPI_E_REMOTE_REQUEST_UNSUPPORTED}
 
28464
 
 
28465
//
 
28466
// MessageId: SPAPI_E_NOT_AN_INSTALLED_OEM_INF
 
28467
//
 
28468
// MessageText:
 
28469
//
 
28470
//  The specified file is not an installed OEM INF.
 
28471
//
 
28472
  SPAPI_E_NOT_AN_INSTALLED_OEM_INF = HRESULT($800F023C);
 
28473
  {$EXTERNALSYM SPAPI_E_NOT_AN_INSTALLED_OEM_INF}
 
28474
 
 
28475
//
 
28476
// MessageId: SPAPI_E_INF_IN_USE_BY_DEVICES
 
28477
//
 
28478
// MessageText:
 
28479
//
 
28480
//  One or more devices are presently installed using the specified INF.
 
28481
//
 
28482
  SPAPI_E_INF_IN_USE_BY_DEVICES = HRESULT($800F023D);
 
28483
  {$EXTERNALSYM SPAPI_E_INF_IN_USE_BY_DEVICES}
 
28484
 
 
28485
//
 
28486
// MessageId: SPAPI_E_DI_FUNCTION_OBSOLETE
 
28487
//
 
28488
// MessageText:
 
28489
//
 
28490
//  The requested device install operation is obsolete.
 
28491
//
 
28492
  SPAPI_E_DI_FUNCTION_OBSOLETE = HRESULT($800F023E);
 
28493
  {$EXTERNALSYM SPAPI_E_DI_FUNCTION_OBSOLETE}
 
28494
 
 
28495
//
 
28496
// MessageId: SPAPI_E_NO_AUTHENTICODE_CATALOG
 
28497
//
 
28498
// MessageText:
 
28499
//
 
28500
//  A file could not be verified because it does not have an associated catalog signed via Authenticode(tm).
 
28501
//
 
28502
  SPAPI_E_NO_AUTHENTICODE_CATALOG = HRESULT($800F023F);
 
28503
  {$EXTERNALSYM SPAPI_E_NO_AUTHENTICODE_CATALOG}
 
28504
 
 
28505
//
 
28506
// MessageId: SPAPI_E_AUTHENTICODE_DISALLOWED
 
28507
//
 
28508
// MessageText:
 
28509
//
 
28510
//  Authenticode(tm) signature verification is not supported for the specified INF.
 
28511
//
 
28512
  SPAPI_E_AUTHENTICODE_DISALLOWED = HRESULT($800F0240);
 
28513
  {$EXTERNALSYM SPAPI_E_AUTHENTICODE_DISALLOWED}
 
28514
 
 
28515
//
 
28516
// MessageId: SPAPI_E_AUTHENTICODE_TRUSTED_PUBLISHER
 
28517
//
 
28518
// MessageText:
 
28519
//
 
28520
//  The INF was signed with an Authenticode(tm) catalog from a trusted publisher.
 
28521
//
 
28522
  SPAPI_E_AUTHENTICODE_TRUSTED_PUBLISHER = HRESULT($800F0241);
 
28523
  {$EXTERNALSYM SPAPI_E_AUTHENTICODE_TRUSTED_PUBLISHER}
 
28524
 
 
28525
//
 
28526
// MessageId: SPAPI_E_AUTHENTICODE_TRUST_NOT_ESTABLISHED
 
28527
//
 
28528
// MessageText:
 
28529
//
 
28530
//  The publisher of an Authenticode(tm) signed catalog has not yet been established as trusted.
 
28531
//
 
28532
  SPAPI_E_AUTHENTICODE_TRUST_NOT_ESTABLISHED = HRESULT($800F0242);
 
28533
  {$EXTERNALSYM SPAPI_E_AUTHENTICODE_TRUST_NOT_ESTABLISHED}
 
28534
 
 
28535
//
 
28536
// MessageId: SPAPI_E_AUTHENTICODE_PUBLISHER_NOT_TRUSTED
 
28537
//
 
28538
// MessageText:
 
28539
//
 
28540
//  The publisher of an Authenticode(tm) signed catalog was not established as trusted.
 
28541
//
 
28542
  SPAPI_E_AUTHENTICODE_PUBLISHER_NOT_TRUSTED = HRESULT($800F0243);
 
28543
  {$EXTERNALSYM SPAPI_E_AUTHENTICODE_PUBLISHER_NOT_TRUSTED}
 
28544
 
 
28545
//
 
28546
// MessageId: SPAPI_E_SIGNATURE_OSATTRIBUTE_MISMATCH
 
28547
//
 
28548
// MessageText:
 
28549
//
 
28550
//  The software was tested for compliance with Windows Logo requirements on a different version of Windows, and may not be compatible with this version.
 
28551
//
 
28552
  SPAPI_E_SIGNATURE_OSATTRIBUTE_MISMATCH = HRESULT($800F0244);
 
28553
  {$EXTERNALSYM SPAPI_E_SIGNATURE_OSATTRIBUTE_MISMATCH}
 
28554
 
 
28555
//
 
28556
// MessageId: SPAPI_E_ONLY_VALIDATE_VIA_AUTHENTICODE
 
28557
//
 
28558
// MessageText:
 
28559
//
 
28560
//  The file may only be validated by a catalog signed via Authenticode(tm).
 
28561
//
 
28562
  SPAPI_E_ONLY_VALIDATE_VIA_AUTHENTICODE = HRESULT($800F0245);
 
28563
  {$EXTERNALSYM SPAPI_E_ONLY_VALIDATE_VIA_AUTHENTICODE}
 
28564
 
 
28565
//
 
28566
// MessageId: SPAPI_E_UNRECOVERABLE_STACK_OVERFLOW
 
28567
//
 
28568
// MessageText:
 
28569
//
 
28570
//  An unrecoverable stack overflow was encountered.
 
28571
//
 
28572
  SPAPI_E_UNRECOVERABLE_STACK_OVERFLOW = HRESULT($800F0300);
 
28573
  {$EXTERNALSYM SPAPI_E_UNRECOVERABLE_STACK_OVERFLOW}
 
28574
 
 
28575
//
 
28576
// MessageId: SPAPI_E_ERROR_NOT_INSTALLED
 
28577
//
 
28578
// MessageText:
 
28579
//
 
28580
//  No installed components were detected.
 
28581
//
 
28582
  SPAPI_E_ERROR_NOT_INSTALLED = HRESULT($800F1000);
 
28583
  {$EXTERNALSYM SPAPI_E_ERROR_NOT_INSTALLED}
 
28584
 
 
28585
// *****************
 
28586
// FACILITY_SCARD
 
28587
// *****************
 
28588
//
 
28589
// =============================
 
28590
// Facility SCARD Error Messages
 
28591
// =============================
 
28592
//
 
28593
  SCARD_S_SUCCESS = NO_ERROR;
 
28594
  {$EXTERNALSYM SCARD_S_SUCCESS}
 
28595
//
 
28596
// MessageId: SCARD_F_INTERNAL_ERROR
 
28597
//
 
28598
// MessageText:
 
28599
//
 
28600
//  An internal consistency check failed.
 
28601
//
 
28602
  SCARD_F_INTERNAL_ERROR = HRESULT($80100001);
 
28603
  {$EXTERNALSYM SCARD_F_INTERNAL_ERROR}
 
28604
 
 
28605
//
 
28606
// MessageId: SCARD_E_CANCELLED
 
28607
//
 
28608
// MessageText:
 
28609
//
 
28610
//  The action was cancelled by an SCardCancel request.
 
28611
//
 
28612
  SCARD_E_CANCELLED = HRESULT($80100002);
 
28613
  {$EXTERNALSYM SCARD_E_CANCELLED}
 
28614
 
 
28615
//
 
28616
// MessageId: SCARD_E_INVALID_HANDLE
 
28617
//
 
28618
// MessageText:
 
28619
//
 
28620
//  The supplied handle was invalid.
 
28621
//
 
28622
  SCARD_E_INVALID_HANDLE = HRESULT($80100003);
 
28623
  {$EXTERNALSYM SCARD_E_INVALID_HANDLE}
 
28624
 
 
28625
//
 
28626
// MessageId: SCARD_E_INVALID_PARAMETER
 
28627
//
 
28628
// MessageText:
 
28629
//
 
28630
//  One or more of the supplied parameters could not be properly interpreted.
 
28631
//
 
28632
  SCARD_E_INVALID_PARAMETER = HRESULT($80100004);
 
28633
  {$EXTERNALSYM SCARD_E_INVALID_PARAMETER}
 
28634
 
 
28635
//
 
28636
// MessageId: SCARD_E_INVALID_TARGET
 
28637
//
 
28638
// MessageText:
 
28639
//
 
28640
//  Registry startup information is missing or invalid.
 
28641
//
 
28642
  SCARD_E_INVALID_TARGET = HRESULT($80100005);
 
28643
  {$EXTERNALSYM SCARD_E_INVALID_TARGET}
 
28644
 
 
28645
//
 
28646
// MessageId: SCARD_E_NO_MEMORY
 
28647
//
 
28648
// MessageText:
 
28649
//
 
28650
//  Not enough memory available to complete this command.
 
28651
//
 
28652
  SCARD_E_NO_MEMORY = HRESULT($80100006);
 
28653
  {$EXTERNALSYM SCARD_E_NO_MEMORY}
 
28654
 
 
28655
//
 
28656
// MessageId: SCARD_F_WAITED_TOO_LONG
 
28657
//
 
28658
// MessageText:
 
28659
//
 
28660
//  An internal consistency timer has expired.
 
28661
//
 
28662
  SCARD_F_WAITED_TOO_LONG = HRESULT($80100007);
 
28663
  {$EXTERNALSYM SCARD_F_WAITED_TOO_LONG}
 
28664
 
 
28665
//
 
28666
// MessageId: SCARD_E_INSUFFICIENT_BUFFER
 
28667
//
 
28668
// MessageText:
 
28669
//
 
28670
//  The data buffer to receive returned data is too small for the returned data.
 
28671
//
 
28672
  SCARD_E_INSUFFICIENT_BUFFER = HRESULT($80100008);
 
28673
  {$EXTERNALSYM SCARD_E_INSUFFICIENT_BUFFER}
 
28674
 
 
28675
//
 
28676
// MessageId: SCARD_E_UNKNOWN_READER
 
28677
//
 
28678
// MessageText:
 
28679
//
 
28680
//  The specified reader name is not recognized.
 
28681
//
 
28682
  SCARD_E_UNKNOWN_READER = HRESULT($80100009);
 
28683
  {$EXTERNALSYM SCARD_E_UNKNOWN_READER}
 
28684
 
 
28685
//
 
28686
// MessageId: SCARD_E_TIMEOUT
 
28687
//
 
28688
// MessageText:
 
28689
//
 
28690
//  The user-specified timeout value has expired.
 
28691
//
 
28692
  SCARD_E_TIMEOUT = HRESULT($8010000A);
 
28693
  {$EXTERNALSYM SCARD_E_TIMEOUT}
 
28694
 
 
28695
//
 
28696
// MessageId: SCARD_E_SHARING_VIOLATION
 
28697
//
 
28698
// MessageText:
 
28699
//
 
28700
//  The smart card cannot be accessed because of other connections outstanding.
 
28701
//
 
28702
  SCARD_E_SHARING_VIOLATION = HRESULT($8010000B);
 
28703
  {$EXTERNALSYM SCARD_E_SHARING_VIOLATION}
 
28704
 
 
28705
//
 
28706
// MessageId: SCARD_E_NO_SMARTCARD
 
28707
//
 
28708
// MessageText:
 
28709
//
 
28710
//  The operation requires a Smart Card, but no Smart Card is currently in the device.
 
28711
//
 
28712
  SCARD_E_NO_SMARTCARD = HRESULT($8010000C);
 
28713
  {$EXTERNALSYM SCARD_E_NO_SMARTCARD}
 
28714
 
 
28715
//
 
28716
// MessageId: SCARD_E_UNKNOWN_CARD
 
28717
//
 
28718
// MessageText:
 
28719
//
 
28720
//  The specified smart card name is not recognized.
 
28721
//
 
28722
  SCARD_E_UNKNOWN_CARD = HRESULT($8010000D);
 
28723
  {$EXTERNALSYM SCARD_E_UNKNOWN_CARD}
 
28724
 
 
28725
//
 
28726
// MessageId: SCARD_E_CANT_DISPOSE
 
28727
//
 
28728
// MessageText:
 
28729
//
 
28730
//  The system could not dispose of the media in the requested manner.
 
28731
//
 
28732
  SCARD_E_CANT_DISPOSE = HRESULT($8010000E);
 
28733
  {$EXTERNALSYM SCARD_E_CANT_DISPOSE}
 
28734
 
 
28735
//
 
28736
// MessageId: SCARD_E_PROTO_MISMATCH
 
28737
//
 
28738
// MessageText:
 
28739
//
 
28740
//  The requested protocols are incompatible with the protocol currently in use with the smart card.
 
28741
//
 
28742
  SCARD_E_PROTO_MISMATCH = HRESULT($8010000F);
 
28743
  {$EXTERNALSYM SCARD_E_PROTO_MISMATCH}
 
28744
 
 
28745
//
 
28746
// MessageId: SCARD_E_NOT_READY
 
28747
//
 
28748
// MessageText:
 
28749
//
 
28750
//  The reader or smart card is not ready to accept commands.
 
28751
//
 
28752
  SCARD_E_NOT_READY = HRESULT($80100010);
 
28753
  {$EXTERNALSYM SCARD_E_NOT_READY}
 
28754
 
 
28755
//
 
28756
// MessageId: SCARD_E_INVALID_VALUE
 
28757
//
 
28758
// MessageText:
 
28759
//
 
28760
//  One or more of the supplied parameters values could not be properly interpreted.
 
28761
//
 
28762
  SCARD_E_INVALID_VALUE = HRESULT($80100011);
 
28763
  {$EXTERNALSYM SCARD_E_INVALID_VALUE}
 
28764
 
 
28765
//
 
28766
// MessageId: SCARD_E_SYSTEM_CANCELLED
 
28767
//
 
28768
// MessageText:
 
28769
//
 
28770
//  The action was cancelled by the system, presumably to log off or shut down.
 
28771
//
 
28772
  SCARD_E_SYSTEM_CANCELLED = HRESULT($80100012);
 
28773
  {$EXTERNALSYM SCARD_E_SYSTEM_CANCELLED}
 
28774
 
 
28775
//
 
28776
// MessageId: SCARD_F_COMM_ERROR
 
28777
//
 
28778
// MessageText:
 
28779
//
 
28780
//  An internal communications error has been detected.
 
28781
//
 
28782
  SCARD_F_COMM_ERROR = HRESULT($80100013);
 
28783
  {$EXTERNALSYM SCARD_F_COMM_ERROR}
 
28784
 
 
28785
//
 
28786
// MessageId: SCARD_F_UNKNOWN_ERROR
 
28787
//
 
28788
// MessageText:
 
28789
//
 
28790
//  An internal error has been detected, but the source is unknown.
 
28791
//
 
28792
  SCARD_F_UNKNOWN_ERROR = HRESULT($80100014);
 
28793
  {$EXTERNALSYM SCARD_F_UNKNOWN_ERROR}
 
28794
 
 
28795
//
 
28796
// MessageId: SCARD_E_INVALID_ATR
 
28797
//
 
28798
// MessageText:
 
28799
//
 
28800
//  An ATR obtained from the registry is not a valid ATR string.
 
28801
//
 
28802
  SCARD_E_INVALID_ATR = HRESULT($80100015);
 
28803
  {$EXTERNALSYM SCARD_E_INVALID_ATR}
 
28804
 
 
28805
//
 
28806
// MessageId: SCARD_E_NOT_TRANSACTED
 
28807
//
 
28808
// MessageText:
 
28809
//
 
28810
//  An attempt was made to end a non-existent transaction.
 
28811
//
 
28812
  SCARD_E_NOT_TRANSACTED = HRESULT($80100016);
 
28813
  {$EXTERNALSYM SCARD_E_NOT_TRANSACTED}
 
28814
 
 
28815
//
 
28816
// MessageId: SCARD_E_READER_UNAVAILABLE
 
28817
//
 
28818
// MessageText:
 
28819
//
 
28820
//  The specified reader is not currently available for use.
 
28821
//
 
28822
  SCARD_E_READER_UNAVAILABLE = HRESULT($80100017);
 
28823
  {$EXTERNALSYM SCARD_E_READER_UNAVAILABLE}
 
28824
 
 
28825
//
 
28826
// MessageId: SCARD_P_SHUTDOWN
 
28827
//
 
28828
// MessageText:
 
28829
//
 
28830
//  The operation has been aborted to allow the server application to exit.
 
28831
//
 
28832
  SCARD_P_SHUTDOWN = HRESULT($80100018);
 
28833
  {$EXTERNALSYM SCARD_P_SHUTDOWN}
 
28834
 
 
28835
//
 
28836
// MessageId: SCARD_E_PCI_TOO_SMALL
 
28837
//
 
28838
// MessageText:
 
28839
//
 
28840
//  The PCI Receive buffer was too small.
 
28841
//
 
28842
  SCARD_E_PCI_TOO_SMALL = HRESULT($80100019);
 
28843
  {$EXTERNALSYM SCARD_E_PCI_TOO_SMALL}
 
28844
 
 
28845
//
 
28846
// MessageId: SCARD_E_READER_UNSUPPORTED
 
28847
//
 
28848
// MessageText:
 
28849
//
 
28850
//  The reader driver does not meet minimal requirements for support.
 
28851
//
 
28852
  SCARD_E_READER_UNSUPPORTED = HRESULT($8010001A);
 
28853
  {$EXTERNALSYM SCARD_E_READER_UNSUPPORTED}
 
28854
 
 
28855
//
 
28856
// MessageId: SCARD_E_DUPLICATE_READER
 
28857
//
 
28858
// MessageText:
 
28859
//
 
28860
//  The reader driver did not produce a unique reader name.
 
28861
//
 
28862
  SCARD_E_DUPLICATE_READER = HRESULT($8010001B);
 
28863
  {$EXTERNALSYM SCARD_E_DUPLICATE_READER}
 
28864
 
 
28865
//
 
28866
// MessageId: SCARD_E_CARD_UNSUPPORTED
 
28867
//
 
28868
// MessageText:
 
28869
//
 
28870
//  The smart card does not meet minimal requirements for support.
 
28871
//
 
28872
  SCARD_E_CARD_UNSUPPORTED = HRESULT($8010001C);
 
28873
  {$EXTERNALSYM SCARD_E_CARD_UNSUPPORTED}
 
28874
 
 
28875
//
 
28876
// MessageId: SCARD_E_NO_SERVICE
 
28877
//
 
28878
// MessageText:
 
28879
//
 
28880
//  The Smart card resource manager is not running.
 
28881
//
 
28882
  SCARD_E_NO_SERVICE = HRESULT($8010001D);
 
28883
  {$EXTERNALSYM SCARD_E_NO_SERVICE}
 
28884
 
 
28885
//
 
28886
// MessageId: SCARD_E_SERVICE_STOPPED
 
28887
//
 
28888
// MessageText:
 
28889
//
 
28890
//  The Smart card resource manager has shut down.
 
28891
//
 
28892
  SCARD_E_SERVICE_STOPPED = HRESULT($8010001E);
 
28893
  {$EXTERNALSYM SCARD_E_SERVICE_STOPPED}
 
28894
 
 
28895
//
 
28896
// MessageId: SCARD_E_UNEXPECTED
 
28897
//
 
28898
// MessageText:
 
28899
//
 
28900
//  An unexpected card error has occurred.
 
28901
//
 
28902
  SCARD_E_UNEXPECTED = HRESULT($8010001F);
 
28903
  {$EXTERNALSYM SCARD_E_UNEXPECTED}
 
28904
 
 
28905
//
 
28906
// MessageId: SCARD_E_ICC_INSTALLATION
 
28907
//
 
28908
// MessageText:
 
28909
//
 
28910
//  No Primary Provider can be found for the smart card.
 
28911
//
 
28912
  SCARD_E_ICC_INSTALLATION = HRESULT($80100020);
 
28913
  {$EXTERNALSYM SCARD_E_ICC_INSTALLATION}
 
28914
 
 
28915
//
 
28916
// MessageId: SCARD_E_ICC_CREATEORDER
 
28917
//
 
28918
// MessageText:
 
28919
//
 
28920
//  The requested order of object creation is not supported.
 
28921
//
 
28922
  SCARD_E_ICC_CREATEORDER = HRESULT($80100021);
 
28923
  {$EXTERNALSYM SCARD_E_ICC_CREATEORDER}
 
28924
 
 
28925
//
 
28926
// MessageId: SCARD_E_UNSUPPORTED_FEATURE
 
28927
//
 
28928
// MessageText:
 
28929
//
 
28930
//  This smart card does not support the requested feature.
 
28931
//
 
28932
  SCARD_E_UNSUPPORTED_FEATURE = HRESULT($80100022);
 
28933
  {$EXTERNALSYM SCARD_E_UNSUPPORTED_FEATURE}
 
28934
 
 
28935
//
 
28936
// MessageId: SCARD_E_DIR_NOT_FOUND
 
28937
//
 
28938
// MessageText:
 
28939
//
 
28940
//  The identified directory does not exist in the smart card.
 
28941
//
 
28942
  SCARD_E_DIR_NOT_FOUND = HRESULT($80100023);
 
28943
  {$EXTERNALSYM SCARD_E_DIR_NOT_FOUND}
 
28944
 
 
28945
//
 
28946
// MessageId: SCARD_E_FILE_NOT_FOUND
 
28947
//
 
28948
// MessageText:
 
28949
//
 
28950
//  The identified file does not exist in the smart card.
 
28951
//
 
28952
  SCARD_E_FILE_NOT_FOUND = HRESULT($80100024);
 
28953
  {$EXTERNALSYM SCARD_E_FILE_NOT_FOUND}
 
28954
 
 
28955
//
 
28956
// MessageId: SCARD_E_NO_DIR
 
28957
//
 
28958
// MessageText:
 
28959
//
 
28960
//  The supplied path does not represent a smart card directory.
 
28961
//
 
28962
  SCARD_E_NO_DIR = HRESULT($80100025);
 
28963
  {$EXTERNALSYM SCARD_E_NO_DIR}
 
28964
 
 
28965
//
 
28966
// MessageId: SCARD_E_NO_FILE
 
28967
//
 
28968
// MessageText:
 
28969
//
 
28970
//  The supplied path does not represent a smart card file.
 
28971
//
 
28972
  SCARD_E_NO_FILE = HRESULT($80100026);
 
28973
  {$EXTERNALSYM SCARD_E_NO_FILE}
 
28974
 
 
28975
//
 
28976
// MessageId: SCARD_E_NO_ACCESS
 
28977
//
 
28978
// MessageText:
 
28979
//
 
28980
//  Access is denied to this file.
 
28981
//
 
28982
  SCARD_E_NO_ACCESS = HRESULT($80100027);
 
28983
  {$EXTERNALSYM SCARD_E_NO_ACCESS}
 
28984
 
 
28985
//
 
28986
// MessageId: SCARD_E_WRITE_TOO_MANY
 
28987
//
 
28988
// MessageText:
 
28989
//
 
28990
//  The smartcard does not have enough memory to store the information.
 
28991
//
 
28992
  SCARD_E_WRITE_TOO_MANY = HRESULT($80100028);
 
28993
  {$EXTERNALSYM SCARD_E_WRITE_TOO_MANY}
 
28994
 
 
28995
//
 
28996
// MessageId: SCARD_E_BAD_SEEK
 
28997
//
 
28998
// MessageText:
 
28999
//
 
29000
//  There was an error trying to set the smart card file object pointer.
 
29001
//
 
29002
  SCARD_E_BAD_SEEK = HRESULT($80100029);
 
29003
  {$EXTERNALSYM SCARD_E_BAD_SEEK}
 
29004
 
 
29005
//
 
29006
// MessageId: SCARD_E_INVALID_CHV
 
29007
//
 
29008
// MessageText:
 
29009
//
 
29010
//  The supplied PIN is incorrect.
 
29011
//
 
29012
  SCARD_E_INVALID_CHV = HRESULT($8010002A);
 
29013
  {$EXTERNALSYM SCARD_E_INVALID_CHV}
 
29014
 
 
29015
//
 
29016
// MessageId: SCARD_E_UNKNOWN_RES_MNG
 
29017
//
 
29018
// MessageText:
 
29019
//
 
29020
//  An unrecognized error code was returned from a layered component.
 
29021
//
 
29022
  SCARD_E_UNKNOWN_RES_MNG = HRESULT($8010002B);
 
29023
  {$EXTERNALSYM SCARD_E_UNKNOWN_RES_MNG}
 
29024
 
 
29025
//
 
29026
// MessageId: SCARD_E_NO_SUCH_CERTIFICATE
 
29027
//
 
29028
// MessageText:
 
29029
//
 
29030
//  The requested certificate does not exist.
 
29031
//
 
29032
  SCARD_E_NO_SUCH_CERTIFICATE = HRESULT($8010002C);
 
29033
  {$EXTERNALSYM SCARD_E_NO_SUCH_CERTIFICATE}
 
29034
 
 
29035
//
 
29036
// MessageId: SCARD_E_CERTIFICATE_UNAVAILABLE
 
29037
//
 
29038
// MessageText:
 
29039
//
 
29040
//  The requested certificate could not be obtained.
 
29041
//
 
29042
  SCARD_E_CERTIFICATE_UNAVAILABLE = HRESULT($8010002D);
 
29043
  {$EXTERNALSYM SCARD_E_CERTIFICATE_UNAVAILABLE}
 
29044
 
 
29045
//
 
29046
// MessageId: SCARD_E_NO_READERS_AVAILABLE
 
29047
//
 
29048
// MessageText:
 
29049
//
 
29050
//  Cannot find a smart card reader.
 
29051
//
 
29052
  SCARD_E_NO_READERS_AVAILABLE = HRESULT($8010002E);
 
29053
  {$EXTERNALSYM SCARD_E_NO_READERS_AVAILABLE}
 
29054
 
 
29055
//
 
29056
// MessageId: SCARD_E_COMM_DATA_LOST
 
29057
//
 
29058
// MessageText:
 
29059
//
 
29060
//  A communications error with the smart card has been detected.  Retry the operation.
 
29061
//
 
29062
  SCARD_E_COMM_DATA_LOST = HRESULT($8010002F);
 
29063
  {$EXTERNALSYM SCARD_E_COMM_DATA_LOST}
 
29064
 
 
29065
//
 
29066
// MessageId: SCARD_E_NO_KEY_CONTAINER
 
29067
//
 
29068
// MessageText:
 
29069
//
 
29070
//  The requested key container does not exist on the smart card.
 
29071
//
 
29072
  SCARD_E_NO_KEY_CONTAINER = HRESULT($80100030);
 
29073
  {$EXTERNALSYM SCARD_E_NO_KEY_CONTAINER}
 
29074
 
 
29075
//
 
29076
// MessageId: SCARD_E_SERVER_TOO_BUSY
 
29077
//
 
29078
// MessageText:
 
29079
//
 
29080
//  The Smart card resource manager is too busy to complete this operation.
 
29081
//
 
29082
  SCARD_E_SERVER_TOO_BUSY = HRESULT($80100031);
 
29083
  {$EXTERNALSYM SCARD_E_SERVER_TOO_BUSY}
 
29084
 
 
29085
//
 
29086
// These are warning codes.
 
29087
//
 
29088
//
 
29089
// MessageId: SCARD_W_UNSUPPORTED_CARD
 
29090
//
 
29091
// MessageText:
 
29092
//
 
29093
//  The reader cannot communicate with the smart card, due to ATR configuration conflicts.
 
29094
//
 
29095
  SCARD_W_UNSUPPORTED_CARD = HRESULT($80100065);
 
29096
  {$EXTERNALSYM SCARD_W_UNSUPPORTED_CARD}
 
29097
 
 
29098
//
 
29099
// MessageId: SCARD_W_UNRESPONSIVE_CARD
 
29100
//
 
29101
// MessageText:
 
29102
//
 
29103
//  The smart card is not responding to a reset.
 
29104
//
 
29105
  SCARD_W_UNRESPONSIVE_CARD = HRESULT($80100066);
 
29106
  {$EXTERNALSYM SCARD_W_UNRESPONSIVE_CARD}
 
29107
 
 
29108
//
 
29109
// MessageId: SCARD_W_UNPOWERED_CARD
 
29110
//
 
29111
// MessageText:
 
29112
//
 
29113
//  Power has been removed from the smart card, so that further communication is not possible.
 
29114
//
 
29115
  SCARD_W_UNPOWERED_CARD = HRESULT($80100067);
 
29116
  {$EXTERNALSYM SCARD_W_UNPOWERED_CARD}
 
29117
 
 
29118
//
 
29119
// MessageId: SCARD_W_RESET_CARD
 
29120
//
 
29121
// MessageText:
 
29122
//
 
29123
//  The smart card has been reset, so any shared state information is invalid.
 
29124
//
 
29125
  SCARD_W_RESET_CARD = HRESULT($80100068);
 
29126
  {$EXTERNALSYM SCARD_W_RESET_CARD}
 
29127
 
 
29128
//
 
29129
// MessageId: SCARD_W_REMOVED_CARD
 
29130
//
 
29131
// MessageText:
 
29132
//
 
29133
//  The smart card has been removed, so that further communication is not possible.
 
29134
//
 
29135
  SCARD_W_REMOVED_CARD = HRESULT($80100069);
 
29136
  {$EXTERNALSYM SCARD_W_REMOVED_CARD}
 
29137
 
 
29138
//
 
29139
// MessageId: SCARD_W_SECURITY_VIOLATION
 
29140
//
 
29141
// MessageText:
 
29142
//
 
29143
//  Access was denied because of a security violation.
 
29144
//
 
29145
  SCARD_W_SECURITY_VIOLATION = HRESULT($8010006A);
 
29146
  {$EXTERNALSYM SCARD_W_SECURITY_VIOLATION}
 
29147
 
 
29148
//
 
29149
// MessageId: SCARD_W_WRONG_CHV
 
29150
//
 
29151
// MessageText:
 
29152
//
 
29153
//  The card cannot be accessed because the wrong PIN was presented.
 
29154
//
 
29155
  SCARD_W_WRONG_CHV = HRESULT($8010006B);
 
29156
  {$EXTERNALSYM SCARD_W_WRONG_CHV}
 
29157
 
 
29158
//
 
29159
// MessageId: SCARD_W_CHV_BLOCKED
 
29160
//
 
29161
// MessageText:
 
29162
//
 
29163
//  The card cannot be accessed because the maximum number of PIN entry attempts has been reached.
 
29164
//
 
29165
  SCARD_W_CHV_BLOCKED = HRESULT($8010006C);
 
29166
  {$EXTERNALSYM SCARD_W_CHV_BLOCKED}
 
29167
 
 
29168
//
 
29169
// MessageId: SCARD_W_EOF
 
29170
//
 
29171
// MessageText:
 
29172
//
 
29173
//  The end of the smart card file has been reached.
 
29174
//
 
29175
  SCARD_W_EOF = HRESULT($8010006D);
 
29176
  {$EXTERNALSYM SCARD_W_EOF}
 
29177
 
 
29178
//
 
29179
// MessageId: SCARD_W_CANCELLED_BY_USER
 
29180
//
 
29181
// MessageText:
 
29182
//
 
29183
//  The action was cancelled by the user.
 
29184
//
 
29185
  SCARD_W_CANCELLED_BY_USER = HRESULT($8010006E);
 
29186
  {$EXTERNALSYM SCARD_W_CANCELLED_BY_USER}
 
29187
 
 
29188
//
 
29189
// MessageId: SCARD_W_CARD_NOT_AUTHENTICATED
 
29190
//
 
29191
// MessageText:
 
29192
//
 
29193
//  No PIN was presented to the smart card.
 
29194
//
 
29195
  SCARD_W_CARD_NOT_AUTHENTICATED = HRESULT($8010006F);
 
29196
  {$EXTERNALSYM SCARD_W_CARD_NOT_AUTHENTICATED}
 
29197
 
 
29198
// *****************
 
29199
// FACILITY_COMPLUS
 
29200
// *****************
 
29201
//
 
29202
// ===============================
 
29203
// Facility COMPLUS Error Messages
 
29204
// ===============================
 
29205
//
 
29206
//
 
29207
// The following are the subranges  within the COMPLUS facility
 
29208
// 0x400 - 0x4ff               COMADMIN_E_CAT
 
29209
// 0x600 - 0x6ff               COMQC errors
 
29210
// 0x700 - 0x7ff               MSDTC errors
 
29211
// 0x800 - 0x8ff               Other COMADMIN errors
 
29212
//
 
29213
// COMPLUS Admin errors
 
29214
//
 
29215
//
 
29216
// MessageId: COMADMIN_E_OBJECTERRORS
 
29217
//
 
29218
// MessageText:
 
29219
//
 
29220
//  Errors occurred accessing one or more objects - the ErrorInfo collection may have more detail
 
29221
//
 
29222
  COMADMIN_E_OBJECTERRORS = HRESULT($80110401);
 
29223
  {$EXTERNALSYM COMADMIN_E_OBJECTERRORS}
 
29224
 
 
29225
//
 
29226
// MessageId: COMADMIN_E_OBJECTINVALID
 
29227
//
 
29228
// MessageText:
 
29229
//
 
29230
//  One or more of the object's properties are missing or invalid
 
29231
//
 
29232
  COMADMIN_E_OBJECTINVALID = HRESULT($80110402);
 
29233
  {$EXTERNALSYM COMADMIN_E_OBJECTINVALID}
 
29234
 
 
29235
//
 
29236
// MessageId: COMADMIN_E_KEYMISSING
 
29237
//
 
29238
// MessageText:
 
29239
//
 
29240
//  The object was not found in the catalog
 
29241
//
 
29242
  COMADMIN_E_KEYMISSING = HRESULT($80110403);
 
29243
  {$EXTERNALSYM COMADMIN_E_KEYMISSING}
 
29244
 
 
29245
//
 
29246
// MessageId: COMADMIN_E_ALREADYINSTALLED
 
29247
//
 
29248
// MessageText:
 
29249
//
 
29250
//  The object is already registered
 
29251
//
 
29252
  COMADMIN_E_ALREADYINSTALLED = HRESULT($80110404);
 
29253
  {$EXTERNALSYM COMADMIN_E_ALREADYINSTALLED}
 
29254
 
 
29255
//
 
29256
// MessageId: COMADMIN_E_APP_FILE_WRITEFAIL
 
29257
//
 
29258
// MessageText:
 
29259
//
 
29260
//  Error occurred writing to the application file
 
29261
//
 
29262
  COMADMIN_E_APP_FILE_WRITEFAIL = HRESULT($80110407);
 
29263
  {$EXTERNALSYM COMADMIN_E_APP_FILE_WRITEFAIL}
 
29264
 
 
29265
//
 
29266
// MessageId: COMADMIN_E_APP_FILE_READFAIL
 
29267
//
 
29268
// MessageText:
 
29269
//
 
29270
//  Error occurred reading the application file
 
29271
//
 
29272
  COMADMIN_E_APP_FILE_READFAIL = HRESULT($80110408);
 
29273
  {$EXTERNALSYM COMADMIN_E_APP_FILE_READFAIL}
 
29274
 
 
29275
//
 
29276
// MessageId: COMADMIN_E_APP_FILE_VERSION
 
29277
//
 
29278
// MessageText:
 
29279
//
 
29280
//  Invalid version number in application file
 
29281
//
 
29282
  COMADMIN_E_APP_FILE_VERSION = HRESULT($80110409);
 
29283
  {$EXTERNALSYM COMADMIN_E_APP_FILE_VERSION}
 
29284
 
 
29285
//
 
29286
// MessageId: COMADMIN_E_BADPATH
 
29287
//
 
29288
// MessageText:
 
29289
//
 
29290
//  The file path is invalid
 
29291
//
 
29292
  COMADMIN_E_BADPATH = HRESULT($8011040A);
 
29293
  {$EXTERNALSYM COMADMIN_E_BADPATH}
 
29294
 
 
29295
//
 
29296
// MessageId: COMADMIN_E_APPLICATIONEXISTS
 
29297
//
 
29298
// MessageText:
 
29299
//
 
29300
//  The application is already installed
 
29301
//
 
29302
  COMADMIN_E_APPLICATIONEXISTS = HRESULT($8011040B);
 
29303
  {$EXTERNALSYM COMADMIN_E_APPLICATIONEXISTS}
 
29304
 
 
29305
//
 
29306
// MessageId: COMADMIN_E_ROLEEXISTS
 
29307
//
 
29308
// MessageText:
 
29309
//
 
29310
//  The role already exists
 
29311
//
 
29312
  COMADMIN_E_ROLEEXISTS = HRESULT($8011040C);
 
29313
  {$EXTERNALSYM COMADMIN_E_ROLEEXISTS}
 
29314
 
 
29315
//
 
29316
// MessageId: COMADMIN_E_CANTCOPYFILE
 
29317
//
 
29318
// MessageText:
 
29319
//
 
29320
//  An error occurred copying the file
 
29321
//
 
29322
  COMADMIN_E_CANTCOPYFILE = HRESULT($8011040D);
 
29323
  {$EXTERNALSYM COMADMIN_E_CANTCOPYFILE}
 
29324
 
 
29325
//
 
29326
// MessageId: COMADMIN_E_NOUSER
 
29327
//
 
29328
// MessageText:
 
29329
//
 
29330
//  One or more users are not valid
 
29331
//
 
29332
  COMADMIN_E_NOUSER = HRESULT($8011040F);
 
29333
  {$EXTERNALSYM COMADMIN_E_NOUSER}
 
29334
 
 
29335
//
 
29336
// MessageId: COMADMIN_E_INVALIDUSERIDS
 
29337
//
 
29338
// MessageText:
 
29339
//
 
29340
//  One or more users in the application file are not valid
 
29341
//
 
29342
  COMADMIN_E_INVALIDUSERIDS = HRESULT($80110410);
 
29343
  {$EXTERNALSYM COMADMIN_E_INVALIDUSERIDS}
 
29344
 
 
29345
//
 
29346
// MessageId: COMADMIN_E_NOREGISTRYCLSID
 
29347
//
 
29348
// MessageText:
 
29349
//
 
29350
//  The component's CLSID is missing or corrupt
 
29351
//
 
29352
  COMADMIN_E_NOREGISTRYCLSID = HRESULT($80110411);
 
29353
  {$EXTERNALSYM COMADMIN_E_NOREGISTRYCLSID}
 
29354
 
 
29355
//
 
29356
// MessageId: COMADMIN_E_BADREGISTRYPROGID
 
29357
//
 
29358
// MessageText:
 
29359
//
 
29360
//  The component's progID is missing or corrupt
 
29361
//
 
29362
  COMADMIN_E_BADREGISTRYPROGID = HRESULT($80110412);
 
29363
  {$EXTERNALSYM COMADMIN_E_BADREGISTRYPROGID}
 
29364
 
 
29365
//
 
29366
// MessageId: COMADMIN_E_AUTHENTICATIONLEVEL
 
29367
//
 
29368
// MessageText:
 
29369
//
 
29370
//  Unable to set required authentication level for update request
 
29371
//
 
29372
  COMADMIN_E_AUTHENTICATIONLEVEL = HRESULT($80110413);
 
29373
  {$EXTERNALSYM COMADMIN_E_AUTHENTICATIONLEVEL}
 
29374
 
 
29375
//
 
29376
// MessageId: COMADMIN_E_USERPASSWDNOTVALID
 
29377
//
 
29378
// MessageText:
 
29379
//
 
29380
//  The identity or password set on the application is not valid
 
29381
//
 
29382
  COMADMIN_E_USERPASSWDNOTVALID = HRESULT($80110414);
 
29383
  {$EXTERNALSYM COMADMIN_E_USERPASSWDNOTVALID}
 
29384
 
 
29385
//
 
29386
// MessageId: COMADMIN_E_CLSIDORIIDMISMATCH
 
29387
//
 
29388
// MessageText:
 
29389
//
 
29390
//  Application file CLSIDs or IIDs do not match corresponding DLLs
 
29391
//
 
29392
  COMADMIN_E_CLSIDORIIDMISMATCH = HRESULT($80110418);
 
29393
  {$EXTERNALSYM COMADMIN_E_CLSIDORIIDMISMATCH}
 
29394
 
 
29395
//
 
29396
// MessageId: COMADMIN_E_REMOTEINTERFACE
 
29397
//
 
29398
// MessageText:
 
29399
//
 
29400
//  Interface information is either missing or changed
 
29401
//
 
29402
  COMADMIN_E_REMOTEINTERFACE = HRESULT($80110419);
 
29403
  {$EXTERNALSYM COMADMIN_E_REMOTEINTERFACE}
 
29404
 
 
29405
//
 
29406
// MessageId: COMADMIN_E_DLLREGISTERSERVER
 
29407
//
 
29408
// MessageText:
 
29409
//
 
29410
//  DllRegisterServer failed on component install
 
29411
//
 
29412
  COMADMIN_E_DLLREGISTERSERVER = HRESULT($8011041A);
 
29413
  {$EXTERNALSYM COMADMIN_E_DLLREGISTERSERVER}
 
29414
 
 
29415
//
 
29416
// MessageId: COMADMIN_E_NOSERVERSHARE
 
29417
//
 
29418
// MessageText:
 
29419
//
 
29420
//  No server file share available
 
29421
//
 
29422
  COMADMIN_E_NOSERVERSHARE = HRESULT($8011041B);
 
29423
  {$EXTERNALSYM COMADMIN_E_NOSERVERSHARE}
 
29424
 
 
29425
//
 
29426
// MessageId: COMADMIN_E_DLLLOADFAILED
 
29427
//
 
29428
// MessageText:
 
29429
//
 
29430
//  DLL could not be loaded
 
29431
//
 
29432
  COMADMIN_E_DLLLOADFAILED = HRESULT($8011041D);
 
29433
  {$EXTERNALSYM COMADMIN_E_DLLLOADFAILED}
 
29434
 
 
29435
//
 
29436
// MessageId: COMADMIN_E_BADREGISTRYLIBID
 
29437
//
 
29438
// MessageText:
 
29439
//
 
29440
//  The registered TypeLib ID is not valid
 
29441
//
 
29442
  COMADMIN_E_BADREGISTRYLIBID = HRESULT($8011041E);
 
29443
  {$EXTERNALSYM COMADMIN_E_BADREGISTRYLIBID}
 
29444
 
 
29445
//
 
29446
// MessageId: COMADMIN_E_APPDIRNOTFOUND
 
29447
//
 
29448
// MessageText:
 
29449
//
 
29450
//  Application install directory not found
 
29451
//
 
29452
  COMADMIN_E_APPDIRNOTFOUND = HRESULT($8011041F);
 
29453
  {$EXTERNALSYM COMADMIN_E_APPDIRNOTFOUND}
 
29454
 
 
29455
//
 
29456
// MessageId: COMADMIN_E_REGISTRARFAILED
 
29457
//
 
29458
// MessageText:
 
29459
//
 
29460
//  Errors occurred while in the component registrar
 
29461
//
 
29462
  COMADMIN_E_REGISTRARFAILED = HRESULT($80110423);
 
29463
  {$EXTERNALSYM COMADMIN_E_REGISTRARFAILED}
 
29464
 
 
29465
//
 
29466
// MessageId: COMADMIN_E_COMPFILE_DOESNOTEXIST
 
29467
//
 
29468
// MessageText:
 
29469
//
 
29470
//  The file does not exist
 
29471
//
 
29472
  COMADMIN_E_COMPFILE_DOESNOTEXIST = HRESULT($80110424);
 
29473
  {$EXTERNALSYM COMADMIN_E_COMPFILE_DOESNOTEXIST}
 
29474
 
 
29475
//
 
29476
// MessageId: COMADMIN_E_COMPFILE_LOADDLLFAIL
 
29477
//
 
29478
// MessageText:
 
29479
//
 
29480
//  The DLL could not be loaded
 
29481
//
 
29482
  COMADMIN_E_COMPFILE_LOADDLLFAIL = HRESULT($80110425);
 
29483
  {$EXTERNALSYM COMADMIN_E_COMPFILE_LOADDLLFAIL}
 
29484
 
 
29485
//
 
29486
// MessageId: COMADMIN_E_COMPFILE_GETCLASSOBJ
 
29487
//
 
29488
// MessageText:
 
29489
//
 
29490
//  GetClassObject failed in the DLL
 
29491
//
 
29492
  COMADMIN_E_COMPFILE_GETCLASSOBJ = HRESULT($80110426);
 
29493
  {$EXTERNALSYM COMADMIN_E_COMPFILE_GETCLASSOBJ}
 
29494
 
 
29495
//
 
29496
// MessageId: COMADMIN_E_COMPFILE_CLASSNOTAVAIL
 
29497
//
 
29498
// MessageText:
 
29499
//
 
29500
//  The DLL does not support the components listed in the TypeLib
 
29501
//
 
29502
  COMADMIN_E_COMPFILE_CLASSNOTAVAIL = HRESULT($80110427);
 
29503
  {$EXTERNALSYM COMADMIN_E_COMPFILE_CLASSNOTAVAIL}
 
29504
 
 
29505
//
 
29506
// MessageId: COMADMIN_E_COMPFILE_BADTLB
 
29507
//
 
29508
// MessageText:
 
29509
//
 
29510
//  The TypeLib could not be loaded
 
29511
//
 
29512
  COMADMIN_E_COMPFILE_BADTLB = HRESULT($80110428);
 
29513
  {$EXTERNALSYM COMADMIN_E_COMPFILE_BADTLB}
 
29514
 
 
29515
//
 
29516
// MessageId: COMADMIN_E_COMPFILE_NOTINSTALLABLE
 
29517
//
 
29518
// MessageText:
 
29519
//
 
29520
//  The file does not contain components or component information
 
29521
//
 
29522
  COMADMIN_E_COMPFILE_NOTINSTALLABLE = HRESULT($80110429);
 
29523
  {$EXTERNALSYM COMADMIN_E_COMPFILE_NOTINSTALLABLE}
 
29524
 
 
29525
//
 
29526
// MessageId: COMADMIN_E_NOTCHANGEABLE
 
29527
//
 
29528
// MessageText:
 
29529
//
 
29530
//  Changes to this object and its sub-objects have been disabled
 
29531
//
 
29532
  COMADMIN_E_NOTCHANGEABLE = HRESULT($8011042A);
 
29533
  {$EXTERNALSYM COMADMIN_E_NOTCHANGEABLE}
 
29534
 
 
29535
//
 
29536
// MessageId: COMADMIN_E_NOTDELETEABLE
 
29537
//
 
29538
// MessageText:
 
29539
//
 
29540
//  The delete function has been disabled for this object
 
29541
//
 
29542
  COMADMIN_E_NOTDELETEABLE = HRESULT($8011042B);
 
29543
  {$EXTERNALSYM COMADMIN_E_NOTDELETEABLE}
 
29544
 
 
29545
//
 
29546
// MessageId: COMADMIN_E_SESSION
 
29547
//
 
29548
// MessageText:
 
29549
//
 
29550
//  The server catalog version is not supported
 
29551
//
 
29552
  COMADMIN_E_SESSION = HRESULT($8011042C);
 
29553
  {$EXTERNALSYM COMADMIN_E_SESSION}
 
29554
 
 
29555
//
 
29556
// MessageId: COMADMIN_E_COMP_MOVE_LOCKED
 
29557
//
 
29558
// MessageText:
 
29559
//
 
29560
//  The component move was disallowed, because the source or destination application is either a system application or currently locked against changes
 
29561
//
 
29562
  COMADMIN_E_COMP_MOVE_LOCKED = HRESULT($8011042D);
 
29563
  {$EXTERNALSYM COMADMIN_E_COMP_MOVE_LOCKED}
 
29564
 
 
29565
//
 
29566
// MessageId: COMADMIN_E_COMP_MOVE_BAD_DEST
 
29567
//
 
29568
// MessageText:
 
29569
//
 
29570
//  The component move failed because the destination application no longer exists
 
29571
//
 
29572
  COMADMIN_E_COMP_MOVE_BAD_DEST = HRESULT($8011042E);
 
29573
  {$EXTERNALSYM COMADMIN_E_COMP_MOVE_BAD_DEST}
 
29574
 
 
29575
//
 
29576
// MessageId: COMADMIN_E_REGISTERTLB
 
29577
//
 
29578
// MessageText:
 
29579
//
 
29580
//  The system was unable to register the TypeLib
 
29581
//
 
29582
  COMADMIN_E_REGISTERTLB = HRESULT($80110430);
 
29583
  {$EXTERNALSYM COMADMIN_E_REGISTERTLB}
 
29584
 
 
29585
//
 
29586
// MessageId: COMADMIN_E_SYSTEMAPP
 
29587
//
 
29588
// MessageText:
 
29589
//
 
29590
//  This operation can not be performed on the system application
 
29591
//
 
29592
  COMADMIN_E_SYSTEMAPP = HRESULT($80110433);
 
29593
  {$EXTERNALSYM COMADMIN_E_SYSTEMAPP}
 
29594
 
 
29595
//
 
29596
// MessageId: COMADMIN_E_COMPFILE_NOREGISTRAR
 
29597
//
 
29598
// MessageText:
 
29599
//
 
29600
//  The component registrar referenced in this file is not available
 
29601
//
 
29602
  COMADMIN_E_COMPFILE_NOREGISTRAR = HRESULT($80110434);
 
29603
  {$EXTERNALSYM COMADMIN_E_COMPFILE_NOREGISTRAR}
 
29604
 
 
29605
//
 
29606
// MessageId: COMADMIN_E_COREQCOMPINSTALLED
 
29607
//
 
29608
// MessageText:
 
29609
//
 
29610
//  A component in the same DLL is already installed
 
29611
//
 
29612
  COMADMIN_E_COREQCOMPINSTALLED = HRESULT($80110435);
 
29613
  {$EXTERNALSYM COMADMIN_E_COREQCOMPINSTALLED}
 
29614
 
 
29615
//
 
29616
// MessageId: COMADMIN_E_SERVICENOTINSTALLED
 
29617
//
 
29618
// MessageText:
 
29619
//
 
29620
//  The service is not installed
 
29621
//
 
29622
  COMADMIN_E_SERVICENOTINSTALLED = HRESULT($80110436);
 
29623
  {$EXTERNALSYM COMADMIN_E_SERVICENOTINSTALLED}
 
29624
 
 
29625
//
 
29626
// MessageId: COMADMIN_E_PROPERTYSAVEFAILED
 
29627
//
 
29628
// MessageText:
 
29629
//
 
29630
//  One or more property settings are either invalid or in conflict with each other
 
29631
//
 
29632
  COMADMIN_E_PROPERTYSAVEFAILED = HRESULT($80110437);
 
29633
  {$EXTERNALSYM COMADMIN_E_PROPERTYSAVEFAILED}
 
29634
 
 
29635
//
 
29636
// MessageId: COMADMIN_E_OBJECTEXISTS
 
29637
//
 
29638
// MessageText:
 
29639
//
 
29640
//  The object you are attempting to add or rename already exists
 
29641
//
 
29642
  COMADMIN_E_OBJECTEXISTS = HRESULT($80110438);
 
29643
  {$EXTERNALSYM COMADMIN_E_OBJECTEXISTS}
 
29644
 
 
29645
//
 
29646
// MessageId: COMADMIN_E_COMPONENTEXISTS
 
29647
//
 
29648
// MessageText:
 
29649
//
 
29650
//  The component already exists
 
29651
//
 
29652
  COMADMIN_E_COMPONENTEXISTS = HRESULT($80110439);
 
29653
  {$EXTERNALSYM COMADMIN_E_COMPONENTEXISTS}
 
29654
 
 
29655
//
 
29656
// MessageId: COMADMIN_E_REGFILE_CORRUPT
 
29657
//
 
29658
// MessageText:
 
29659
//
 
29660
//  The registration file is corrupt
 
29661
//
 
29662
  COMADMIN_E_REGFILE_CORRUPT = HRESULT($8011043B);
 
29663
  {$EXTERNALSYM COMADMIN_E_REGFILE_CORRUPT}
 
29664
 
 
29665
//
 
29666
// MessageId: COMADMIN_E_PROPERTY_OVERFLOW
 
29667
//
 
29668
// MessageText:
 
29669
//
 
29670
//  The property value is too large
 
29671
//
 
29672
  COMADMIN_E_PROPERTY_OVERFLOW = HRESULT($8011043C);
 
29673
  {$EXTERNALSYM COMADMIN_E_PROPERTY_OVERFLOW}
 
29674
 
 
29675
//
 
29676
// MessageId: COMADMIN_E_NOTINREGISTRY
 
29677
//
 
29678
// MessageText:
 
29679
//
 
29680
//  Object was not found in registry
 
29681
//
 
29682
  COMADMIN_E_NOTINREGISTRY = HRESULT($8011043E);
 
29683
  {$EXTERNALSYM COMADMIN_E_NOTINREGISTRY}
 
29684
 
 
29685
//
 
29686
// MessageId: COMADMIN_E_OBJECTNOTPOOLABLE
 
29687
//
 
29688
// MessageText:
 
29689
//
 
29690
//  This object is not poolable
 
29691
//
 
29692
  COMADMIN_E_OBJECTNOTPOOLABLE = HRESULT($8011043F);
 
29693
  {$EXTERNALSYM COMADMIN_E_OBJECTNOTPOOLABLE}
 
29694
 
 
29695
//
 
29696
// MessageId: COMADMIN_E_APPLID_MATCHES_CLSID
 
29697
//
 
29698
// MessageText:
 
29699
//
 
29700
//  A CLSID with the same GUID as the new application ID is already installed on this machine
 
29701
//
 
29702
  COMADMIN_E_APPLID_MATCHES_CLSID = HRESULT($80110446);
 
29703
  {$EXTERNALSYM COMADMIN_E_APPLID_MATCHES_CLSID}
 
29704
 
 
29705
//
 
29706
// MessageId: COMADMIN_E_ROLE_DOES_NOT_EXIST
 
29707
//
 
29708
// MessageText:
 
29709
//
 
29710
//  A role assigned to a component, interface, or method did not exist in the application
 
29711
//
 
29712
  COMADMIN_E_ROLE_DOES_NOT_EXIST = HRESULT($80110447);
 
29713
  {$EXTERNALSYM COMADMIN_E_ROLE_DOES_NOT_EXIST}
 
29714
 
 
29715
//
 
29716
// MessageId: COMADMIN_E_START_APP_NEEDS_COMPONENTS
 
29717
//
 
29718
// MessageText:
 
29719
//
 
29720
//  You must have components in an application in order to start the application
 
29721
//
 
29722
  COMADMIN_E_START_APP_NEEDS_COMPONENTS = HRESULT($80110448);
 
29723
  {$EXTERNALSYM COMADMIN_E_START_APP_NEEDS_COMPONENTS}
 
29724
 
 
29725
//
 
29726
// MessageId: COMADMIN_E_REQUIRES_DIFFERENT_PLATFORM
 
29727
//
 
29728
// MessageText:
 
29729
//
 
29730
//  This operation is not enabled on this platform
 
29731
//
 
29732
  COMADMIN_E_REQUIRES_DIFFERENT_PLATFORM = HRESULT($80110449);
 
29733
  {$EXTERNALSYM COMADMIN_E_REQUIRES_DIFFERENT_PLATFORM}
 
29734
 
 
29735
//
 
29736
// MessageId: COMADMIN_E_CAN_NOT_EXPORT_APP_PROXY
 
29737
//
 
29738
// MessageText:
 
29739
//
 
29740
//  Application Proxy is not exportable
 
29741
//
 
29742
  COMADMIN_E_CAN_NOT_EXPORT_APP_PROXY = HRESULT($8011044A);
 
29743
  {$EXTERNALSYM COMADMIN_E_CAN_NOT_EXPORT_APP_PROXY}
 
29744
 
 
29745
//
 
29746
// MessageId: COMADMIN_E_CAN_NOT_START_APP
 
29747
//
 
29748
// MessageText:
 
29749
//
 
29750
//  Failed to start application because it is either a library application or an application proxy
 
29751
//
 
29752
  COMADMIN_E_CAN_NOT_START_APP = HRESULT($8011044B);
 
29753
  {$EXTERNALSYM COMADMIN_E_CAN_NOT_START_APP}
 
29754
 
 
29755
//
 
29756
// MessageId: COMADMIN_E_CAN_NOT_EXPORT_SYS_APP
 
29757
//
 
29758
// MessageText:
 
29759
//
 
29760
//  System application is not exportable
 
29761
//
 
29762
  COMADMIN_E_CAN_NOT_EXPORT_SYS_APP = HRESULT($8011044C);
 
29763
  {$EXTERNALSYM COMADMIN_E_CAN_NOT_EXPORT_SYS_APP}
 
29764
 
 
29765
//
 
29766
// MessageId: COMADMIN_E_CANT_SUBSCRIBE_TO_COMPONENT
 
29767
//
 
29768
// MessageText:
 
29769
//
 
29770
//  Can not subscribe to this component (the component may have been imported)
 
29771
//
 
29772
  COMADMIN_E_CANT_SUBSCRIBE_TO_COMPONENT = HRESULT($8011044D);
 
29773
  {$EXTERNALSYM COMADMIN_E_CANT_SUBSCRIBE_TO_COMPONENT}
 
29774
 
 
29775
//
 
29776
// MessageId: COMADMIN_E_EVENTCLASS_CANT_BE_SUBSCRIBER
 
29777
//
 
29778
// MessageText:
 
29779
//
 
29780
//  An event class cannot also be a subscriber component
 
29781
//
 
29782
  COMADMIN_E_EVENTCLASS_CANT_BE_SUBSCRIBER = HRESULT($8011044E);
 
29783
  {$EXTERNALSYM COMADMIN_E_EVENTCLASS_CANT_BE_SUBSCRIBER}
 
29784
 
 
29785
//
 
29786
// MessageId: COMADMIN_E_LIB_APP_PROXY_INCOMPATIBLE
 
29787
//
 
29788
// MessageText:
 
29789
//
 
29790
//  Library applications and application proxies are incompatible
 
29791
//
 
29792
  COMADMIN_E_LIB_APP_PROXY_INCOMPATIBLE = HRESULT($8011044F);
 
29793
  {$EXTERNALSYM COMADMIN_E_LIB_APP_PROXY_INCOMPATIBLE}
 
29794
 
 
29795
//
 
29796
// MessageId: COMADMIN_E_BASE_PARTITION_ONLY
 
29797
//
 
29798
// MessageText:
 
29799
//
 
29800
//  This function is valid for the base partition only
 
29801
//
 
29802
  COMADMIN_E_BASE_PARTITION_ONLY = HRESULT($80110450);
 
29803
  {$EXTERNALSYM COMADMIN_E_BASE_PARTITION_ONLY}
 
29804
 
 
29805
//
 
29806
// MessageId: COMADMIN_E_START_APP_DISABLED
 
29807
//
 
29808
// MessageText:
 
29809
//
 
29810
//  You cannot start an application that has been disabled
 
29811
//
 
29812
  COMADMIN_E_START_APP_DISABLED = HRESULT($80110451);
 
29813
  {$EXTERNALSYM COMADMIN_E_START_APP_DISABLED}
 
29814
 
 
29815
//
 
29816
// MessageId: COMADMIN_E_CAT_DUPLICATE_PARTITION_NAME
 
29817
//
 
29818
// MessageText:
 
29819
//
 
29820
//  The specified partition name is already in use on this computer
 
29821
//
 
29822
  COMADMIN_E_CAT_DUPLICATE_PARTITION_NAME = HRESULT($80110457);
 
29823
  {$EXTERNALSYM COMADMIN_E_CAT_DUPLICATE_PARTITION_NAME}
 
29824
 
 
29825
//
 
29826
// MessageId: COMADMIN_E_CAT_INVALID_PARTITION_NAME
 
29827
//
 
29828
// MessageText:
 
29829
//
 
29830
//  The specified partition name is invalid. Check that the name contains at least one visible character
 
29831
//
 
29832
  COMADMIN_E_CAT_INVALID_PARTITION_NAME = HRESULT($80110458);
 
29833
  {$EXTERNALSYM COMADMIN_E_CAT_INVALID_PARTITION_NAME}
 
29834
 
 
29835
//
 
29836
// MessageId: COMADMIN_E_CAT_PARTITION_IN_USE
 
29837
//
 
29838
// MessageText:
 
29839
//
 
29840
//  The partition cannot be deleted because it is the default partition for one or more users
 
29841
//
 
29842
  COMADMIN_E_CAT_PARTITION_IN_USE = HRESULT($80110459);
 
29843
  {$EXTERNALSYM COMADMIN_E_CAT_PARTITION_IN_USE}
 
29844
 
 
29845
//
 
29846
// MessageId: COMADMIN_E_FILE_PARTITION_DUPLICATE_FILES
 
29847
//
 
29848
// MessageText:
 
29849
//
 
29850
//  The partition cannot be exported, because one or more components in the partition have the same file name
 
29851
//
 
29852
  COMADMIN_E_FILE_PARTITION_DUPLICATE_FILES = HRESULT($8011045A);
 
29853
  {$EXTERNALSYM COMADMIN_E_FILE_PARTITION_DUPLICATE_FILES}
 
29854
 
 
29855
//
 
29856
// MessageId: COMADMIN_E_CAT_IMPORTED_COMPONENTS_NOT_ALLOWED
 
29857
//
 
29858
// MessageText:
 
29859
//
 
29860
//  Applications that contain one or more imported components cannot be installed into a non-base partition
 
29861
//
 
29862
  COMADMIN_E_CAT_IMPORTED_COMPONENTS_NOT_ALLOWED = HRESULT($8011045B);
 
29863
  {$EXTERNALSYM COMADMIN_E_CAT_IMPORTED_COMPONENTS_NOT_ALLOWED}
 
29864
 
 
29865
//
 
29866
// MessageId: COMADMIN_E_AMBIGUOUS_APPLICATION_NAME
 
29867
//
 
29868
// MessageText:
 
29869
//
 
29870
//  The application name is not unique and cannot be resolved to an application id
 
29871
//
 
29872
  COMADMIN_E_AMBIGUOUS_APPLICATION_NAME = HRESULT($8011045C);
 
29873
  {$EXTERNALSYM COMADMIN_E_AMBIGUOUS_APPLICATION_NAME}
 
29874
 
 
29875
//
 
29876
// MessageId: COMADMIN_E_AMBIGUOUS_PARTITION_NAME
 
29877
//
 
29878
// MessageText:
 
29879
//
 
29880
//  The partition name is not unique and cannot be resolved to a partition id
 
29881
//
 
29882
  COMADMIN_E_AMBIGUOUS_PARTITION_NAME = HRESULT($8011045D);
 
29883
  {$EXTERNALSYM COMADMIN_E_AMBIGUOUS_PARTITION_NAME}
 
29884
 
 
29885
//
 
29886
// MessageId: COMADMIN_E_REGDB_NOTINITIALIZED
 
29887
//
 
29888
// MessageText:
 
29889
//
 
29890
//  The COM+ registry database has not been initialized
 
29891
//
 
29892
  COMADMIN_E_REGDB_NOTINITIALIZED = HRESULT($80110472);
 
29893
  {$EXTERNALSYM COMADMIN_E_REGDB_NOTINITIALIZED}
 
29894
 
 
29895
//
 
29896
// MessageId: COMADMIN_E_REGDB_NOTOPEN
 
29897
//
 
29898
// MessageText:
 
29899
//
 
29900
//  The COM+ registry database is not open
 
29901
//
 
29902
  COMADMIN_E_REGDB_NOTOPEN = HRESULT($80110473);
 
29903
  {$EXTERNALSYM COMADMIN_E_REGDB_NOTOPEN}
 
29904
 
 
29905
//
 
29906
// MessageId: COMADMIN_E_REGDB_SYSTEMERR
 
29907
//
 
29908
// MessageText:
 
29909
//
 
29910
//  The COM+ registry database detected a system error
 
29911
//
 
29912
  COMADMIN_E_REGDB_SYSTEMERR = HRESULT($80110474);
 
29913
  {$EXTERNALSYM COMADMIN_E_REGDB_SYSTEMERR}
 
29914
 
 
29915
//
 
29916
// MessageId: COMADMIN_E_REGDB_ALREADYRUNNING
 
29917
//
 
29918
// MessageText:
 
29919
//
 
29920
//  The COM+ registry database is already running
 
29921
//
 
29922
  COMADMIN_E_REGDB_ALREADYRUNNING = HRESULT($80110475);
 
29923
  {$EXTERNALSYM COMADMIN_E_REGDB_ALREADYRUNNING}
 
29924
 
 
29925
//
 
29926
// MessageId: COMADMIN_E_MIG_VERSIONNOTSUPPORTED
 
29927
//
 
29928
// MessageText:
 
29929
//
 
29930
//  This version of the COM+ registry database cannot be migrated
 
29931
//
 
29932
  COMADMIN_E_MIG_VERSIONNOTSUPPORTED = HRESULT($80110480);
 
29933
  {$EXTERNALSYM COMADMIN_E_MIG_VERSIONNOTSUPPORTED}
 
29934
 
 
29935
//
 
29936
// MessageId: COMADMIN_E_MIG_SCHEMANOTFOUND
 
29937
//
 
29938
// MessageText:
 
29939
//
 
29940
//  The schema version to be migrated could not be found in the COM+ registry database
 
29941
//
 
29942
  COMADMIN_E_MIG_SCHEMANOTFOUND = HRESULT($80110481);
 
29943
  {$EXTERNALSYM COMADMIN_E_MIG_SCHEMANOTFOUND}
 
29944
 
 
29945
//
 
29946
// MessageId: COMADMIN_E_CAT_BITNESSMISMATCH
 
29947
//
 
29948
// MessageText:
 
29949
//
 
29950
//  There was a type mismatch between binaries
 
29951
//
 
29952
  COMADMIN_E_CAT_BITNESSMISMATCH = HRESULT($80110482);
 
29953
  {$EXTERNALSYM COMADMIN_E_CAT_BITNESSMISMATCH}
 
29954
 
 
29955
//
 
29956
// MessageId: COMADMIN_E_CAT_UNACCEPTABLEBITNESS
 
29957
//
 
29958
// MessageText:
 
29959
//
 
29960
//  A binary of unknown or invalid type was provided
 
29961
//
 
29962
  COMADMIN_E_CAT_UNACCEPTABLEBITNESS = HRESULT($80110483);
 
29963
  {$EXTERNALSYM COMADMIN_E_CAT_UNACCEPTABLEBITNESS}
 
29964
 
 
29965
//
 
29966
// MessageId: COMADMIN_E_CAT_WRONGAPPBITNESS
 
29967
//
 
29968
// MessageText:
 
29969
//
 
29970
//  There was a type mismatch between a binary and an application
 
29971
//
 
29972
  COMADMIN_E_CAT_WRONGAPPBITNESS = HRESULT($80110484);
 
29973
  {$EXTERNALSYM COMADMIN_E_CAT_WRONGAPPBITNESS}
 
29974
 
 
29975
//
 
29976
// MessageId: COMADMIN_E_CAT_PAUSE_RESUME_NOT_SUPPORTED
 
29977
//
 
29978
// MessageText:
 
29979
//
 
29980
//  The application cannot be paused or resumed
 
29981
//
 
29982
  COMADMIN_E_CAT_PAUSE_RESUME_NOT_SUPPORTED = HRESULT($80110485);
 
29983
  {$EXTERNALSYM COMADMIN_E_CAT_PAUSE_RESUME_NOT_SUPPORTED}
 
29984
 
 
29985
//
 
29986
// MessageId: COMADMIN_E_CAT_SERVERFAULT
 
29987
//
 
29988
// MessageText:
 
29989
//
 
29990
//  The COM+ Catalog Server threw an exception during execution
 
29991
//
 
29992
  COMADMIN_E_CAT_SERVERFAULT = HRESULT($80110486);
 
29993
  {$EXTERNALSYM COMADMIN_E_CAT_SERVERFAULT}
 
29994
 
 
29995
//
 
29996
// COMPLUS Queued component errors
 
29997
//
 
29998
//
 
29999
// MessageId: COMQC_E_APPLICATION_NOT_QUEUED
 
30000
//
 
30001
// MessageText:
 
30002
//
 
30003
//  Only COM+ Applications marked "queued" can be invoked using the "queue" moniker
 
30004
//
 
30005
  COMQC_E_APPLICATION_NOT_QUEUED = HRESULT($80110600);
 
30006
  {$EXTERNALSYM COMQC_E_APPLICATION_NOT_QUEUED}
 
30007
 
 
30008
//
 
30009
// MessageId: COMQC_E_NO_QUEUEABLE_INTERFACES
 
30010
//
 
30011
// MessageText:
 
30012
//
 
30013
//  At least one interface must be marked "queued" in order to create a queued component instance with the "queue" moniker
 
30014
//
 
30015
  COMQC_E_NO_QUEUEABLE_INTERFACES = HRESULT($80110601);
 
30016
  {$EXTERNALSYM COMQC_E_NO_QUEUEABLE_INTERFACES}
 
30017
 
 
30018
//
 
30019
// MessageId: COMQC_E_QUEUING_SERVICE_NOT_AVAILABLE
 
30020
//
 
30021
// MessageText:
 
30022
//
 
30023
//  MSMQ is required for the requested operation and is not installed
 
30024
//
 
30025
  COMQC_E_QUEUING_SERVICE_NOT_AVAILABLE = HRESULT($80110602);
 
30026
  {$EXTERNALSYM COMQC_E_QUEUING_SERVICE_NOT_AVAILABLE}
 
30027
 
 
30028
//
 
30029
// MessageId: COMQC_E_NO_IPERSISTSTREAM
 
30030
//
 
30031
// MessageText:
 
30032
//
 
30033
//  Unable to marshal an interface that does not support IPersistStream
 
30034
//
 
30035
  COMQC_E_NO_IPERSISTSTREAM = HRESULT($80110603);
 
30036
  {$EXTERNALSYM COMQC_E_NO_IPERSISTSTREAM}
 
30037
 
 
30038
//
 
30039
// MessageId: COMQC_E_BAD_MESSAGE
 
30040
//
 
30041
// MessageText:
 
30042
//
 
30043
//  The message is improperly formatted or was damaged in transit
 
30044
//
 
30045
  COMQC_E_BAD_MESSAGE = HRESULT($80110604);
 
30046
  {$EXTERNALSYM COMQC_E_BAD_MESSAGE}
 
30047
 
 
30048
//
 
30049
// MessageId: COMQC_E_UNAUTHENTICATED
 
30050
//
 
30051
// MessageText:
 
30052
//
 
30053
//  An unauthenticated message was received by an application that accepts only authenticated messages
 
30054
//
 
30055
  COMQC_E_UNAUTHENTICATED = HRESULT($80110605);
 
30056
  {$EXTERNALSYM COMQC_E_UNAUTHENTICATED}
 
30057
 
 
30058
//
 
30059
// MessageId: COMQC_E_UNTRUSTED_ENQUEUER
 
30060
//
 
30061
// MessageText:
 
30062
//
 
30063
//  The message was requeued or moved by a user not in the "QC Trusted User" role
 
30064
//
 
30065
  COMQC_E_UNTRUSTED_ENQUEUER = HRESULT($80110606);
 
30066
  {$EXTERNALSYM COMQC_E_UNTRUSTED_ENQUEUER}
 
30067
 
 
30068
//
 
30069
// The range 0x700-0x7ff is reserved for MSDTC errors.
 
30070
//
 
30071
//
 
30072
// MessageId: MSDTC_E_DUPLICATE_RESOURCE
 
30073
//
 
30074
// MessageText:
 
30075
//
 
30076
//  Cannot create a duplicate resource of type Distributed Transaction Coordinator
 
30077
//
 
30078
  MSDTC_E_DUPLICATE_RESOURCE = HRESULT($80110701);
 
30079
  {$EXTERNALSYM MSDTC_E_DUPLICATE_RESOURCE}
 
30080
 
 
30081
//
 
30082
// More COMADMIN errors from 0x8**
 
30083
//
 
30084
//
 
30085
// MessageId: COMADMIN_E_OBJECT_PARENT_MISSING
 
30086
//
 
30087
// MessageText:
 
30088
//
 
30089
//  One of the objects being inserted or updated does not belong to a valid parent collection
 
30090
//
 
30091
  COMADMIN_E_OBJECT_PARENT_MISSING = HRESULT($80110808);
 
30092
  {$EXTERNALSYM COMADMIN_E_OBJECT_PARENT_MISSING}
 
30093
 
 
30094
//
 
30095
// MessageId: COMADMIN_E_OBJECT_DOES_NOT_EXIST
 
30096
//
 
30097
// MessageText:
 
30098
//
 
30099
//  One of the specified objects cannot be found
 
30100
//
 
30101
  COMADMIN_E_OBJECT_DOES_NOT_EXIST = HRESULT($80110809);
 
30102
  {$EXTERNALSYM COMADMIN_E_OBJECT_DOES_NOT_EXIST}
 
30103
 
 
30104
//
 
30105
// MessageId: COMADMIN_E_APP_NOT_RUNNING
 
30106
//
 
30107
// MessageText:
 
30108
//
 
30109
//  The specified application is not currently running
 
30110
//
 
30111
  COMADMIN_E_APP_NOT_RUNNING = HRESULT($8011080A);
 
30112
  {$EXTERNALSYM COMADMIN_E_APP_NOT_RUNNING}
 
30113
 
 
30114
//
 
30115
// MessageId: COMADMIN_E_INVALID_PARTITION
 
30116
//
 
30117
// MessageText:
 
30118
//
 
30119
//  The partition(s) specified are not valid.
 
30120
//
 
30121
  COMADMIN_E_INVALID_PARTITION = HRESULT($8011080B);
 
30122
  {$EXTERNALSYM COMADMIN_E_INVALID_PARTITION}
 
30123
 
 
30124
//
 
30125
// MessageId: COMADMIN_E_SVCAPP_NOT_POOLABLE_OR_RECYCLABLE
 
30126
//
 
30127
// MessageText:
 
30128
//
 
30129
//  COM+ applications that run as NT service may not be pooled or recycled
 
30130
//
 
30131
  COMADMIN_E_SVCAPP_NOT_POOLABLE_OR_RECYCLABLE = HRESULT($8011080D);
 
30132
  {$EXTERNALSYM COMADMIN_E_SVCAPP_NOT_POOLABLE_OR_RECYCLABLE}
 
30133
 
 
30134
//
 
30135
// MessageId: COMADMIN_E_USER_IN_SET
 
30136
//
 
30137
// MessageText:
 
30138
//
 
30139
//  One or more users are already assigned to a local partition set.
 
30140
//
 
30141
  COMADMIN_E_USER_IN_SET = HRESULT($8011080E);
 
30142
  {$EXTERNALSYM COMADMIN_E_USER_IN_SET}
 
30143
 
 
30144
//
 
30145
// MessageId: COMADMIN_E_CANTRECYCLELIBRARYAPPS
 
30146
//
 
30147
// MessageText:
 
30148
//
 
30149
//  Library applications may not be recycled.
 
30150
//
 
30151
  COMADMIN_E_CANTRECYCLELIBRARYAPPS = HRESULT($8011080F);
 
30152
  {$EXTERNALSYM COMADMIN_E_CANTRECYCLELIBRARYAPPS}
 
30153
 
 
30154
//
 
30155
// MessageId: COMADMIN_E_CANTRECYCLESERVICEAPPS
 
30156
//
 
30157
// MessageText:
 
30158
//
 
30159
//  Applications running as NT services may not be recycled.
 
30160
//
 
30161
  COMADMIN_E_CANTRECYCLESERVICEAPPS = HRESULT($80110811);
 
30162
  {$EXTERNALSYM COMADMIN_E_CANTRECYCLESERVICEAPPS}
 
30163
 
 
30164
//
 
30165
// MessageId: COMADMIN_E_PROCESSALREADYRECYCLED
 
30166
//
 
30167
// MessageText:
 
30168
//
 
30169
//  The process has already been recycled.
 
30170
//
 
30171
  COMADMIN_E_PROCESSALREADYRECYCLED = HRESULT($80110812);
 
30172
  {$EXTERNALSYM COMADMIN_E_PROCESSALREADYRECYCLED}
 
30173
 
 
30174
//
 
30175
// MessageId: COMADMIN_E_PAUSEDPROCESSMAYNOTBERECYCLED
 
30176
//
 
30177
// MessageText:
 
30178
//
 
30179
//  A paused process may not be recycled.
 
30180
//
 
30181
  COMADMIN_E_PAUSEDPROCESSMAYNOTBERECYCLED = HRESULT($80110813);
 
30182
  {$EXTERNALSYM COMADMIN_E_PAUSEDPROCESSMAYNOTBERECYCLED}
 
30183
 
 
30184
//
 
30185
// MessageId: COMADMIN_E_CANTMAKEINPROCSERVICE
 
30186
//
 
30187
// MessageText:
 
30188
//
 
30189
//  Library applications may not be NT services.
 
30190
//
 
30191
  COMADMIN_E_CANTMAKEINPROCSERVICE = HRESULT($80110814);
 
30192
  {$EXTERNALSYM COMADMIN_E_CANTMAKEINPROCSERVICE}
 
30193
 
 
30194
//
 
30195
// MessageId: COMADMIN_E_PROGIDINUSEBYCLSID
 
30196
//
 
30197
// MessageText:
 
30198
//
 
30199
//  The ProgID provided to the copy operation is invalid. The ProgID is in use by another registered CLSID.
 
30200
//
 
30201
  COMADMIN_E_PROGIDINUSEBYCLSID = HRESULT($80110815);
 
30202
  {$EXTERNALSYM COMADMIN_E_PROGIDINUSEBYCLSID}
 
30203
 
 
30204
//
 
30205
// MessageId: COMADMIN_E_DEFAULT_PARTITION_NOT_IN_SET
 
30206
//
 
30207
// MessageText:
 
30208
//
 
30209
//  The partition specified as default is not a member of the partition set.
 
30210
//
 
30211
  COMADMIN_E_DEFAULT_PARTITION_NOT_IN_SET = HRESULT($80110816);
 
30212
  {$EXTERNALSYM COMADMIN_E_DEFAULT_PARTITION_NOT_IN_SET}
 
30213
 
 
30214
//
 
30215
// MessageId: COMADMIN_E_RECYCLEDPROCESSMAYNOTBEPAUSED
 
30216
//
 
30217
// MessageText:
 
30218
//
 
30219
//  A recycled process may not be paused.
 
30220
//
 
30221
  COMADMIN_E_RECYCLEDPROCESSMAYNOTBEPAUSED = HRESULT($80110817);
 
30222
  {$EXTERNALSYM COMADMIN_E_RECYCLEDPROCESSMAYNOTBEPAUSED}
 
30223
 
 
30224
//
 
30225
// MessageId: COMADMIN_E_PARTITION_ACCESSDENIED
 
30226
//
 
30227
// MessageText:
 
30228
//
 
30229
//  Access to the specified partition is denied.
 
30230
//
 
30231
  COMADMIN_E_PARTITION_ACCESSDENIED = HRESULT($80110818);
 
30232
  {$EXTERNALSYM COMADMIN_E_PARTITION_ACCESSDENIED}
 
30233
 
 
30234
//
 
30235
// MessageId: COMADMIN_E_PARTITION_MSI_ONLY
 
30236
//
 
30237
// MessageText:
 
30238
//
 
30239
//  Only Application Files (*.MSI files) can be installed into partitions.
 
30240
//
 
30241
  COMADMIN_E_PARTITION_MSI_ONLY = HRESULT($80110819);
 
30242
  {$EXTERNALSYM COMADMIN_E_PARTITION_MSI_ONLY}
 
30243
 
 
30244
//
 
30245
// MessageId: COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_1_0_FORMAT
 
30246
//
 
30247
// MessageText:
 
30248
//
 
30249
//  Applications containing one or more legacy components may not be exported to 1.0 format.
 
30250
//
 
30251
  COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_1_0_FORMAT = HRESULT($8011081A);
 
30252
  {$EXTERNALSYM COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_1_0_FORMAT}
 
30253
 
 
30254
//
 
30255
// MessageId: COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_NONBASE_PARTITIONS
 
30256
//
 
30257
// MessageText:
 
30258
//
 
30259
//  Legacy components may not exist in non-base partitions.
 
30260
//
 
30261
  COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_NONBASE_PARTITIONS = HRESULT($8011081B);
 
30262
  {$EXTERNALSYM COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_NONBASE_PARTITIONS}
 
30263
 
 
30264
//
 
30265
// MessageId: COMADMIN_E_COMP_MOVE_SOURCE
 
30266
//
 
30267
// MessageText:
 
30268
//
 
30269
//  A component cannot be moved (or copied) from the System Application, an application proxy or a non-changeable application
 
30270
//
 
30271
  COMADMIN_E_COMP_MOVE_SOURCE = HRESULT($8011081C);
 
30272
  {$EXTERNALSYM COMADMIN_E_COMP_MOVE_SOURCE}
 
30273
 
 
30274
//
 
30275
// MessageId: COMADMIN_E_COMP_MOVE_DEST
 
30276
//
 
30277
// MessageText:
 
30278
//
 
30279
//  A component cannot be moved (or copied) to the System Application, an application proxy or a non-changeable application
 
30280
//
 
30281
  COMADMIN_E_COMP_MOVE_DEST = HRESULT($8011081D);
 
30282
  {$EXTERNALSYM COMADMIN_E_COMP_MOVE_DEST}
 
30283
 
 
30284
//
 
30285
// MessageId: COMADMIN_E_COMP_MOVE_PRIVATE
 
30286
//
 
30287
// MessageText:
 
30288
//
 
30289
//  A private component cannot be moved (or copied) to a library application or to the base partition
 
30290
//
 
30291
  COMADMIN_E_COMP_MOVE_PRIVATE = HRESULT($8011081E);
 
30292
  {$EXTERNALSYM COMADMIN_E_COMP_MOVE_PRIVATE}
 
30293
 
 
30294
//
 
30295
// MessageId: COMADMIN_E_BASEPARTITION_REQUIRED_IN_SET
 
30296
//
 
30297
// MessageText:
 
30298
//
 
30299
//  The Base Application Partition exists in all partition sets and cannot be removed.
 
30300
//
 
30301
  COMADMIN_E_BASEPARTITION_REQUIRED_IN_SET = HRESULT($8011081F);
 
30302
  {$EXTERNALSYM COMADMIN_E_BASEPARTITION_REQUIRED_IN_SET}
 
30303
 
 
30304
//
 
30305
// MessageId: COMADMIN_E_CANNOT_ALIAS_EVENTCLASS
 
30306
//
 
30307
// MessageText:
 
30308
//
 
30309
//  Alas, Event Class components cannot be aliased.
 
30310
//
 
30311
  COMADMIN_E_CANNOT_ALIAS_EVENTCLASS = HRESULT($80110820);
 
30312
  {$EXTERNALSYM COMADMIN_E_CANNOT_ALIAS_EVENTCLASS}
 
30313
 
 
30314
//
 
30315
// MessageId: COMADMIN_E_PRIVATE_ACCESSDENIED
 
30316
//
 
30317
// MessageText:
 
30318
//
 
30319
//  Access is denied because the component is private.
 
30320
//
 
30321
  COMADMIN_E_PRIVATE_ACCESSDENIED = HRESULT($80110821);
 
30322
  {$EXTERNALSYM COMADMIN_E_PRIVATE_ACCESSDENIED}
 
30323
 
 
30324
//
 
30325
// MessageId: COMADMIN_E_SAFERINVALID
 
30326
//
 
30327
// MessageText:
 
30328
//
 
30329
//  The specified SAFER level is invalid.
 
30330
//
 
30331
  COMADMIN_E_SAFERINVALID = HRESULT($80110822);
 
30332
  {$EXTERNALSYM COMADMIN_E_SAFERINVALID}
 
30333
 
 
30334
//
 
30335
// MessageId: COMADMIN_E_REGISTRY_ACCESSDENIED
 
30336
//
 
30337
// MessageText:
 
30338
//
 
30339
//  The specified user cannot write to the system registry
 
30340
//
 
30341
  COMADMIN_E_REGISTRY_ACCESSDENIED = HRESULT($80110823);
 
30342
  {$EXTERNALSYM COMADMIN_E_REGISTRY_ACCESSDENIED}
 
30343
 
 
30344
//
 
30345
// MessageId: COMADMIN_E_PARTITIONS_DISABLED
 
30346
//
 
30347
// MessageText:
 
30348
//
 
30349
//  COM+ partitions are currently disabled.
 
30350
//
 
30351
  COMADMIN_E_PARTITIONS_DISABLED = HRESULT($80110824);
 
30352
  {$EXTERNALSYM COMADMIN_E_PARTITIONS_DISABLED}
 
30353
 
 
30354
{$ENDIF JWA_INTERFACESECTION}
 
30355
 
 
30356
{$IFNDEF JWA_INCLUDEMODE}
 
30357
implementation
 
30358
{$ENDIF !JWA_INCLUDEMODE}
 
30359
 
 
30360
{$IFDEF JWA_IMPLEMENTATIONSECTION}
 
30361
 
 
30362
function SUCCEEDED(Status: HRESULT): BOOL;
 
30363
begin
 
30364
  Result := Status >= 0;
 
30365
end;
 
30366
 
 
30367
function FAILED(Status: HRESULT): BOOL;
 
30368
begin
 
30369
  Result := Status < 0;
 
30370
end;
 
30371
 
 
30372
function IS_ERROR(Status: HRESULT): BOOL;
 
30373
begin
 
30374
  Result := (Status shr 31) = SEVERITY_ERROR;
 
30375
end;
 
30376
 
 
30377
function HRESULT_CODE(hr: HRESULT): DWORD;
 
30378
begin
 
30379
  Result := hr and $FFFF;
 
30380
end;
 
30381
 
 
30382
function SCODE_CODE(sc: LONG): DWORD;
 
30383
begin
 
30384
  Result := sc and $FFFF;
 
30385
end;
 
30386
 
 
30387
function HRESULT_FACILITY(hr: HRESULT): DWORD;
 
30388
begin
 
30389
  Result := (hr shr 16) and $1FFF;
 
30390
end;
 
30391
 
 
30392
function SCODE_FACILITY(sc: LONG): DWORD;
 
30393
begin
 
30394
  Result := (sc shr 16) and $1FFF;
 
30395
end;
 
30396
 
 
30397
function HRESULT_SEVERITY(hr: HRESULT): DWORD;
 
30398
begin
 
30399
  Result := (hr shr 31) and $1;
 
30400
end;
 
30401
 
 
30402
function SCODE_SEVERITY(sc: LONG): DWORD;
 
30403
begin
 
30404
  Result := (sc shr 31) and $1;
 
30405
end;
 
30406
 
 
30407
function MAKE_HRESULT(sev, fac, code: DWORD): HRESULT;
 
30408
begin
 
30409
  Result := HRESULT((sev shl 31) or (fac shl 16) or code);
 
30410
end;
 
30411
 
 
30412
function MAKE_SCODE(sev, fac,code: DWORD): DWORD;
 
30413
begin
 
30414
  Result := DWORD((sev shl 31) or (fac shl 16) or code);
 
30415
end;
 
30416
 
 
30417
function __HRESULT_FROM_WIN32(x: DWORD): HRESULT;
 
30418
begin
 
30419
  if HRESULT(x) <= 0 then
 
30420
    Result := HRESULT(x)
 
30421
  else
 
30422
    Result := HRESULT((x and $0000FFFF) or (FACILITY_WIN32 shl 16) or $80000000);
 
30423
end;
 
30424
 
 
30425
function HRESULT_FROM_WIN32(x: DWORD): HRESULT;
 
30426
begin
 
30427
  Result := __HRESULT_FROM_WIN32(x);
 
30428
end;
 
30429
 
 
30430
function HRESULT_FROM_NT(x: NTSTATUS): HRESULT;
 
30431
begin
 
30432
  Result := HRESULT(x or FACILITY_NT_BIT);
 
30433
end;
 
30434
 
 
30435
function HRESULT_FROM_SETUPAPI(x: DWORD): HRESULT;
 
30436
begin
 
30437
  if (x and (APPLICATION_ERROR_MASK or ERROR_SEVERITY_ERROR)) =
 
30438
    (APPLICATION_ERROR_MASK or ERROR_SEVERITY_ERROR) then
 
30439
    Result := HRESULT((x and $0000FFFF) or (FACILITY_SETUPAPI shl 16) or $80000000)
 
30440
  else
 
30441
    Result := HRESULT_FROM_WIN32(x);
 
30442
end;
 
30443
 
 
30444
function GetScode(hr: HRESULT): DWORD;
 
30445
begin
 
30446
  Result := DWORD(hr);
 
30447
end;
 
30448
 
 
30449
function ResultFromScode(sc: DWORD): HRESULT;
 
30450
begin
 
30451
  Result := HRESULT(sc);
 
30452
end;
 
30453
 
 
30454
function PropagateResult(hrPrevious, scBase: DWORD): HRESULT;
 
30455
begin
 
30456
  Result := HRESULT(scBase);
 
30457
end;
 
30458
 
 
30459
{$ENDIF JWA_IMPLEMENTATIONSECTION}
 
30460
 
 
30461
{$IFNDEF JWA_INCLUDEMODE}
 
30462
end.
 
30463
{$ENDIF !JWA_INCLUDEMODE}