~ubuntu-branches/ubuntu/dapper/fpc/dapper

« back to all changes in this revision

Viewing changes to packages/extra/winunits/jwabugcodes.pas

  • Committer: Bazaar Package Importer
  • Author(s): Carlos Laviola
  • Date: 2005-05-30 11:59:10 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050530115910-x5pbzm4qqta4i94h
Tags: 2.0.0-2
debian/fp-compiler.postinst.in: forgot to reapply the patch that
correctly creates the slave link to pc(1).  (Closes: #310907)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{******************************************************************************}
 
2
{                                                                              }
 
3
{ NT Bug 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: bugcodes.h, released June 2000. The original Pascal    }
 
9
{ code is: BugCodes.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: jwabugcodes.pas,v 1.1 2005/04/04 07:56:10 marco Exp $
 
44
 
 
45
unit JwaBugCodes;
 
46
 
 
47
{$WEAKPACKAGEUNIT}
 
48
 
 
49
{$HPPEMIT ''}
 
50
{$HPPEMIT '#include "bugcodes.h"'}
 
51
{$HPPEMIT ''}
 
52
 
 
53
{$I jediapilib.inc}
 
54
 
 
55
interface
 
56
 
 
57
uses
 
58
  JwaWinType;
 
59
 
 
60
{$I jediapilib.inc}
 
61
 
 
62
//
 
63
//  Values are 32 bit values layed out as follows:
 
64
//
 
65
//   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
 
66
//   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
 
67
//  +---+-+-+-----------------------+-------------------------------+
 
68
//  |Sev|C|R|     Facility          |               Code            |
 
69
//  +---+-+-+-----------------------+-------------------------------+
 
70
//
 
71
//  where
 
72
//
 
73
//      Sev - is the severity code
 
74
//
 
75
//          00 - Success
 
76
//          01 - Informational
 
77
//          10 - Warning
 
78
//          11 - Error
 
79
//
 
80
//      C - is the Customer code flag
 
81
//
 
82
//      R - is a reserved bit
 
83
//
 
84
//      Facility - is the facility code
 
85
//
 
86
//      Code - is the facility's status code
 
87
//
 
88
//
 
89
// Define the facility codes
 
90
//
 
91
 
 
92
//
 
93
// Define the severity codes
 
94
//
 
95
 
 
96
const
 
97
 
 
98
//
 
99
// MessageId: APC_INDEX_MISMATCH
 
100
//
 
101
// MessageText:
 
102
//
 
103
//  APC_INDEX_MISMATCH
 
104
//
 
105
 
 
106
  APC_INDEX_MISMATCH = ULONG($00000001);
 
107
  {$EXTERNALSYM APC_INDEX_MISMATCH}
 
108
 
 
109
//
 
110
// MessageId: DEVICE_QUEUE_NOT_BUSY
 
111
//
 
112
// MessageText:
 
113
//
 
114
//  DEVICE_QUEUE_NOT_BUSY
 
115
//
 
116
 
 
117
  DEVICE_QUEUE_NOT_BUSY = ULONG($00000002);
 
118
  {$EXTERNALSYM DEVICE_QUEUE_NOT_BUSY}
 
119
 
 
120
//
 
121
// MessageId: INVALID_AFFINITY_SET
 
122
//
 
123
// MessageText:
 
124
//
 
125
//  INVALID_AFFINITY_SET
 
126
//
 
127
 
 
128
  INVALID_AFFINITY_SET = ULONG($00000003);
 
129
  {$EXTERNALSYM INVALID_AFFINITY_SET}
 
130
 
 
131
//
 
132
// MessageId: INVALID_DATA_ACCESS_TRAP
 
133
//
 
134
// MessageText:
 
135
//
 
136
//  INVALID_DATA_ACCESS_TRAP
 
137
//
 
138
 
 
139
  INVALID_DATA_ACCESS_TRAP = ULONG($00000004);
 
140
  {$EXTERNALSYM INVALID_DATA_ACCESS_TRAP}
 
141
 
 
142
//
 
143
// MessageId: INVALID_PROCESS_ATTACH_ATTEMPT
 
144
//
 
145
// MessageText:
 
146
//
 
147
//  INVALID_PROCESS_ATTACH_ATTEMPT
 
148
//
 
149
 
 
150
  INVALID_PROCESS_ATTACH_ATTEMPT = ULONG($00000005);
 
151
  {$EXTERNALSYM INVALID_PROCESS_ATTACH_ATTEMPT}
 
152
 
 
153
//
 
154
// MessageId: INVALID_PROCESS_DETACH_ATTEMPT
 
155
//
 
156
// MessageText:
 
157
//
 
158
//  INVALID_PROCESS_DETACH_ATTEMPT
 
159
//
 
160
 
 
161
  INVALID_PROCESS_DETACH_ATTEMPT = ULONG($00000006);
 
162
  {$EXTERNALSYM INVALID_PROCESS_DETACH_ATTEMPT}
 
163
 
 
164
//
 
165
// MessageId: INVALID_SOFTWARE_INTERRUPT
 
166
//
 
167
// MessageText:
 
168
//
 
169
//  INVALID_SOFTWARE_INTERRUPT
 
170
//
 
171
 
 
172
  INVALID_SOFTWARE_INTERRUPT = ULONG($00000007);
 
173
  {$EXTERNALSYM INVALID_SOFTWARE_INTERRUPT}
 
174
 
 
175
//
 
176
// MessageId: IRQL_NOT_DISPATCH_LEVEL
 
177
//
 
178
// MessageText:
 
179
//
 
180
//  IRQL_NOT_DISPATCH_LEVEL
 
181
//
 
182
 
 
183
  IRQL_NOT_DISPATCH_LEVEL = ULONG($00000008);
 
184
  {$EXTERNALSYM IRQL_NOT_DISPATCH_LEVEL}
 
185
 
 
186
//
 
187
// MessageId: IRQL_NOT_GREATER_OR_EQUAL
 
188
//
 
189
// MessageText:
 
190
//
 
191
//  IRQL_NOT_GREATER_OR_EQUAL
 
192
//
 
193
 
 
194
  IRQL_NOT_GREATER_OR_EQUAL = ULONG($00000009);
 
195
  {$EXTERNALSYM IRQL_NOT_GREATER_OR_EQUAL}
 
196
 
 
197
//
 
198
// MessageId: IRQL_NOT_LESS_OR_EQUAL
 
199
//
 
200
// MessageText:
 
201
//
 
202
//  IRQL_NOT_LESS_OR_EQUAL
 
203
//
 
204
 
 
205
  IRQL_NOT_LESS_OR_EQUAL = ULONG($0000000A);
 
206
  {$EXTERNALSYM IRQL_NOT_LESS_OR_EQUAL}
 
207
 
 
208
//
 
209
// MessageId: NO_EXCEPTION_HANDLING_SUPPORT
 
210
//
 
211
// MessageText:
 
212
//
 
213
//  NO_EXCEPTION_HANDLING_SUPPORT
 
214
//
 
215
 
 
216
  NO_EXCEPTION_HANDLING_SUPPORT = ULONG($0000000B);
 
217
  {$EXTERNALSYM NO_EXCEPTION_HANDLING_SUPPORT}
 
218
 
 
219
//
 
220
// MessageId: MAXIMUM_WAIT_OBJECTS_EXCEEDED
 
221
//
 
222
// MessageText:
 
223
//
 
224
//  MAXIMUM_WAIT_OBJECTS_EXCEEDED
 
225
//
 
226
 
 
227
  MAXIMUM_WAIT_OBJECTS_EXCEEDED = ULONG($0000000C);
 
228
  {$EXTERNALSYM MAXIMUM_WAIT_OBJECTS_EXCEEDED}
 
229
 
 
230
//
 
231
// MessageId: MUTEX_LEVEL_NUMBER_VIOLATION
 
232
//
 
233
// MessageText:
 
234
//
 
235
//  MUTEX_LEVEL_NUMBER_VIOLATION
 
236
//
 
237
 
 
238
  MUTEX_LEVEL_NUMBER_VIOLATION = ULONG($0000000D);
 
239
  {$EXTERNALSYM MUTEX_LEVEL_NUMBER_VIOLATION}
 
240
 
 
241
//
 
242
// MessageId: NO_USER_MODE_CONTEXT
 
243
//
 
244
// MessageText:
 
245
//
 
246
//  NO_USER_MODE_CONTEXT
 
247
//
 
248
 
 
249
  NO_USER_MODE_CONTEXT = ULONG($0000000E);
 
250
  {$EXTERNALSYM NO_USER_MODE_CONTEXT}
 
251
 
 
252
//
 
253
// MessageId: SPIN_LOCK_ALREADY_OWNED
 
254
//
 
255
// MessageText:
 
256
//
 
257
//  SPIN_LOCK_ALREADY_OWNED
 
258
//
 
259
 
 
260
  SPIN_LOCK_ALREADY_OWNED = ULONG($0000000F);
 
261
  {$EXTERNALSYM SPIN_LOCK_ALREADY_OWNED}
 
262
 
 
263
//
 
264
// MessageId: SPIN_LOCK_NOT_OWNED
 
265
//
 
266
// MessageText:
 
267
//
 
268
//  SPIN_LOCK_NOT_OWNED
 
269
//
 
270
 
 
271
  SPIN_LOCK_NOT_OWNED = ULONG($00000010);
 
272
  {$EXTERNALSYM SPIN_LOCK_NOT_OWNED}
 
273
 
 
274
//
 
275
// MessageId: THREAD_NOT_MUTEX_OWNER
 
276
//
 
277
// MessageText:
 
278
//
 
279
//  THREAD_NOT_MUTEX_OWNER
 
280
//
 
281
 
 
282
  THREAD_NOT_MUTEX_OWNER = ULONG($00000011);
 
283
  {$EXTERNALSYM THREAD_NOT_MUTEX_OWNER}
 
284
 
 
285
//
 
286
// MessageId: TRAP_CAUSE_UNKNOWN
 
287
//
 
288
// MessageText:
 
289
//
 
290
//  TRAP_CAUSE_UNKNOWN
 
291
//
 
292
 
 
293
  TRAP_CAUSE_UNKNOWN = ULONG($00000012);
 
294
  {$EXTERNALSYM TRAP_CAUSE_UNKNOWN}
 
295
 
 
296
//
 
297
// MessageId: EMPTY_THREAD_REAPER_LIST
 
298
//
 
299
// MessageText:
 
300
//
 
301
//  EMPTY_THREAD_REAPER_LIST
 
302
//
 
303
 
 
304
  EMPTY_THREAD_REAPER_LIST = ULONG($00000013);
 
305
  {$EXTERNALSYM EMPTY_THREAD_REAPER_LIST}
 
306
 
 
307
//
 
308
// MessageId: CREATE_DELETE_LOCK_NOT_LOCKED
 
309
//
 
310
// MessageText:
 
311
//
 
312
//  CREATE_DELETE_LOCK_NOT_LOCKED
 
313
//
 
314
 
 
315
  CREATE_DELETE_LOCK_NOT_LOCKED = ULONG($00000014);
 
316
  {$EXTERNALSYM CREATE_DELETE_LOCK_NOT_LOCKED}
 
317
 
 
318
//
 
319
// MessageId: LAST_CHANCE_CALLED_FROM_KMODE
 
320
//
 
321
// MessageText:
 
322
//
 
323
//  LAST_CHANCE_CALLED_FROM_KMODE
 
324
//
 
325
 
 
326
  LAST_CHANCE_CALLED_FROM_KMODE = ULONG($00000015);
 
327
  {$EXTERNALSYM LAST_CHANCE_CALLED_FROM_KMODE}
 
328
 
 
329
//
 
330
// MessageId: CID_HANDLE_CREATION
 
331
//
 
332
// MessageText:
 
333
//
 
334
//  CID_HANDLE_CREATION
 
335
//
 
336
 
 
337
  CID_HANDLE_CREATION = ULONG($00000016);
 
338
  {$EXTERNALSYM CID_HANDLE_CREATION}
 
339
 
 
340
//
 
341
// MessageId: CID_HANDLE_DELETION
 
342
//
 
343
// MessageText:
 
344
//
 
345
//  CID_HANDLE_DELETION
 
346
//
 
347
 
 
348
  CID_HANDLE_DELETION = ULONG($00000017);
 
349
  {$EXTERNALSYM CID_HANDLE_DELETION}
 
350
 
 
351
//
 
352
// MessageId: REFERENCE_BY_POINTER
 
353
//
 
354
// MessageText:
 
355
//
 
356
//  REFERENCE_BY_POINTER
 
357
//
 
358
 
 
359
  REFERENCE_BY_POINTER = ULONG($00000018);
 
360
  {$EXTERNALSYM REFERENCE_BY_POINTER}
 
361
 
 
362
//
 
363
// MessageId: BAD_POOL_HEADER
 
364
//
 
365
// MessageText:
 
366
//
 
367
//  BAD_POOL_HEADER
 
368
//
 
369
 
 
370
  BAD_POOL_HEADER = ULONG($00000019);
 
371
  {$EXTERNALSYM BAD_POOL_HEADER}
 
372
 
 
373
//
 
374
// MessageId: MEMORY_MANAGEMENT
 
375
//
 
376
// MessageText:
 
377
//
 
378
//  MEMORY_MANAGEMENT
 
379
//
 
380
 
 
381
  MEMORY_MANAGEMENT = ULONG($0000001A);
 
382
  {$EXTERNALSYM MEMORY_MANAGEMENT}
 
383
 
 
384
//
 
385
// MessageId: PFN_SHARE_COUNT
 
386
//
 
387
// MessageText:
 
388
//
 
389
//  PFN_SHARE_COUNT
 
390
//
 
391
 
 
392
  PFN_SHARE_COUNT = ULONG($0000001B);
 
393
  {$EXTERNALSYM PFN_SHARE_COUNT}
 
394
 
 
395
//
 
396
// MessageId: PFN_REFERENCE_COUNT
 
397
//
 
398
// MessageText:
 
399
//
 
400
//  PFN_REFERENCE_COUNT
 
401
//
 
402
 
 
403
  PFN_REFERENCE_COUNT = ULONG($0000001C);
 
404
  {$EXTERNALSYM PFN_REFERENCE_COUNT}
 
405
 
 
406
//
 
407
// MessageId: NO_SPIN_LOCK_AVAILABLE
 
408
//
 
409
// MessageText:
 
410
//
 
411
//  NO_SPIN_LOCK_AVAILABLE
 
412
//
 
413
 
 
414
  NO_SPIN_LOCK_AVAILABLE = ULONG($0000001D);
 
415
  {$EXTERNALSYM NO_SPIN_LOCK_AVAILABLE}
 
416
 
 
417
//
 
418
// MessageId: KMODE_EXCEPTION_NOT_HANDLED
 
419
//
 
420
// MessageText:
 
421
//
 
422
//  KMODE_EXCEPTION_NOT_HANDLED
 
423
//
 
424
 
 
425
  KMODE_EXCEPTION_NOT_HANDLED = ULONG($0000001E);
 
426
  {$EXTERNALSYM KMODE_EXCEPTION_NOT_HANDLED}
 
427
 
 
428
//
 
429
// MessageId: SHARED_RESOURCE_CONV_ERROR
 
430
//
 
431
// MessageText:
 
432
//
 
433
//  SHARED_RESOURCE_CONV_ERROR
 
434
//
 
435
 
 
436
  SHARED_RESOURCE_CONV_ERROR = ULONG($0000001F);
 
437
  {$EXTERNALSYM SHARED_RESOURCE_CONV_ERROR}
 
438
 
 
439
//
 
440
// MessageId: KERNEL_APC_PENDING_DURING_EXIT
 
441
//
 
442
// MessageText:
 
443
//
 
444
//  KERNEL_APC_PENDING_DURING_EXIT
 
445
//
 
446
 
 
447
  KERNEL_APC_PENDING_DURING_EXIT = ULONG($00000020);
 
448
  {$EXTERNALSYM KERNEL_APC_PENDING_DURING_EXIT}
 
449
 
 
450
//
 
451
// MessageId: QUOTA_UNDERFLOW
 
452
//
 
453
// MessageText:
 
454
//
 
455
//  QUOTA_UNDERFLOW
 
456
//
 
457
 
 
458
  QUOTA_UNDERFLOW = ULONG($00000021);
 
459
  {$EXTERNALSYM QUOTA_UNDERFLOW}
 
460
 
 
461
//
 
462
// MessageId: FILE_SYSTEM
 
463
//
 
464
// MessageText:
 
465
//
 
466
//  FILE_SYSTEM
 
467
//
 
468
 
 
469
  FILE_SYSTEM = ULONG($00000022);
 
470
  {$EXTERNALSYM FILE_SYSTEM}
 
471
 
 
472
//
 
473
// MessageId: FAT_FILE_SYSTEM
 
474
//
 
475
// MessageText:
 
476
//
 
477
//  FAT_FILE_SYSTEM
 
478
//
 
479
 
 
480
  FAT_FILE_SYSTEM = ULONG($00000023);
 
481
  {$EXTERNALSYM FAT_FILE_SYSTEM}
 
482
 
 
483
//
 
484
// MessageId: NTFS_FILE_SYSTEM
 
485
//
 
486
// MessageText:
 
487
//
 
488
//  NTFS_FILE_SYSTEM
 
489
//
 
490
 
 
491
  NTFS_FILE_SYSTEM = ULONG($00000024);
 
492
  {$EXTERNALSYM NTFS_FILE_SYSTEM}
 
493
 
 
494
//
 
495
// MessageId: NPFS_FILE_SYSTEM
 
496
//
 
497
// MessageText:
 
498
//
 
499
//  NPFS_FILE_SYSTEM
 
500
//
 
501
 
 
502
  NPFS_FILE_SYSTEM = ULONG($00000025);
 
503
  {$EXTERNALSYM NPFS_FILE_SYSTEM}
 
504
 
 
505
//
 
506
// MessageId: CDFS_FILE_SYSTEM
 
507
//
 
508
// MessageText:
 
509
//
 
510
//  CDFS_FILE_SYSTEM
 
511
//
 
512
 
 
513
  CDFS_FILE_SYSTEM = ULONG($00000026);
 
514
  {$EXTERNALSYM CDFS_FILE_SYSTEM}
 
515
 
 
516
//
 
517
// MessageId: RDR_FILE_SYSTEM
 
518
//
 
519
// MessageText:
 
520
//
 
521
//  RDR_FILE_SYSTEM
 
522
//
 
523
 
 
524
  RDR_FILE_SYSTEM = ULONG($00000027);
 
525
  {$EXTERNALSYM RDR_FILE_SYSTEM}
 
526
 
 
527
//
 
528
// MessageId: CORRUPT_ACCESS_TOKEN
 
529
//
 
530
// MessageText:
 
531
//
 
532
//  CORRUPT_ACCESS_TOKEN
 
533
//
 
534
 
 
535
  CORRUPT_ACCESS_TOKEN = ULONG($00000028);
 
536
  {$EXTERNALSYM CORRUPT_ACCESS_TOKEN}
 
537
 
 
538
//
 
539
// MessageId: SECURITY_SYSTEM
 
540
//
 
541
// MessageText:
 
542
//
 
543
//  SECURITY_SYSTEM
 
544
//
 
545
 
 
546
  SECURITY_SYSTEM = ULONG($00000029);
 
547
  {$EXTERNALSYM SECURITY_SYSTEM}
 
548
 
 
549
//
 
550
// MessageId: INCONSISTENT_IRP
 
551
//
 
552
// MessageText:
 
553
//
 
554
//  INCONSISTENT_IRP
 
555
//
 
556
 
 
557
  INCONSISTENT_IRP = ULONG($0000002A);
 
558
  {$EXTERNALSYM INCONSISTENT_IRP}
 
559
 
 
560
//
 
561
// MessageId: PANIC_STACK_SWITCH
 
562
//
 
563
// MessageText:
 
564
//
 
565
//  PANIC_STACK_SWITCH
 
566
//
 
567
 
 
568
  PANIC_STACK_SWITCH = ULONG($0000002B);
 
569
  {$EXTERNALSYM PANIC_STACK_SWITCH}
 
570
 
 
571
//
 
572
// MessageId: PORT_DRIVER_INTERNAL
 
573
//
 
574
// MessageText:
 
575
//
 
576
//  PORT_DRIVER_INTERNAL
 
577
//
 
578
 
 
579
  PORT_DRIVER_INTERNAL = ULONG($0000002C);
 
580
  {$EXTERNALSYM PORT_DRIVER_INTERNAL}
 
581
 
 
582
//
 
583
// MessageId: SCSI_DISK_DRIVER_INTERNAL
 
584
//
 
585
// MessageText:
 
586
//
 
587
//  SCSI_DISK_DRIVER_INTERNAL
 
588
//
 
589
 
 
590
  SCSI_DISK_DRIVER_INTERNAL = ULONG($0000002D);
 
591
  {$EXTERNALSYM SCSI_DISK_DRIVER_INTERNAL}
 
592
 
 
593
//
 
594
// MessageId: DATA_BUS_ERROR
 
595
//
 
596
// MessageText:
 
597
//
 
598
//  DATA_BUS_ERROR
 
599
//
 
600
 
 
601
  DATA_BUS_ERROR = ULONG($0000002E);
 
602
  {$EXTERNALSYM DATA_BUS_ERROR}
 
603
 
 
604
//
 
605
// MessageId: INSTRUCTION_BUS_ERROR
 
606
//
 
607
// MessageText:
 
608
//
 
609
//  INSTRUCTION_BUS_ERROR
 
610
//
 
611
 
 
612
  INSTRUCTION_BUS_ERROR = ULONG($0000002F);
 
613
  {$EXTERNALSYM INSTRUCTION_BUS_ERROR}
 
614
 
 
615
//
 
616
// MessageId: SET_OF_INVALID_CONTEXT
 
617
//
 
618
// MessageText:
 
619
//
 
620
//  SET_OF_INVALID_CONTEXT
 
621
//
 
622
 
 
623
  SET_OF_INVALID_CONTEXT = ULONG($00000030);
 
624
  {$EXTERNALSYM SET_OF_INVALID_CONTEXT}
 
625
 
 
626
//
 
627
// MessageId: PHASE0_INITIALIZATION_FAILED
 
628
//
 
629
// MessageText:
 
630
//
 
631
//  PHASE0_INITIALIZATION_FAILED
 
632
//
 
633
 
 
634
  PHASE0_INITIALIZATION_FAILED = ULONG($00000031);
 
635
  {$EXTERNALSYM PHASE0_INITIALIZATION_FAILED}
 
636
 
 
637
//
 
638
// MessageId: PHASE1_INITIALIZATION_FAILED
 
639
//
 
640
// MessageText:
 
641
//
 
642
//  PHASE1_INITIALIZATION_FAILED
 
643
//
 
644
 
 
645
  PHASE1_INITIALIZATION_FAILED = ULONG($00000032);
 
646
  {$EXTERNALSYM PHASE1_INITIALIZATION_FAILED}
 
647
 
 
648
//
 
649
// MessageId: UNEXPECTED_INITIALIZATION_CALL
 
650
//
 
651
// MessageText:
 
652
//
 
653
//  UNEXPECTED_INITIALIZATION_CALL
 
654
//
 
655
 
 
656
  UNEXPECTED_INITIALIZATION_CALL = ULONG($00000033);
 
657
  {$EXTERNALSYM UNEXPECTED_INITIALIZATION_CALL}
 
658
 
 
659
//
 
660
// MessageId: CACHE_MANAGER
 
661
//
 
662
// MessageText:
 
663
//
 
664
//  CACHE_MANAGER
 
665
//
 
666
 
 
667
  CACHE_MANAGER = ULONG($00000034);
 
668
  {$EXTERNALSYM CACHE_MANAGER}
 
669
 
 
670
//
 
671
// MessageId: NO_MORE_IRP_STACK_LOCATIONS
 
672
//
 
673
// MessageText:
 
674
//
 
675
//  NO_MORE_IRP_STACK_LOCATIONS
 
676
//
 
677
 
 
678
  NO_MORE_IRP_STACK_LOCATIONS = ULONG($00000035);
 
679
  {$EXTERNALSYM NO_MORE_IRP_STACK_LOCATIONS}
 
680
 
 
681
//
 
682
// MessageId: DEVICE_REFERENCE_COUNT_NOT_ZERO
 
683
//
 
684
// MessageText:
 
685
//
 
686
//  DEVICE_REFERENCE_COUNT_NOT_ZERO
 
687
//
 
688
 
 
689
  DEVICE_REFERENCE_COUNT_NOT_ZERO = ULONG($00000036);
 
690
  {$EXTERNALSYM DEVICE_REFERENCE_COUNT_NOT_ZERO}
 
691
 
 
692
//
 
693
// MessageId: FLOPPY_INTERNAL_ERROR
 
694
//
 
695
// MessageText:
 
696
//
 
697
//  FLOPPY_INTERNAL_ERROR
 
698
//
 
699
 
 
700
  FLOPPY_INTERNAL_ERROR = ULONG($00000037);
 
701
  {$EXTERNALSYM FLOPPY_INTERNAL_ERROR}
 
702
 
 
703
//
 
704
// MessageId: SERIAL_DRIVER_INTERNAL
 
705
//
 
706
// MessageText:
 
707
//
 
708
//  SERIAL_DRIVER_INTERNAL
 
709
//
 
710
 
 
711
  SERIAL_DRIVER_INTERNAL = ULONG($00000038);
 
712
  {$EXTERNALSYM SERIAL_DRIVER_INTERNAL}
 
713
 
 
714
//
 
715
// MessageId: SYSTEM_EXIT_OWNED_MUTEX
 
716
//
 
717
// MessageText:
 
718
//
 
719
//  SYSTEM_EXIT_OWNED_MUTEX
 
720
//
 
721
 
 
722
  SYSTEM_EXIT_OWNED_MUTEX = ULONG($00000039);
 
723
  {$EXTERNALSYM SYSTEM_EXIT_OWNED_MUTEX}
 
724
 
 
725
//
 
726
// MessageId: SYSTEM_UNWIND_PREVIOUS_USER
 
727
//
 
728
// MessageText:
 
729
//
 
730
//  SYSTEM_UNWIND_PREVIOUS_USER
 
731
//
 
732
 
 
733
  SYSTEM_UNWIND_PREVIOUS_USER = ULONG($0000003A);
 
734
  {$EXTERNALSYM SYSTEM_UNWIND_PREVIOUS_USER}
 
735
 
 
736
//
 
737
// MessageId: SYSTEM_SERVICE_EXCEPTION
 
738
//
 
739
// MessageText:
 
740
//
 
741
//  SYSTEM_SERVICE_EXCEPTION
 
742
//
 
743
 
 
744
  SYSTEM_SERVICE_EXCEPTION = ULONG($0000003B);
 
745
  {$EXTERNALSYM SYSTEM_SERVICE_EXCEPTION}
 
746
 
 
747
//
 
748
// MessageId: INTERRUPT_UNWIND_ATTEMPTED
 
749
//
 
750
// MessageText:
 
751
//
 
752
//  INTERRUPT_UNWIND_ATTEMPTED
 
753
//
 
754
 
 
755
  INTERRUPT_UNWIND_ATTEMPTED = ULONG($0000003C);
 
756
  {$EXTERNALSYM INTERRUPT_UNWIND_ATTEMPTED}
 
757
 
 
758
//
 
759
// MessageId: INTERRUPT_EXCEPTION_NOT_HANDLED
 
760
//
 
761
// MessageText:
 
762
//
 
763
//  INTERRUPT_EXCEPTION_NOT_HANDLED
 
764
//
 
765
 
 
766
  INTERRUPT_EXCEPTION_NOT_HANDLED = ULONG($0000003D);
 
767
  {$EXTERNALSYM INTERRUPT_EXCEPTION_NOT_HANDLED}
 
768
 
 
769
//
 
770
// MessageId: MULTIPROCESSOR_CONFIGURATION_NOT_SUPPORTED
 
771
//
 
772
// MessageText:
 
773
//
 
774
//  MULTIPROCESSOR_CONFIGURATION_NOT_SUPPORTED
 
775
//
 
776
 
 
777
  MULTIPROCESSOR_CONFIGURATION_NOT_SUPPORTED = ULONG($0000003E);
 
778
  {$EXTERNALSYM MULTIPROCESSOR_CONFIGURATION_NOT_SUPPORTED}
 
779
 
 
780
//
 
781
// MessageId: NO_MORE_SYSTEM_PTES
 
782
//
 
783
// MessageText:
 
784
//
 
785
//  NO_MORE_SYSTEM_PTES
 
786
//
 
787
 
 
788
  NO_MORE_SYSTEM_PTES = ULONG($0000003F);
 
789
  {$EXTERNALSYM NO_MORE_SYSTEM_PTES}
 
790
 
 
791
//
 
792
// MessageId: TARGET_MDL_TOO_SMALL
 
793
//
 
794
// MessageText:
 
795
//
 
796
//  TARGET_MDL_TOO_SMALL
 
797
//
 
798
 
 
799
  TARGET_MDL_TOO_SMALL = ULONG($00000040);
 
800
  {$EXTERNALSYM TARGET_MDL_TOO_SMALL}
 
801
 
 
802
//
 
803
// MessageId: MUST_SUCCEED_POOL_EMPTY
 
804
//
 
805
// MessageText:
 
806
//
 
807
//  MUST_SUCCEED_POOL_EMPTY
 
808
//
 
809
 
 
810
  MUST_SUCCEED_POOL_EMPTY = ULONG($00000041);
 
811
  {$EXTERNALSYM MUST_SUCCEED_POOL_EMPTY}
 
812
 
 
813
//
 
814
// MessageId: ATDISK_DRIVER_INTERNAL
 
815
//
 
816
// MessageText:
 
817
//
 
818
//  ATDISK_DRIVER_INTERNAL
 
819
//
 
820
 
 
821
  ATDISK_DRIVER_INTERNAL = ULONG($00000042);
 
822
  {$EXTERNALSYM ATDISK_DRIVER_INTERNAL}
 
823
 
 
824
//
 
825
// MessageId: NO_SUCH_PARTITION
 
826
//
 
827
// MessageText:
 
828
//
 
829
//  NO_SUCH_PARTITION
 
830
//
 
831
 
 
832
  NO_SUCH_PARTITION = ULONG($00000043);
 
833
  {$EXTERNALSYM NO_SUCH_PARTITION}
 
834
 
 
835
//
 
836
// MessageId: MULTIPLE_IRP_COMPLETE_REQUESTS
 
837
//
 
838
// MessageText:
 
839
//
 
840
//  MULTIPLE_IRP_COMPLETE_REQUESTS
 
841
//
 
842
 
 
843
  MULTIPLE_IRP_COMPLETE_REQUESTS = ULONG($00000044);
 
844
  {$EXTERNALSYM MULTIPLE_IRP_COMPLETE_REQUESTS}
 
845
 
 
846
//
 
847
// MessageId: INSUFFICIENT_SYSTEM_MAP_REGS
 
848
//
 
849
// MessageText:
 
850
//
 
851
//  INSUFFICIENT_SYSTEM_MAP_REGS
 
852
//
 
853
 
 
854
  INSUFFICIENT_SYSTEM_MAP_REGS = ULONG($00000045);
 
855
  {$EXTERNALSYM INSUFFICIENT_SYSTEM_MAP_REGS}
 
856
 
 
857
//
 
858
// MessageId: DEREF_UNKNOWN_LOGON_SESSION
 
859
//
 
860
// MessageText:
 
861
//
 
862
//  DEREF_UNKNOWN_LOGON_SESSION
 
863
//
 
864
 
 
865
  DEREF_UNKNOWN_LOGON_SESSION = ULONG($00000046);
 
866
  {$EXTERNALSYM DEREF_UNKNOWN_LOGON_SESSION}
 
867
 
 
868
//
 
869
// MessageId: REF_UNKNOWN_LOGON_SESSION
 
870
//
 
871
// MessageText:
 
872
//
 
873
//  REF_UNKNOWN_LOGON_SESSION
 
874
//
 
875
 
 
876
  REF_UNKNOWN_LOGON_SESSION = ULONG($00000047);
 
877
  {$EXTERNALSYM REF_UNKNOWN_LOGON_SESSION}
 
878
 
 
879
//
 
880
// MessageId: CANCEL_STATE_IN_COMPLETED_IRP
 
881
//
 
882
// MessageText:
 
883
//
 
884
//  CANCEL_STATE_IN_COMPLETED_IRP
 
885
//
 
886
 
 
887
  CANCEL_STATE_IN_COMPLETED_IRP = ULONG($00000048);
 
888
  {$EXTERNALSYM CANCEL_STATE_IN_COMPLETED_IRP}
 
889
 
 
890
//
 
891
// MessageId: PAGE_FAULT_WITH_INTERRUPTS_OFF
 
892
//
 
893
// MessageText:
 
894
//
 
895
//  PAGE_FAULT_WITH_INTERRUPTS_OFF
 
896
//
 
897
 
 
898
  PAGE_FAULT_WITH_INTERRUPTS_OFF = ULONG($00000049);
 
899
  {$EXTERNALSYM PAGE_FAULT_WITH_INTERRUPTS_OFF}
 
900
 
 
901
//
 
902
// MessageId: IRQL_GT_ZERO_AT_SYSTEM_SERVICE
 
903
//
 
904
// MessageText:
 
905
//
 
906
//  IRQL_GT_ZERO_AT_SYSTEM_SERVICE
 
907
//
 
908
 
 
909
  IRQL_GT_ZERO_AT_SYSTEM_SERVICE = ULONG($0000004A);
 
910
  {$EXTERNALSYM IRQL_GT_ZERO_AT_SYSTEM_SERVICE}
 
911
 
 
912
//
 
913
// MessageId: STREAMS_INTERNAL_ERROR
 
914
//
 
915
// MessageText:
 
916
//
 
917
//  STREAMS_INTERNAL_ERROR
 
918
//
 
919
 
 
920
  STREAMS_INTERNAL_ERROR = ULONG($0000004B);
 
921
  {$EXTERNALSYM STREAMS_INTERNAL_ERROR}
 
922
 
 
923
//
 
924
// MessageId: FATAL_UNHANDLED_HARD_ERROR
 
925
//
 
926
// MessageText:
 
927
//
 
928
//  FATAL_UNHANDLED_HARD_ERROR
 
929
//
 
930
 
 
931
  FATAL_UNHANDLED_HARD_ERROR = ULONG($0000004C);
 
932
  {$EXTERNALSYM FATAL_UNHANDLED_HARD_ERROR}
 
933
 
 
934
//
 
935
// MessageId: NO_PAGES_AVAILABLE
 
936
//
 
937
// MessageText:
 
938
//
 
939
//  NO_PAGES_AVAILABLE
 
940
//
 
941
 
 
942
  NO_PAGES_AVAILABLE = ULONG($0000004D);
 
943
  {$EXTERNALSYM NO_PAGES_AVAILABLE}
 
944
 
 
945
//
 
946
// MessageId: PFN_LIST_CORRUPT
 
947
//
 
948
// MessageText:
 
949
//
 
950
//  PFN_LIST_CORRUPT
 
951
//
 
952
 
 
953
  PFN_LIST_CORRUPT = ULONG($0000004E);
 
954
  {$EXTERNALSYM PFN_LIST_CORRUPT}
 
955
 
 
956
//
 
957
// MessageId: NDIS_INTERNAL_ERROR
 
958
//
 
959
// MessageText:
 
960
//
 
961
//  NDIS_INTERNAL_ERROR
 
962
//
 
963
 
 
964
  NDIS_INTERNAL_ERROR = ULONG($0000004F);
 
965
  {$EXTERNALSYM NDIS_INTERNAL_ERROR}
 
966
 
 
967
//
 
968
// MessageId: PAGE_FAULT_IN_NONPAGED_AREA
 
969
//
 
970
// MessageText:
 
971
//
 
972
//  PAGE_FAULT_IN_NONPAGED_AREA
 
973
//
 
974
 
 
975
  PAGE_FAULT_IN_NONPAGED_AREA = ULONG($00000050);
 
976
  {$EXTERNALSYM PAGE_FAULT_IN_NONPAGED_AREA}
 
977
 
 
978
//
 
979
// MessageId: REGISTRY_ERROR
 
980
//
 
981
// MessageText:
 
982
//
 
983
//  REGISTRY_ERROR
 
984
//
 
985
 
 
986
  REGISTRY_ERROR = ULONG($00000051);
 
987
  {$EXTERNALSYM REGISTRY_ERROR}
 
988
 
 
989
//
 
990
// MessageId: MAILSLOT_FILE_SYSTEM
 
991
//
 
992
// MessageText:
 
993
//
 
994
//  MAILSLOT_FILE_SYSTEM
 
995
//
 
996
 
 
997
  MAILSLOT_FILE_SYSTEM = ULONG($00000052);
 
998
  {$EXTERNALSYM MAILSLOT_FILE_SYSTEM}
 
999
 
 
1000
//
 
1001
// MessageId: NO_BOOT_DEVICE
 
1002
//
 
1003
// MessageText:
 
1004
//
 
1005
//  NO_BOOT_DEVICE
 
1006
//
 
1007
 
 
1008
  NO_BOOT_DEVICE = ULONG($00000053);
 
1009
  {$EXTERNALSYM NO_BOOT_DEVICE}
 
1010
 
 
1011
//
 
1012
// MessageId: LM_SERVER_INTERNAL_ERROR
 
1013
//
 
1014
// MessageText:
 
1015
//
 
1016
//  LM_SERVER_INTERNAL_ERROR
 
1017
//
 
1018
 
 
1019
  LM_SERVER_INTERNAL_ERROR = ULONG($00000054);
 
1020
  {$EXTERNALSYM LM_SERVER_INTERNAL_ERROR}
 
1021
 
 
1022
//
 
1023
// MessageId: DATA_COHERENCY_EXCEPTION
 
1024
//
 
1025
// MessageText:
 
1026
//
 
1027
//  DATA_COHERENCY_EXCEPTION
 
1028
//
 
1029
 
 
1030
  DATA_COHERENCY_EXCEPTION = ULONG($00000055);
 
1031
  {$EXTERNALSYM DATA_COHERENCY_EXCEPTION}
 
1032
 
 
1033
//
 
1034
// MessageId: INSTRUCTION_COHERENCY_EXCEPTION
 
1035
//
 
1036
// MessageText:
 
1037
//
 
1038
//  INSTRUCTION_COHERENCY_EXCEPTION
 
1039
//
 
1040
 
 
1041
  INSTRUCTION_COHERENCY_EXCEPTION = ULONG($00000056);
 
1042
  {$EXTERNALSYM INSTRUCTION_COHERENCY_EXCEPTION}
 
1043
 
 
1044
//
 
1045
// MessageId: XNS_INTERNAL_ERROR
 
1046
//
 
1047
// MessageText:
 
1048
//
 
1049
//  XNS_INTERNAL_ERROR
 
1050
//
 
1051
 
 
1052
  XNS_INTERNAL_ERROR = ULONG($00000057);
 
1053
  {$EXTERNALSYM XNS_INTERNAL_ERROR}
 
1054
 
 
1055
//
 
1056
// MessageId: FTDISK_INTERNAL_ERROR
 
1057
//
 
1058
// MessageText:
 
1059
//
 
1060
//  FTDISK_INTERNAL_ERROR
 
1061
//
 
1062
 
 
1063
  FTDISK_INTERNAL_ERROR = ULONG($00000058);
 
1064
  {$EXTERNALSYM FTDISK_INTERNAL_ERROR}
 
1065
 
 
1066
//
 
1067
// MessageId: PINBALL_FILE_SYSTEM
 
1068
//
 
1069
// MessageText:
 
1070
//
 
1071
//  PINBALL_FILE_SYSTEM
 
1072
//
 
1073
 
 
1074
  PINBALL_FILE_SYSTEM = ULONG($00000059);
 
1075
  {$EXTERNALSYM PINBALL_FILE_SYSTEM}
 
1076
 
 
1077
//
 
1078
// MessageId: CRITICAL_SERVICE_FAILED
 
1079
//
 
1080
// MessageText:
 
1081
//
 
1082
//  CRITICAL_SERVICE_FAILED
 
1083
//
 
1084
 
 
1085
  CRITICAL_SERVICE_FAILED = ULONG($0000005A);
 
1086
  {$EXTERNALSYM CRITICAL_SERVICE_FAILED}
 
1087
 
 
1088
//
 
1089
// MessageId: SET_ENV_VAR_FAILED
 
1090
//
 
1091
// MessageText:
 
1092
//
 
1093
//  SET_ENV_VAR_FAILED
 
1094
//
 
1095
 
 
1096
  SET_ENV_VAR_FAILED = ULONG($0000005B);
 
1097
  {$EXTERNALSYM SET_ENV_VAR_FAILED}
 
1098
 
 
1099
//
 
1100
// MessageId: HAL_INITIALIZATION_FAILED
 
1101
//
 
1102
// MessageText:
 
1103
//
 
1104
//  HAL_INITIALIZATION_FAILED
 
1105
//
 
1106
 
 
1107
  HAL_INITIALIZATION_FAILED = ULONG($0000005C);
 
1108
  {$EXTERNALSYM HAL_INITIALIZATION_FAILED}
 
1109
 
 
1110
//
 
1111
// MessageId: UNSUPPORTED_PROCESSOR
 
1112
//
 
1113
// MessageText:
 
1114
//
 
1115
//  UNSUPPORTED_PROCESSOR
 
1116
//
 
1117
 
 
1118
  UNSUPPORTED_PROCESSOR = ULONG($0000005D);
 
1119
  {$EXTERNALSYM UNSUPPORTED_PROCESSOR}
 
1120
 
 
1121
//
 
1122
// MessageId: OBJECT_INITIALIZATION_FAILED
 
1123
//
 
1124
// MessageText:
 
1125
//
 
1126
//  OBJECT_INITIALIZATION_FAILED
 
1127
//
 
1128
 
 
1129
  OBJECT_INITIALIZATION_FAILED = ULONG($0000005E);
 
1130
  {$EXTERNALSYM OBJECT_INITIALIZATION_FAILED}
 
1131
 
 
1132
//
 
1133
// MessageId: SECURITY_INITIALIZATION_FAILED
 
1134
//
 
1135
// MessageText:
 
1136
//
 
1137
//  SECURITY_INITIALIZATION_FAILED
 
1138
//
 
1139
 
 
1140
  SECURITY_INITIALIZATION_FAILED = ULONG($0000005F);
 
1141
  {$EXTERNALSYM SECURITY_INITIALIZATION_FAILED}
 
1142
 
 
1143
//
 
1144
// MessageId: PROCESS_INITIALIZATION_FAILED
 
1145
//
 
1146
// MessageText:
 
1147
//
 
1148
//  PROCESS_INITIALIZATION_FAILED
 
1149
//
 
1150
 
 
1151
  PROCESS_INITIALIZATION_FAILED = ULONG($00000060);
 
1152
  {$EXTERNALSYM PROCESS_INITIALIZATION_FAILED}
 
1153
 
 
1154
//
 
1155
// MessageId: HAL1_INITIALIZATION_FAILED
 
1156
//
 
1157
// MessageText:
 
1158
//
 
1159
//  HAL1_INITIALIZATION_FAILED
 
1160
//
 
1161
 
 
1162
  HAL1_INITIALIZATION_FAILED = ULONG($00000061);
 
1163
  {$EXTERNALSYM HAL1_INITIALIZATION_FAILED}
 
1164
 
 
1165
//
 
1166
// MessageId: OBJECT1_INITIALIZATION_FAILED
 
1167
//
 
1168
// MessageText:
 
1169
//
 
1170
//  OBJECT1_INITIALIZATION_FAILED
 
1171
//
 
1172
 
 
1173
  OBJECT1_INITIALIZATION_FAILED = ULONG($00000062);
 
1174
  {$EXTERNALSYM OBJECT1_INITIALIZATION_FAILED}
 
1175
 
 
1176
//
 
1177
// MessageId: SECURITY1_INITIALIZATION_FAILED
 
1178
//
 
1179
// MessageText:
 
1180
//
 
1181
//  SECURITY1_INITIALIZATION_FAILED
 
1182
//
 
1183
 
 
1184
  SECURITY1_INITIALIZATION_FAILED = ULONG($00000063);
 
1185
  {$EXTERNALSYM SECURITY1_INITIALIZATION_FAILED}
 
1186
 
 
1187
//
 
1188
// MessageId: SYMBOLIC_INITIALIZATION_FAILED
 
1189
//
 
1190
// MessageText:
 
1191
//
 
1192
//  SYMBOLIC_INITIALIZATION_FAILED
 
1193
//
 
1194
 
 
1195
  SYMBOLIC_INITIALIZATION_FAILED = ULONG($00000064);
 
1196
  {$EXTERNALSYM SYMBOLIC_INITIALIZATION_FAILED}
 
1197
 
 
1198
//
 
1199
// MessageId: MEMORY1_INITIALIZATION_FAILED
 
1200
//
 
1201
// MessageText:
 
1202
//
 
1203
//  MEMORY1_INITIALIZATION_FAILED
 
1204
//
 
1205
 
 
1206
  MEMORY1_INITIALIZATION_FAILED = ULONG($00000065);
 
1207
  {$EXTERNALSYM MEMORY1_INITIALIZATION_FAILED}
 
1208
 
 
1209
//
 
1210
// MessageId: CACHE_INITIALIZATION_FAILED
 
1211
//
 
1212
// MessageText:
 
1213
//
 
1214
//  CACHE_INITIALIZATION_FAILED
 
1215
//
 
1216
 
 
1217
  CACHE_INITIALIZATION_FAILED = ULONG($00000066);
 
1218
  {$EXTERNALSYM CACHE_INITIALIZATION_FAILED}
 
1219
 
 
1220
//
 
1221
// MessageId: CONFIG_INITIALIZATION_FAILED
 
1222
//
 
1223
// MessageText:
 
1224
//
 
1225
//  CONFIG_INITIALIZATION_FAILED
 
1226
//
 
1227
 
 
1228
  CONFIG_INITIALIZATION_FAILED = ULONG($00000067);
 
1229
  {$EXTERNALSYM CONFIG_INITIALIZATION_FAILED}
 
1230
 
 
1231
//
 
1232
// MessageId: FILE_INITIALIZATION_FAILED
 
1233
//
 
1234
// MessageText:
 
1235
//
 
1236
//  FILE_INITIALIZATION_FAILED
 
1237
//
 
1238
 
 
1239
  FILE_INITIALIZATION_FAILED = ULONG($00000068);
 
1240
  {$EXTERNALSYM FILE_INITIALIZATION_FAILED}
 
1241
 
 
1242
//
 
1243
// MessageId: IO1_INITIALIZATION_FAILED
 
1244
//
 
1245
// MessageText:
 
1246
//
 
1247
//  IO1_INITIALIZATION_FAILED
 
1248
//
 
1249
 
 
1250
  IO1_INITIALIZATION_FAILED = ULONG($00000069);
 
1251
  {$EXTERNALSYM IO1_INITIALIZATION_FAILED}
 
1252
 
 
1253
//
 
1254
// MessageId: LPC_INITIALIZATION_FAILED
 
1255
//
 
1256
// MessageText:
 
1257
//
 
1258
//  LPC_INITIALIZATION_FAILED
 
1259
//
 
1260
 
 
1261
  LPC_INITIALIZATION_FAILED = ULONG($0000006A);
 
1262
  {$EXTERNALSYM LPC_INITIALIZATION_FAILED}
 
1263
 
 
1264
//
 
1265
// MessageId: PROCESS1_INITIALIZATION_FAILED
 
1266
//
 
1267
// MessageText:
 
1268
//
 
1269
//  PROCESS1_INITIALIZATION_FAILED
 
1270
//
 
1271
 
 
1272
  PROCESS1_INITIALIZATION_FAILED = ULONG($0000006B);
 
1273
  {$EXTERNALSYM PROCESS1_INITIALIZATION_FAILED}
 
1274
 
 
1275
//
 
1276
// MessageId: REFMON_INITIALIZATION_FAILED
 
1277
//
 
1278
// MessageText:
 
1279
//
 
1280
//  REFMON_INITIALIZATION_FAILED
 
1281
//
 
1282
 
 
1283
  REFMON_INITIALIZATION_FAILED = ULONG($0000006C);
 
1284
  {$EXTERNALSYM REFMON_INITIALIZATION_FAILED}
 
1285
 
 
1286
//
 
1287
// MessageId: SESSION1_INITIALIZATION_FAILED
 
1288
//
 
1289
// MessageText:
 
1290
//
 
1291
//  SESSION1_INITIALIZATION_FAILED
 
1292
//
 
1293
 
 
1294
  SESSION1_INITIALIZATION_FAILED = ULONG($0000006D);
 
1295
  {$EXTERNALSYM SESSION1_INITIALIZATION_FAILED}
 
1296
 
 
1297
//
 
1298
// MessageId: SESSION2_INITIALIZATION_FAILED
 
1299
//
 
1300
// MessageText:
 
1301
//
 
1302
//  SESSION2_INITIALIZATION_FAILED
 
1303
//
 
1304
 
 
1305
  SESSION2_INITIALIZATION_FAILED = ULONG($0000006E);
 
1306
  {$EXTERNALSYM SESSION2_INITIALIZATION_FAILED}
 
1307
 
 
1308
//
 
1309
// MessageId: SESSION3_INITIALIZATION_FAILED
 
1310
//
 
1311
// MessageText:
 
1312
//
 
1313
//  SESSION3_INITIALIZATION_FAILED
 
1314
//
 
1315
 
 
1316
  SESSION3_INITIALIZATION_FAILED = ULONG($0000006F);
 
1317
  {$EXTERNALSYM SESSION3_INITIALIZATION_FAILED}
 
1318
 
 
1319
//
 
1320
// MessageId: SESSION4_INITIALIZATION_FAILED
 
1321
//
 
1322
// MessageText:
 
1323
//
 
1324
//  SESSION4_INITIALIZATION_FAILED
 
1325
//
 
1326
 
 
1327
  SESSION4_INITIALIZATION_FAILED = ULONG($00000070);
 
1328
  {$EXTERNALSYM SESSION4_INITIALIZATION_FAILED}
 
1329
 
 
1330
//
 
1331
// MessageId: SESSION5_INITIALIZATION_FAILED
 
1332
//
 
1333
// MessageText:
 
1334
//
 
1335
//  SESSION5_INITIALIZATION_FAILED
 
1336
//
 
1337
 
 
1338
  SESSION5_INITIALIZATION_FAILED = ULONG($00000071);
 
1339
  {$EXTERNALSYM SESSION5_INITIALIZATION_FAILED}
 
1340
 
 
1341
//
 
1342
// MessageId: ASSIGN_DRIVE_LETTERS_FAILED
 
1343
//
 
1344
// MessageText:
 
1345
//
 
1346
//  ASSIGN_DRIVE_LETTERS_FAILED
 
1347
//
 
1348
 
 
1349
  ASSIGN_DRIVE_LETTERS_FAILED = ULONG($00000072);
 
1350
  {$EXTERNALSYM ASSIGN_DRIVE_LETTERS_FAILED}
 
1351
 
 
1352
//
 
1353
// MessageId: CONFIG_LIST_FAILED
 
1354
//
 
1355
// MessageText:
 
1356
//
 
1357
//  CONFIG_LIST_FAILED
 
1358
//
 
1359
 
 
1360
  CONFIG_LIST_FAILED = ULONG($00000073);
 
1361
  {$EXTERNALSYM CONFIG_LIST_FAILED}
 
1362
 
 
1363
//
 
1364
// MessageId: BAD_SYSTEM_CONFIG_INFO
 
1365
//
 
1366
// MessageText:
 
1367
//
 
1368
//  BAD_SYSTEM_CONFIG_INFO
 
1369
//
 
1370
 
 
1371
  BAD_SYSTEM_CONFIG_INFO = ULONG($00000074);
 
1372
  {$EXTERNALSYM BAD_SYSTEM_CONFIG_INFO}
 
1373
 
 
1374
//
 
1375
// MessageId: CANNOT_WRITE_CONFIGURATION
 
1376
//
 
1377
// MessageText:
 
1378
//
 
1379
//  CANNOT_WRITE_CONFIGURATION
 
1380
//
 
1381
 
 
1382
  CANNOT_WRITE_CONFIGURATION = ULONG($00000075);
 
1383
  {$EXTERNALSYM CANNOT_WRITE_CONFIGURATION}
 
1384
 
 
1385
//
 
1386
// MessageId: PROCESS_HAS_LOCKED_PAGES
 
1387
//
 
1388
// MessageText:
 
1389
//
 
1390
//  PROCESS_HAS_LOCKED_PAGES
 
1391
//
 
1392
 
 
1393
  PROCESS_HAS_LOCKED_PAGES = ULONG($00000076);
 
1394
  {$EXTERNALSYM PROCESS_HAS_LOCKED_PAGES}
 
1395
 
 
1396
//
 
1397
// MessageId: KERNEL_STACK_INPAGE_ERROR
 
1398
//
 
1399
// MessageText:
 
1400
//
 
1401
//  KERNEL_STACK_INPAGE_ERROR
 
1402
//
 
1403
 
 
1404
  KERNEL_STACK_INPAGE_ERROR = ULONG($00000077);
 
1405
  {$EXTERNALSYM KERNEL_STACK_INPAGE_ERROR}
 
1406
 
 
1407
//
 
1408
// MessageId: PHASE0_EXCEPTION
 
1409
//
 
1410
// MessageText:
 
1411
//
 
1412
//  PHASE0_EXCEPTION
 
1413
//
 
1414
 
 
1415
  PHASE0_EXCEPTION = ULONG($00000078);
 
1416
  {$EXTERNALSYM PHASE0_EXCEPTION}
 
1417
 
 
1418
//
 
1419
// MessageId: MISMATCHED_HAL
 
1420
//
 
1421
// MessageText:
 
1422
//
 
1423
//  Mismatched kernel and hal image.
 
1424
//
 
1425
 
 
1426
  MISMATCHED_HAL = ULONG($00000079);
 
1427
  {$EXTERNALSYM MISMATCHED_HAL}
 
1428
 
 
1429
//
 
1430
// MessageId: KERNEL_DATA_INPAGE_ERROR
 
1431
//
 
1432
// MessageText:
 
1433
//
 
1434
//  KERNEL_DATA_INPAGE_ERROR
 
1435
//
 
1436
 
 
1437
  KERNEL_DATA_INPAGE_ERROR = ULONG($0000007A);
 
1438
  {$EXTERNALSYM KERNEL_DATA_INPAGE_ERROR}
 
1439
 
 
1440
//
 
1441
// MessageId: INACCESSIBLE_BOOT_DEVICE
 
1442
//
 
1443
// MessageText:
 
1444
//
 
1445
//  INACCESSIBLE_BOOT_DEVICE
 
1446
//
 
1447
 
 
1448
  INACCESSIBLE_BOOT_DEVICE = ULONG($0000007B);
 
1449
  {$EXTERNALSYM INACCESSIBLE_BOOT_DEVICE}
 
1450
 
 
1451
//
 
1452
// MessageId: BUGCODE_PSS_MESSAGE
 
1453
//
 
1454
// MessageText:
 
1455
//
 
1456
//  If this is the first time you've seen this Stop error screen,
 
1457
//  restart your computer. If this screen appears again, follow
 
1458
//  these steps:
 
1459
//  
 
1460
//  Check to make sure any new hardware or software is properly installed.
 
1461
//  If this is a new installation, ask your hardware or software manufacturer
 
1462
//  for any Windows 2000 updates you might need.
 
1463
//  
 
1464
//  If problems continue, disable or remove any newly installed hardware
 
1465
//  or software. Disable BIOS memory options such as caching or shadowing.
 
1466
//  If you need to use Safe Mode to remove or disable components, restart
 
1467
//  your computer, press F8 to select Advanced Startup Options, and then
 
1468
//  select Safe Mode.
 
1469
//  
 
1470
//  Refer to your Getting Started manual for more information on
 
1471
//  troubleshooting Stop errors.
 
1472
//
 
1473
 
 
1474
  BUGCODE_PSS_MESSAGE = ULONG($0000007C);
 
1475
  {$EXTERNALSYM BUGCODE_PSS_MESSAGE}
 
1476
 
 
1477
//
 
1478
// MessageId: INSTALL_MORE_MEMORY
 
1479
//
 
1480
// MessageText:
 
1481
//
 
1482
//  INSTALL_MORE_MEMORY
 
1483
//
 
1484
 
 
1485
  INSTALL_MORE_MEMORY = ULONG($0000007D);
 
1486
  {$EXTERNALSYM INSTALL_MORE_MEMORY}
 
1487
 
 
1488
//
 
1489
// MessageId: WINDOWS_NT_BANNER
 
1490
//
 
1491
// MessageText:
 
1492
//
 
1493
//  Microsoft (R) Windows 2000 (R) Version %hs (Build %u%hs)
 
1494
//
 
1495
 
 
1496
  WINDOWS_NT_BANNER = ULONG($4000007E);
 
1497
  {$EXTERNALSYM WINDOWS_NT_BANNER}
 
1498
 
 
1499
//
 
1500
// MessageId: UNEXPECTED_KERNEL_MODE_TRAP
 
1501
//
 
1502
// MessageText:
 
1503
//
 
1504
//  UNEXPECTED_KERNEL_MODE_TRAP
 
1505
//
 
1506
 
 
1507
  UNEXPECTED_KERNEL_MODE_TRAP = ULONG($0000007F);
 
1508
  {$EXTERNALSYM UNEXPECTED_KERNEL_MODE_TRAP}
 
1509
 
 
1510
//
 
1511
// MessageId: NMI_HARDWARE_FAILURE
 
1512
//
 
1513
// MessageText:
 
1514
//
 
1515
//  Hardware malfunction.
 
1516
//
 
1517
 
 
1518
  NMI_HARDWARE_FAILURE = ULONG($00000080);
 
1519
  {$EXTERNALSYM NMI_HARDWARE_FAILURE}
 
1520
 
 
1521
//
 
1522
// MessageId: SPIN_LOCK_INIT_FAILURE
 
1523
//
 
1524
// MessageText:
 
1525
//
 
1526
//  SPIN_LOCK_INIT_FAILURE
 
1527
//
 
1528
 
 
1529
  SPIN_LOCK_INIT_FAILURE = ULONG($00000081);
 
1530
  {$EXTERNALSYM SPIN_LOCK_INIT_FAILURE}
 
1531
 
 
1532
//
 
1533
// MessageId: DFS_FILE_SYSTEM
 
1534
//
 
1535
// MessageText:
 
1536
//
 
1537
//  DFS_FILE_SYSTEM
 
1538
//
 
1539
 
 
1540
  DFS_FILE_SYSTEM = ULONG($00000082);
 
1541
  {$EXTERNALSYM DFS_FILE_SYSTEM}
 
1542
 
 
1543
//
 
1544
// MessageId: OFS_FILE_SYSTEM
 
1545
//
 
1546
// MessageText:
 
1547
//
 
1548
//  OFS_FILE_SYSTEM
 
1549
//
 
1550
 
 
1551
  OFS_FILE_SYSTEM = ULONG($00000083);
 
1552
  {$EXTERNALSYM OFS_FILE_SYSTEM}
 
1553
 
 
1554
//
 
1555
// MessageId: RECOM_DRIVER
 
1556
//
 
1557
// MessageText:
 
1558
//
 
1559
//  RECOM_DRIVER
 
1560
//
 
1561
 
 
1562
  RECOM_DRIVER = ULONG($00000084);
 
1563
  {$EXTERNALSYM RECOM_DRIVER}
 
1564
 
 
1565
//
 
1566
// MessageId: SETUP_FAILURE
 
1567
//
 
1568
// MessageText:
 
1569
//
 
1570
//  SETUP_FAILURE
 
1571
//
 
1572
 
 
1573
  SETUP_FAILURE = ULONG($00000085);
 
1574
  {$EXTERNALSYM SETUP_FAILURE}
 
1575
 
 
1576
//
 
1577
// MessageId: AUDIT_FAILURE
 
1578
//
 
1579
// MessageText:
 
1580
//
 
1581
//  Audit attempt has failed.
 
1582
//
 
1583
 
 
1584
  AUDIT_FAILURE = ULONG($00000086);
 
1585
  {$EXTERNALSYM AUDIT_FAILURE}
 
1586
 
 
1587
//
 
1588
// MessageId: WINDOWS_NT_CSD_STRING
 
1589
//
 
1590
// MessageText:
 
1591
//
 
1592
//  Service Pack
 
1593
//
 
1594
 
 
1595
  WINDOWS_NT_CSD_STRING = ULONG($40000087);
 
1596
  {$EXTERNALSYM WINDOWS_NT_CSD_STRING}
 
1597
 
 
1598
//
 
1599
// MessageId: WINDOWS_NT_INFO_STRING
 
1600
//
 
1601
// MessageText:
 
1602
//
 
1603
//  %u System Processor [%u MB Memory] %Z
 
1604
//
 
1605
 
 
1606
  WINDOWS_NT_INFO_STRING = ULONG($40000088);
 
1607
  {$EXTERNALSYM WINDOWS_NT_INFO_STRING}
 
1608
 
 
1609
//
 
1610
// MessageId: WINDOWS_NT_MP_STRING
 
1611
//
 
1612
// MessageText:
 
1613
//
 
1614
//  MultiProcessor Kernel
 
1615
//
 
1616
 
 
1617
  WINDOWS_NT_MP_STRING = ULONG($40000089);
 
1618
  {$EXTERNALSYM WINDOWS_NT_MP_STRING}
 
1619
 
 
1620
//
 
1621
// MessageId: THREAD_TERMINATE_HELD_MUTEX
 
1622
//
 
1623
// MessageText:
 
1624
//
 
1625
//  A kernel thread terminated while holding a mutex
 
1626
//
 
1627
 
 
1628
  THREAD_TERMINATE_HELD_MUTEX = ULONG($4000008A);
 
1629
  {$EXTERNALSYM THREAD_TERMINATE_HELD_MUTEX}
 
1630
 
 
1631
//
 
1632
// MessageId: MBR_CHECKSUM_MISMATCH
 
1633
//
 
1634
// MessageText:
 
1635
//
 
1636
//  This system may be infected with a virus.
 
1637
//
 
1638
 
 
1639
  MBR_CHECKSUM_MISMATCH = ULONG($0000008B);
 
1640
  {$EXTERNALSYM MBR_CHECKSUM_MISMATCH}
 
1641
 
 
1642
//
 
1643
// MessageId: BUGCODE_PSS_CRASH_INIT
 
1644
//
 
1645
// MessageText:
 
1646
//
 
1647
//  Beginning dump of physical memory
 
1648
//
 
1649
 
 
1650
  BUGCODE_PSS_CRASH_INIT = ULONG($0000008C);
 
1651
  {$EXTERNALSYM BUGCODE_PSS_CRASH_INIT}
 
1652
 
 
1653
//
 
1654
// MessageId: BUGCODE_PSS_CRASH_PROGRESS
 
1655
//
 
1656
// MessageText:
 
1657
//
 
1658
//  Dumping physical memory to disk
 
1659
//
 
1660
 
 
1661
  BUGCODE_PSS_CRASH_PROGRESS = ULONG($0000008D);
 
1662
  {$EXTERNALSYM BUGCODE_PSS_CRASH_PROGRESS}
 
1663
 
 
1664
//
 
1665
// MessageId: BUGCODE_PSS_CRASH_DONE
 
1666
//
 
1667
// MessageText:
 
1668
//
 
1669
//  Physical memory dump complete. Contact your system administrator or
 
1670
//  technical support group.
 
1671
//
 
1672
 
 
1673
  BUGCODE_PSS_CRASH_DONE = ULONG($0000008E);
 
1674
  {$EXTERNALSYM BUGCODE_PSS_CRASH_DONE}
 
1675
 
 
1676
//
 
1677
// MessageId: PP0_INITIALIZATION_FAILED
 
1678
//
 
1679
// MessageText:
 
1680
//
 
1681
//  PP0_INITIALIZATION_FAILED
 
1682
//
 
1683
 
 
1684
  PP0_INITIALIZATION_FAILED = ULONG($0000008F);
 
1685
  {$EXTERNALSYM PP0_INITIALIZATION_FAILED}
 
1686
 
 
1687
//
 
1688
// MessageId: PP1_INITIALIZATION_FAILED
 
1689
//
 
1690
// MessageText:
 
1691
//
 
1692
//  PP1_INITIALIZATION_FAILED
 
1693
//
 
1694
 
 
1695
  PP1_INITIALIZATION_FAILED = ULONG($00000090);
 
1696
  {$EXTERNALSYM PP1_INITIALIZATION_FAILED}
 
1697
 
 
1698
//
 
1699
// MessageId: WIN32K_INIT_OR_RIT_FAILURE
 
1700
//
 
1701
// MessageText:
 
1702
//
 
1703
//  WIN32K_INIT_OR_RIT_FAILURE
 
1704
//
 
1705
 
 
1706
  WIN32K_INIT_OR_RIT_FAILURE = ULONG($00000091);
 
1707
  {$EXTERNALSYM WIN32K_INIT_OR_RIT_FAILURE}
 
1708
 
 
1709
//
 
1710
// MessageId: UP_DRIVER_ON_MP_SYSTEM
 
1711
//
 
1712
// MessageText:
 
1713
//
 
1714
//  UP_DRIVER_ON_MP_SYSTEM
 
1715
//
 
1716
 
 
1717
  UP_DRIVER_ON_MP_SYSTEM = ULONG($00000092);
 
1718
  {$EXTERNALSYM UP_DRIVER_ON_MP_SYSTEM}
 
1719
 
 
1720
//
 
1721
// MessageId: INVALID_KERNEL_HANDLE
 
1722
//
 
1723
// MessageText:
 
1724
//
 
1725
//  INVALID_KERNEL_HANDLE
 
1726
//
 
1727
 
 
1728
  INVALID_KERNEL_HANDLE = ULONG($00000093);
 
1729
  {$EXTERNALSYM INVALID_KERNEL_HANDLE}
 
1730
 
 
1731
//
 
1732
// MessageId: KERNEL_STACK_LOCKED_AT_EXIT
 
1733
//
 
1734
// MessageText:
 
1735
//
 
1736
//  KERNEL_STACK_LOCKED_AT_EXIT
 
1737
//
 
1738
 
 
1739
  KERNEL_STACK_LOCKED_AT_EXIT = ULONG($00000094);
 
1740
  {$EXTERNALSYM KERNEL_STACK_LOCKED_AT_EXIT}
 
1741
 
 
1742
//
 
1743
// MessageId: PNP_INTERNAL_ERROR
 
1744
//
 
1745
// MessageText:
 
1746
//
 
1747
//  PNP_INTERNAL_ERROR
 
1748
//
 
1749
 
 
1750
  PNP_INTERNAL_ERROR = ULONG($00000095);
 
1751
  {$EXTERNALSYM PNP_INTERNAL_ERROR}
 
1752
 
 
1753
//
 
1754
// MessageId: INVALID_WORK_QUEUE_ITEM
 
1755
//
 
1756
// MessageText:
 
1757
//
 
1758
//  INVALID_WORK_QUEUE_ITEM
 
1759
//
 
1760
 
 
1761
  INVALID_WORK_QUEUE_ITEM = ULONG($00000096);
 
1762
  {$EXTERNALSYM INVALID_WORK_QUEUE_ITEM}
 
1763
 
 
1764
//
 
1765
// MessageId: BOUND_IMAGE_UNSUPPORTED
 
1766
//
 
1767
// MessageText:
 
1768
//
 
1769
//  BOUND_IMAGE_UNSUPPORTED
 
1770
//
 
1771
 
 
1772
  BOUND_IMAGE_UNSUPPORTED = ULONG($00000097);
 
1773
  {$EXTERNALSYM BOUND_IMAGE_UNSUPPORTED}
 
1774
 
 
1775
//
 
1776
// MessageId: END_OF_NT_EVALUATION_PERIOD
 
1777
//
 
1778
// MessageText:
 
1779
//
 
1780
//  END_OF_NT_EVALUATION_PERIOD
 
1781
//
 
1782
 
 
1783
  END_OF_NT_EVALUATION_PERIOD = ULONG($00000098);
 
1784
  {$EXTERNALSYM END_OF_NT_EVALUATION_PERIOD}
 
1785
 
 
1786
//
 
1787
// MessageId: INVALID_REGION_OR_SEGMENT
 
1788
//
 
1789
// MessageText:
 
1790
//
 
1791
//  INVALID_REGION_OR_SEGMENT
 
1792
//
 
1793
 
 
1794
  INVALID_REGION_OR_SEGMENT = ULONG($00000099);
 
1795
  {$EXTERNALSYM INVALID_REGION_OR_SEGMENT}
 
1796
 
 
1797
//
 
1798
// MessageId: SYSTEM_LICENSE_VIOLATION
 
1799
//
 
1800
// MessageText:
 
1801
//
 
1802
//  SYSTEM_LICENSE_VIOLATION
 
1803
//
 
1804
 
 
1805
  SYSTEM_LICENSE_VIOLATION = ULONG($0000009A);
 
1806
  {$EXTERNALSYM SYSTEM_LICENSE_VIOLATION}
 
1807
 
 
1808
//
 
1809
// MessageId: UDFS_FILE_SYSTEM
 
1810
//
 
1811
// MessageText:
 
1812
//
 
1813
//  UDFS_FILE_SYSTEM
 
1814
//
 
1815
 
 
1816
  UDFS_FILE_SYSTEM = ULONG($0000009B);
 
1817
  {$EXTERNALSYM UDFS_FILE_SYSTEM}
 
1818
 
 
1819
//
 
1820
// MessageId: MACHINE_CHECK_EXCEPTION
 
1821
//
 
1822
// MessageText:
 
1823
//
 
1824
//  MACHINE_CHECK_EXCEPTION
 
1825
//
 
1826
 
 
1827
  MACHINE_CHECK_EXCEPTION = ULONG($0000009C);
 
1828
  {$EXTERNALSYM MACHINE_CHECK_EXCEPTION}
 
1829
 
 
1830
//
 
1831
// MessageId: WINDOWS_NT_INFO_STRING_PLURAL
 
1832
//
 
1833
// MessageText:
 
1834
//
 
1835
//  %u System Processors [%u MB Memory] %Z
 
1836
//
 
1837
 
 
1838
  WINDOWS_NT_INFO_STRING_PLURAL = ULONG($4000009D);
 
1839
  {$EXTERNALSYM WINDOWS_NT_INFO_STRING_PLURAL}
 
1840
 
 
1841
//
 
1842
// MessageId: WINDOWS_NT_RC_STRING
 
1843
//
 
1844
// MessageText:
 
1845
//
 
1846
//  RC
 
1847
//
 
1848
 
 
1849
  WINDOWS_NT_RC_STRING = ULONG($4000009E);
 
1850
  {$EXTERNALSYM WINDOWS_NT_RC_STRING}
 
1851
 
 
1852
//
 
1853
// MessageId: DRIVER_POWER_STATE_FAILURE
 
1854
//
 
1855
// MessageText:
 
1856
//
 
1857
//  DRIVER_POWER_STATE_FAILURE
 
1858
//
 
1859
 
 
1860
  DRIVER_POWER_STATE_FAILURE = ULONG($0000009F);
 
1861
  {$EXTERNALSYM DRIVER_POWER_STATE_FAILURE}
 
1862
 
 
1863
//
 
1864
// MessageId: INTERNAL_POWER_ERROR
 
1865
//
 
1866
// MessageText:
 
1867
//
 
1868
//  INTERNAL_POWER_ERROR
 
1869
//
 
1870
 
 
1871
  INTERNAL_POWER_ERROR = ULONG($000000A0);
 
1872
  {$EXTERNALSYM INTERNAL_POWER_ERROR}
 
1873
 
 
1874
//
 
1875
// MessageId: PCI_BUS_DRIVER_INTERNAL
 
1876
//
 
1877
// MessageText:
 
1878
//
 
1879
//  Inconsistency detected in the PCI Bus driver's internal structures.
 
1880
//
 
1881
 
 
1882
  PCI_BUS_DRIVER_INTERNAL = ULONG($000000A1);
 
1883
  {$EXTERNALSYM PCI_BUS_DRIVER_INTERNAL}
 
1884
 
 
1885
//
 
1886
// MessageId: MEMORY_IMAGE_CORRUPT
 
1887
//
 
1888
// MessageText:
 
1889
//
 
1890
//  A CRC check on the memory range has failed
 
1891
//
 
1892
 
 
1893
  MEMORY_IMAGE_CORRUPT = ULONG($000000A2);
 
1894
  {$EXTERNALSYM MEMORY_IMAGE_CORRUPT}
 
1895
 
 
1896
//
 
1897
// MessageId: ACPI_DRIVER_INTERNAL
 
1898
//
 
1899
// MessageText:
 
1900
//
 
1901
//  ACPI_DRIVER_INTERNAL
 
1902
//
 
1903
 
 
1904
  ACPI_DRIVER_INTERNAL = ULONG($000000A3);
 
1905
  {$EXTERNALSYM ACPI_DRIVER_INTERNAL}
 
1906
 
 
1907
//
 
1908
// MessageId: CNSS_FILE_SYSTEM_FILTER
 
1909
//
 
1910
// MessageText:
 
1911
//
 
1912
//  Internal inconsistency while representing
 
1913
//  Ntfs Structured Storage as a DOCFILE.
 
1914
//
 
1915
 
 
1916
  CNSS_FILE_SYSTEM_FILTER = ULONG($000000A4);
 
1917
  {$EXTERNALSYM CNSS_FILE_SYSTEM_FILTER}
 
1918
 
 
1919
//
 
1920
// MessageId: ACPI_BIOS_ERROR
 
1921
//
 
1922
// MessageText:
 
1923
//
 
1924
//  The ACPI BIOS in this system is not fully compliant with the ACPI 
 
1925
//  specification. Please read the README.TXT for possible workarounds.  You
 
1926
//  can also contact your system's manufacturer for an updated BIOS, or visit
 
1927
//  http://www.hardware-update.com to see if a new BIOS is available.  
 
1928
//
 
1929
 
 
1930
  ACPI_BIOS_ERROR = ULONG($000000A5);
 
1931
  {$EXTERNALSYM ACPI_BIOS_ERROR}
 
1932
 
 
1933
//
 
1934
// MessageId: FP_EMULATION_ERROR
 
1935
//
 
1936
// MessageText:
 
1937
//
 
1938
//  FP_EMULATION_ERROR
 
1939
//
 
1940
 
 
1941
  FP_EMULATION_ERROR = ULONG($000000A6);
 
1942
  {$EXTERNALSYM FP_EMULATION_ERROR}
 
1943
 
 
1944
//
 
1945
// MessageId: BAD_EXHANDLE
 
1946
//
 
1947
// MessageText:
 
1948
//
 
1949
//  BAD_EXHANDLE
 
1950
//
 
1951
 
 
1952
  BAD_EXHANDLE = ULONG($000000A7);
 
1953
  {$EXTERNALSYM BAD_EXHANDLE}
 
1954
 
 
1955
//
 
1956
// MessageId: BOOTING_IN_SAFEMODE_MINIMAL
 
1957
//
 
1958
// MessageText:
 
1959
//
 
1960
//  The system is booting in safemode - Minimal Services
 
1961
//
 
1962
 
 
1963
  BOOTING_IN_SAFEMODE_MINIMAL = ULONG($000000A8);
 
1964
  {$EXTERNALSYM BOOTING_IN_SAFEMODE_MINIMAL}
 
1965
 
 
1966
//
 
1967
// MessageId: BOOTING_IN_SAFEMODE_NETWORK
 
1968
//
 
1969
// MessageText:
 
1970
//
 
1971
//  The system is booting in safemode - Minimal Services with Network
 
1972
//
 
1973
 
 
1974
  BOOTING_IN_SAFEMODE_NETWORK = ULONG($000000A9);
 
1975
  {$EXTERNALSYM BOOTING_IN_SAFEMODE_NETWORK}
 
1976
 
 
1977
//
 
1978
// MessageId: BOOTING_IN_SAFEMODE_DSREPAIR
 
1979
//
 
1980
// MessageText:
 
1981
//
 
1982
//  The system is booting in safemode - Directory Services Repair
 
1983
//
 
1984
 
 
1985
  BOOTING_IN_SAFEMODE_DSREPAIR = ULONG($000000AA);
 
1986
  {$EXTERNALSYM BOOTING_IN_SAFEMODE_DSREPAIR}
 
1987
 
 
1988
//
 
1989
// MessageId: SESSION_HAS_VALID_POOL_ON_EXIT
 
1990
//
 
1991
// MessageText:
 
1992
//
 
1993
//  SESSION_HAS_VALID_POOL_ON_EXIT
 
1994
//
 
1995
 
 
1996
  SESSION_HAS_VALID_POOL_ON_EXIT = ULONG($000000AB);
 
1997
  {$EXTERNALSYM SESSION_HAS_VALID_POOL_ON_EXIT}
 
1998
 
 
1999
//
 
2000
// MessageId: HAL_MEMORY_ALLOCATION
 
2001
//
 
2002
// MessageText:
 
2003
//
 
2004
//  Allocate from NonPaged Pool failed for a HAL critical allocation.
 
2005
//
 
2006
 
 
2007
  HAL_MEMORY_ALLOCATION = ULONG($000000AC);
 
2008
  {$EXTERNALSYM HAL_MEMORY_ALLOCATION}
 
2009
 
 
2010
//
 
2011
// MessageId: BUGCODE_PSS_MESSAGE_A
 
2012
//
 
2013
// MessageText:
 
2014
//
 
2015
//  If this is the first time you've seen this Stop error screen,
 
2016
//  restart your computer. If this screen appears again, follow
 
2017
//  these steps:
 
2018
//  
 
2019
//  Check to make sure any new hardware or software is properly installed.
 
2020
//  If this is a new installation, ask your hardware or software manufacturer
 
2021
//  for any Windows 2000 updates you might need.
 
2022
//  
 
2023
//  If problems continue, disable or remove any newly installed hardware
 
2024
//  or software. Disable BIOS memory options such as caching or shadowing.
 
2025
//  Check your hard drive to make sure it is properly configured and
 
2026
//  terminated. If you need to use Safe Mode to remove or disable components,
 
2027
//  restart your computer, press F8 to select Advanced Startup Options,
 
2028
//  and then select Safe Mode.
 
2029
//  
 
2030
//  Refer to your Getting Started manual for more information on
 
2031
//  troubleshooting Stop errors.
 
2032
//
 
2033
 
 
2034
  BUGCODE_PSS_MESSAGE_A = ULONG($000000AD);
 
2035
  {$EXTERNALSYM BUGCODE_PSS_MESSAGE_A}
 
2036
 
 
2037
//
 
2038
// MessageId: BUGCODE_PSS_MESSAGE_1E
 
2039
//
 
2040
// MessageText:
 
2041
//
 
2042
//  If this is the first time you've seen this Stop error screen,
 
2043
//  restart your computer. If this screen appears again, follow
 
2044
//  these steps:
 
2045
//  
 
2046
//  Check to be sure you have adequate disk space. If a driver is
 
2047
//  identified in the Stop message, disable the driver or check
 
2048
//  with the manufacturer for driver updates. Try changing video
 
2049
//  adapters.
 
2050
//  
 
2051
//  Check with your hardware vendor for any BIOS updates. Disable
 
2052
//  BIOS memory options such as caching or shadowing. If you need
 
2053
//  to use Safe Mode to remove or disable components, restart your
 
2054
//  computer, press F8 to select Advanced Startup Options, and then
 
2055
//  select Safe Mode.
 
2056
//  
 
2057
//  Refer to your Getting Started manual for more information on
 
2058
//  troubleshooting Stop errors.
 
2059
//
 
2060
 
 
2061
  BUGCODE_PSS_MESSAGE_1E = ULONG($000000AE);
 
2062
  {$EXTERNALSYM BUGCODE_PSS_MESSAGE_1E}
 
2063
 
 
2064
//
 
2065
// MessageId: BUGCODE_PSS_MESSAGE_23
 
2066
//
 
2067
// MessageText:
 
2068
//
 
2069
//  If this is the first time you've seen this Stop error screen,
 
2070
//  restart your computer. If this screen appears again, follow
 
2071
//  these steps:
 
2072
//  
 
2073
//  Disable or uninstall any anti-virus, disk defragmentation
 
2074
//  or backup utilities. Check your hard drive configuration,
 
2075
//  and check for any updated drivers. Run CHKDSK /F to check
 
2076
//  for hard drive corruption, and then restart your computer.
 
2077
//  
 
2078
//  Refer to your Getting Started manual for more information on
 
2079
//  troubleshooting Stop errors.
 
2080
//
 
2081
 
 
2082
  BUGCODE_PSS_MESSAGE_23 = ULONG($000000AF);
 
2083
  {$EXTERNALSYM BUGCODE_PSS_MESSAGE_23}
 
2084
 
 
2085
//
 
2086
// MessageId: BUGCODE_PSS_MESSAGE_2E
 
2087
//
 
2088
// MessageText:
 
2089
//
 
2090
//  If this is the first time you've seen this Stop error screen,
 
2091
//  restart your computer. If this screen appears again, follow
 
2092
//  these steps:
 
2093
//  
 
2094
//  Run system diagnostics supplied by your hardware manufacturer.
 
2095
//  In particular, run a memory check, and check for faulty or
 
2096
//  mismatched memory. Try changing video adapters.
 
2097
//  
 
2098
//  Check with your hardware vendor for any BIOS updates. Disable
 
2099
//  BIOS memory options such as caching or shadowing. If you need
 
2100
//  to use Safe Mode to remove or disable components, restart your
 
2101
//  computer, press F8 to select Advanced Startup Options, and then
 
2102
//  select Safe Mode.
 
2103
//  
 
2104
//  Refer to your Getting Started manual for more information on
 
2105
//  troubleshooting Stop errors.
 
2106
//
 
2107
 
 
2108
  BUGCODE_PSS_MESSAGE_2E = ULONG($000000B0);
 
2109
  {$EXTERNALSYM BUGCODE_PSS_MESSAGE_2E}
 
2110
 
 
2111
//
 
2112
// MessageId: BUGCODE_PSS_MESSAGE_3F
 
2113
//
 
2114
// MessageText:
 
2115
//
 
2116
//  If this is the first time you've seen this Stop error screen,
 
2117
//  restart your computer. If this screen appears again, follow
 
2118
//  these steps:
 
2119
//  
 
2120
//  Remove any recently installed software including backup
 
2121
//  utilities or disk-intensive applications.
 
2122
//  
 
2123
//  If you need to use Safe Mode to remove or disable components,
 
2124
//  restart your computer, press F8 to select Advanced Startup
 
2125
//  Options, and then select Safe Mode.
 
2126
//  
 
2127
//  Refer to your Getting Started manual for more information on
 
2128
//  troubleshooting Stop errors.
 
2129
//
 
2130
 
 
2131
  BUGCODE_PSS_MESSAGE_3F = ULONG($000000B1);
 
2132
  {$EXTERNALSYM BUGCODE_PSS_MESSAGE_3F}
 
2133
 
 
2134
//
 
2135
// MessageId: BUGCODE_PSS_MESSAGE_7B
 
2136
//
 
2137
// MessageText:
 
2138
//
 
2139
//  If this is the first time you've seen this Stop error screen,
 
2140
//  restart your computer. If this screen appears again, follow
 
2141
//  these steps:
 
2142
//  
 
2143
//  Check for viruses on your computer. Remove any newly installed
 
2144
//  hard drives or hard drive controllers. Check your hard drive
 
2145
//  to make sure it is properly configured and terminated.
 
2146
//  Run CHKDSK /F to check for hard drive corruption, and then
 
2147
//  restart your computer.
 
2148
//  
 
2149
//  Refer to your Getting Started manual for more information on
 
2150
//  troubleshooting Stop errors.
 
2151
//
 
2152
 
 
2153
  BUGCODE_PSS_MESSAGE_7B = ULONG($000000B2);
 
2154
  {$EXTERNALSYM BUGCODE_PSS_MESSAGE_7B}
 
2155
 
 
2156
//
 
2157
// MessageId: BUGCODE_PSS_MESSAGE_7F
 
2158
//
 
2159
// MessageText:
 
2160
//
 
2161
//  If this is the first time you've seen this Stop error screen,
 
2162
//  restart your computer. If this screen appears again, follow
 
2163
//  these steps:
 
2164
//  
 
2165
//  Run a system diagnostic utility supplied by your hardware manufacturer.
 
2166
//  In particular, run a memory check, and check for faulty or mismatched
 
2167
//  memory. Try changing video adapters.
 
2168
//  
 
2169
//  Disable or remove any newly installed hardware and drivers. Disable or
 
2170
//  remove any newly installed software. If you need to use Safe Mode to
 
2171
//  remove or disable components, restart your computer, press F8 to select
 
2172
//  Advanced Startup Options, and then select Safe Mode.
 
2173
//  
 
2174
//  Refer to your Getting Started manual for more information on
 
2175
//  troubleshooting Stop errors.
 
2176
//
 
2177
 
 
2178
  BUGCODE_PSS_MESSAGE_7F = ULONG($000000B3);
 
2179
  {$EXTERNALSYM BUGCODE_PSS_MESSAGE_7F}
 
2180
 
 
2181
//
 
2182
// MessageId: VIDEO_DRIVER_INIT_FAILURE
 
2183
//
 
2184
// MessageText:
 
2185
//
 
2186
//  The video driver failed to initialize
 
2187
//
 
2188
 
 
2189
  VIDEO_DRIVER_INIT_FAILURE = ULONG($000000B4);
 
2190
  {$EXTERNALSYM VIDEO_DRIVER_INIT_FAILURE}
 
2191
 
 
2192
//
 
2193
// MessageId: BOOTLOG_LOADED
 
2194
//
 
2195
// MessageText:
 
2196
//
 
2197
//  Loaded driver
 
2198
//
 
2199
 
 
2200
  BOOTLOG_LOADED = ULONG($000000B5);
 
2201
  {$EXTERNALSYM BOOTLOG_LOADED}
 
2202
 
 
2203
//
 
2204
// MessageId: BOOTLOG_NOT_LOADED
 
2205
//
 
2206
// MessageText:
 
2207
//
 
2208
//  Did not load driver
 
2209
//
 
2210
 
 
2211
  BOOTLOG_NOT_LOADED = ULONG($000000B6);
 
2212
  {$EXTERNALSYM BOOTLOG_NOT_LOADED}
 
2213
 
 
2214
//
 
2215
// MessageId: BOOTLOG_ENABLED
 
2216
//
 
2217
// MessageText:
 
2218
//
 
2219
//  Boot Logging Enabled
 
2220
//
 
2221
 
 
2222
  BOOTLOG_ENABLED = ULONG($000000B7);
 
2223
  {$EXTERNALSYM BOOTLOG_ENABLED}
 
2224
 
 
2225
//
 
2226
// MessageId: ATTEMPTED_SWITCH_FROM_DPC
 
2227
//
 
2228
// MessageText:
 
2229
//
 
2230
//  A wait operation, attach process, or yield was attempted from a DPC routine.
 
2231
//
 
2232
 
 
2233
  ATTEMPTED_SWITCH_FROM_DPC = ULONG($000000B8);
 
2234
  {$EXTERNALSYM ATTEMPTED_SWITCH_FROM_DPC}
 
2235
 
 
2236
//
 
2237
// MessageId: CHIPSET_DETECTED_ERROR
 
2238
//
 
2239
// MessageText:
 
2240
//
 
2241
//  A parity error in the system memory or I/O system was detected.
 
2242
//
 
2243
 
 
2244
  CHIPSET_DETECTED_ERROR = ULONG($000000B9);
 
2245
  {$EXTERNALSYM CHIPSET_DETECTED_ERROR}
 
2246
 
 
2247
//
 
2248
// MessageId: SESSION_HAS_VALID_VIEWS_ON_EXIT
 
2249
//
 
2250
// MessageText:
 
2251
//
 
2252
//  SESSION_HAS_VALID_VIEWS_ON_EXIT
 
2253
//
 
2254
 
 
2255
  SESSION_HAS_VALID_VIEWS_ON_EXIT = ULONG($000000BA);
 
2256
  {$EXTERNALSYM SESSION_HAS_VALID_VIEWS_ON_EXIT}
 
2257
 
 
2258
//
 
2259
// MessageId: NETWORK_BOOT_INITIALIZATION_FAILED
 
2260
//
 
2261
// MessageText:
 
2262
//
 
2263
//  An initialization failure occurred while attempting to boot from the network.
 
2264
//
 
2265
 
 
2266
  NETWORK_BOOT_INITIALIZATION_FAILED = ULONG($000000BB);
 
2267
  {$EXTERNALSYM NETWORK_BOOT_INITIALIZATION_FAILED}
 
2268
 
 
2269
//
 
2270
// MessageId: NETWORK_BOOT_DUPLICATE_ADDRESS
 
2271
//
 
2272
// MessageText:
 
2273
//
 
2274
//  A duplicate IP address was assigned to this machine while attempting to
 
2275
//  boot from the network.
 
2276
//
 
2277
 
 
2278
  NETWORK_BOOT_DUPLICATE_ADDRESS = ULONG($000000BC);
 
2279
  {$EXTERNALSYM NETWORK_BOOT_DUPLICATE_ADDRESS}
 
2280
 
 
2281
//
 
2282
// MessageId: INVALID_HIBERNATED_STATE
 
2283
//
 
2284
// MessageText:
 
2285
//
 
2286
//  The hibernated memory image does not match the current hardware configuration.
 
2287
//
 
2288
 
 
2289
  INVALID_HIBERNATED_STATE = ULONG($000000BD);
 
2290
  {$EXTERNALSYM INVALID_HIBERNATED_STATE}
 
2291
 
 
2292
//
 
2293
// MessageId: ATTEMPTED_WRITE_TO_READONLY_MEMORY
 
2294
//
 
2295
// MessageText:
 
2296
//
 
2297
//  An attempt was made to write to read-only memory.
 
2298
//
 
2299
 
 
2300
  ATTEMPTED_WRITE_TO_READONLY_MEMORY = ULONG($000000BE);
 
2301
  {$EXTERNALSYM ATTEMPTED_WRITE_TO_READONLY_MEMORY}
 
2302
 
 
2303
//
 
2304
// MessageId: MUTEX_ALREADY_OWNED
 
2305
//
 
2306
// MessageText:
 
2307
//
 
2308
//  MUTEX_ALREADY_OWNED
 
2309
//
 
2310
 
 
2311
  MUTEX_ALREADY_OWNED = ULONG($000000BF);
 
2312
  {$EXTERNALSYM MUTEX_ALREADY_OWNED}
 
2313
 
 
2314
//
 
2315
// MessageId: PCI_CONFIG_SPACE_ACCESS_FAILURE
 
2316
//
 
2317
// MessageText:
 
2318
//
 
2319
//  An attempt to access PCI configuration space failed.
 
2320
//
 
2321
 
 
2322
  PCI_CONFIG_SPACE_ACCESS_FAILURE = ULONG($000000C0);
 
2323
  {$EXTERNALSYM PCI_CONFIG_SPACE_ACCESS_FAILURE}
 
2324
 
 
2325
//
 
2326
// MessageId: SPECIAL_POOL_DETECTED_MEMORY_CORRUPTION
 
2327
//
 
2328
// MessageText:
 
2329
//
 
2330
//  SPECIAL_POOL_DETECTED_MEMORY_CORRUPTION
 
2331
//
 
2332
 
 
2333
  SPECIAL_POOL_DETECTED_MEMORY_CORRUPTION = ULONG($000000C1);
 
2334
  {$EXTERNALSYM SPECIAL_POOL_DETECTED_MEMORY_CORRUPTION}
 
2335
 
 
2336
//
 
2337
// MessageId: BAD_POOL_CALLER
 
2338
//
 
2339
// MessageText:
 
2340
//
 
2341
//  BAD_POOL_CALLER
 
2342
//
 
2343
 
 
2344
  BAD_POOL_CALLER = ULONG($000000C2);
 
2345
  {$EXTERNALSYM BAD_POOL_CALLER}
 
2346
 
 
2347
//
 
2348
// MessageId: BUGCODE_PSS_MESSAGE_SIGNATURE
 
2349
//
 
2350
// MessageText:
 
2351
//
 
2352
//  
 
2353
//  A system file that is owned by Windows 2000 was replaced by an application
 
2354
//  running on your system.  The operating system detected this and tried to
 
2355
//  verify the validity of the file's signature.  The operating system found that
 
2356
//  the file signature is not valid and put the original, correct file back
 
2357
//  so that your operating system will continue to function properly.
 
2358
//
 
2359
 
 
2360
  BUGCODE_PSS_MESSAGE_SIGNATURE = ULONG($000000C3);
 
2361
  {$EXTERNALSYM BUGCODE_PSS_MESSAGE_SIGNATURE}
 
2362
 
 
2363
//
 
2364
// MessageId: DRIVER_VERIFIER_DETECTED_VIOLATION
 
2365
//
 
2366
// MessageText:
 
2367
//
 
2368
//  
 
2369
//  A device driver attempting to corrupt the system has been caught.
 
2370
//  The faulty driver currently on the kernel stack must be replaced
 
2371
//  with a working version.
 
2372
//
 
2373
 
 
2374
  DRIVER_VERIFIER_DETECTED_VIOLATION = ULONG($000000C4);
 
2375
  {$EXTERNALSYM DRIVER_VERIFIER_DETECTED_VIOLATION}
 
2376
 
 
2377
//
 
2378
// MessageId: DRIVER_CORRUPTED_EXPOOL
 
2379
//
 
2380
// MessageText:
 
2381
//
 
2382
//  
 
2383
//  A device driver has corrupted the executive memory pool.
 
2384
//  
 
2385
//  If this is the first time you've seen this Stop error screen,
 
2386
//  restart your computer. If this screen appears again, follow
 
2387
//  these steps:
 
2388
//  
 
2389
//  Check to make sure any new hardware or software is properly installed.
 
2390
//  If this is a new installation, ask your hardware or software manufacturer
 
2391
//  for any Windows 2000 updates you might need.
 
2392
//  
 
2393
//  Run the driver verifier against any new (or suspect) drivers.
 
2394
//  If that doesn't reveal the corrupting driver, try enabling special pool.
 
2395
//  Both of these features are intended to catch the corruption at an earlier
 
2396
//  point where the offending driver can be identified.
 
2397
//  
 
2398
//  If you need to use Safe Mode to remove or disable components,
 
2399
//  restart your computer, press F8 to select Advanced Startup Options,
 
2400
//  and then select Safe Mode.
 
2401
//  
 
2402
//  Refer to your Getting Started manual for more information on
 
2403
//  troubleshooting Stop errors.
 
2404
//
 
2405
 
 
2406
  DRIVER_CORRUPTED_EXPOOL = ULONG($000000C5);
 
2407
  {$EXTERNALSYM DRIVER_CORRUPTED_EXPOOL}
 
2408
 
 
2409
//
 
2410
// MessageId: DRIVER_CAUGHT_MODIFYING_FREED_POOL
 
2411
//
 
2412
// MessageText:
 
2413
//
 
2414
//  
 
2415
//  A device driver attempting to corrupt the system has been caught.
 
2416
//  The faulty driver currently on the kernel stack must be replaced
 
2417
//  with a working version.
 
2418
//
 
2419
 
 
2420
  DRIVER_CAUGHT_MODIFYING_FREED_POOL = ULONG($000000C6);
 
2421
  {$EXTERNALSYM DRIVER_CAUGHT_MODIFYING_FREED_POOL}
 
2422
 
 
2423
//
 
2424
// MessageId: TIMER_OR_DPC_INVALID
 
2425
//
 
2426
// MessageText:
 
2427
//
 
2428
//  
 
2429
//  A kernel timer or DPC was found in memory which must not contain such
 
2430
//  items.  Usually this is memory being freed.  This is usually caused by
 
2431
//  a device driver that has not cleaned up properly before freeing memory.
 
2432
//
 
2433
 
 
2434
  TIMER_OR_DPC_INVALID = ULONG($000000C7);
 
2435
  {$EXTERNALSYM TIMER_OR_DPC_INVALID}
 
2436
 
 
2437
//
 
2438
// MessageId: IRQL_UNEXPECTED_VALUE
 
2439
//
 
2440
// MessageText:
 
2441
//
 
2442
//  
 
2443
//  The processor's IRQL is not valid for the currently executing context.
 
2444
//  This is a software error condition and is usually caused by a device
 
2445
//  driver changing IRQL and not restoring it to its previous value when
 
2446
//  it has finished its task.
 
2447
//
 
2448
 
 
2449
  IRQL_UNEXPECTED_VALUE = ULONG($000000C8);
 
2450
  {$EXTERNALSYM IRQL_UNEXPECTED_VALUE}
 
2451
 
 
2452
//
 
2453
// MessageId: DRIVER_VERIFIER_IOMANAGER_VIOLATION
 
2454
//
 
2455
// MessageText:
 
2456
//
 
2457
//  
 
2458
//  The IO manager has detected a violation by a driver that is being verified.
 
2459
//  The faulty driver that is being verified must be debugged and
 
2460
//  replaced with a working version.
 
2461
//
 
2462
 
 
2463
  DRIVER_VERIFIER_IOMANAGER_VIOLATION = ULONG($000000C9);
 
2464
  {$EXTERNALSYM DRIVER_VERIFIER_IOMANAGER_VIOLATION}
 
2465
 
 
2466
//
 
2467
// MessageId: PNP_DETECTED_FATAL_ERROR
 
2468
//
 
2469
// MessageText:
 
2470
//
 
2471
//  
 
2472
//  Plug and Play detected an error most likely caused by a faulty driver.
 
2473
//
 
2474
 
 
2475
  PNP_DETECTED_FATAL_ERROR = ULONG($000000CA);
 
2476
  {$EXTERNALSYM PNP_DETECTED_FATAL_ERROR}
 
2477
 
 
2478
//
 
2479
// MessageId: DRIVER_LEFT_LOCKED_PAGES_IN_PROCESS
 
2480
//
 
2481
// MessageText:
 
2482
//
 
2483
//  DRIVER_LEFT_LOCKED_PAGES_IN_PROCESS
 
2484
//
 
2485
 
 
2486
  DRIVER_LEFT_LOCKED_PAGES_IN_PROCESS = ULONG($000000CB);
 
2487
  {$EXTERNALSYM DRIVER_LEFT_LOCKED_PAGES_IN_PROCESS}
 
2488
 
 
2489
//
 
2490
// MessageId: PAGE_FAULT_IN_FREED_SPECIAL_POOL
 
2491
//
 
2492
// MessageText:
 
2493
//
 
2494
//  
 
2495
//  The system is attempting to access memory after it has been freed.
 
2496
//  This usually indicates a system-driver synchronization issue.
 
2497
//
 
2498
 
 
2499
  PAGE_FAULT_IN_FREED_SPECIAL_POOL = ULONG($000000CC);
 
2500
  {$EXTERNALSYM PAGE_FAULT_IN_FREED_SPECIAL_POOL}
 
2501
 
 
2502
//
 
2503
// MessageId: PAGE_FAULT_BEYOND_END_OF_ALLOCATION
 
2504
//
 
2505
// MessageText:
 
2506
//
 
2507
//  
 
2508
//  The system is attempting to access memory beyond the end of the allocation.
 
2509
//  This usually indicates a system-driver synchronization issue.
 
2510
//
 
2511
 
 
2512
  PAGE_FAULT_BEYOND_END_OF_ALLOCATION = ULONG($000000CD);
 
2513
  {$EXTERNALSYM PAGE_FAULT_BEYOND_END_OF_ALLOCATION}
 
2514
 
 
2515
//
 
2516
// MessageId: DRIVER_UNLOADED_WITHOUT_CANCELLING_PENDING_OPERATIONS
 
2517
//
 
2518
// MessageText:
 
2519
//
 
2520
//  DRIVER_UNLOADED_WITHOUT_CANCELLING_PENDING_OPERATIONS
 
2521
//
 
2522
 
 
2523
  DRIVER_UNLOADED_WITHOUT_CANCELLING_PENDING_OPERATIONS = ULONG($000000CE);
 
2524
  {$EXTERNALSYM DRIVER_UNLOADED_WITHOUT_CANCELLING_PENDING_OPERATIONS}
 
2525
 
 
2526
//
 
2527
// MessageId: TERMINAL_SERVER_DRIVER_MADE_INCORRECT_MEMORY_REFERENCE
 
2528
//
 
2529
// MessageText:
 
2530
//
 
2531
//  TERMINAL_SERVER_DRIVER_MADE_INCORRECT_MEMORY_REFERENCE
 
2532
//
 
2533
 
 
2534
  TERMINAL_SERVER_DRIVER_MADE_INCORRECT_MEMORY_REFERENCE = ULONG($000000CF);
 
2535
  {$EXTERNALSYM TERMINAL_SERVER_DRIVER_MADE_INCORRECT_MEMORY_REFERENCE}
 
2536
 
 
2537
//
 
2538
// MessageId: DRIVER_CORRUPTED_MMPOOL
 
2539
//
 
2540
// MessageText:
 
2541
//
 
2542
//  
 
2543
//  A device driver has corrupted the system memory management pool.
 
2544
//  
 
2545
//  If this is the first time you've seen this Stop error screen,
 
2546
//  restart your computer. If this screen appears again, follow
 
2547
//  these steps:
 
2548
//  
 
2549
//  Check to make sure any new hardware or software is properly installed.
 
2550
//  If this is a new installation, ask your hardware or software manufacturer
 
2551
//  for any Windows 2000 updates you might need.
 
2552
//  
 
2553
//  Run the driver verifier against any new (or suspect) drivers.
 
2554
//  If that doesn't reveal the corrupting driver, try enabling special pool.
 
2555
//  Both of these features are intended to catch the corruption at an earlier
 
2556
//  point where the offending driver can be identified.
 
2557
//  
 
2558
//  If you need to use Safe Mode to remove or disable components,
 
2559
//  restart your computer, press F8 to select Advanced Startup Options,
 
2560
//  and then select Safe Mode.
 
2561
//  
 
2562
//  Refer to your Getting Started manual for more information on
 
2563
//  troubleshooting Stop errors.
 
2564
//
 
2565
 
 
2566
  DRIVER_CORRUPTED_MMPOOL = ULONG($000000D0);
 
2567
  {$EXTERNALSYM DRIVER_CORRUPTED_MMPOOL}
 
2568
 
 
2569
//
 
2570
// MessageId: DRIVER_IRQL_NOT_LESS_OR_EQUAL
 
2571
//
 
2572
// MessageText:
 
2573
//
 
2574
//  DRIVER_IRQL_NOT_LESS_OR_EQUAL
 
2575
//
 
2576
 
 
2577
  DRIVER_IRQL_NOT_LESS_OR_EQUAL = ULONG($000000D1);
 
2578
  {$EXTERNALSYM DRIVER_IRQL_NOT_LESS_OR_EQUAL}
 
2579
 
 
2580
//
 
2581
// MessageId: BUGCODE_ID_DRIVER
 
2582
//
 
2583
// MessageText:
 
2584
//
 
2585
//  This driver may be at fault :
 
2586
//
 
2587
 
 
2588
  BUGCODE_ID_DRIVER = ULONG($000000D2);
 
2589
  {$EXTERNALSYM BUGCODE_ID_DRIVER}
 
2590
 
 
2591
//
 
2592
// MessageId: DRIVER_PORTION_MUST_BE_NONPAGED
 
2593
//
 
2594
// MessageText:
 
2595
//
 
2596
//  The driver mistakenly marked a part of it's image pagable instead of nonpagable.
 
2597
//
 
2598
 
 
2599
  DRIVER_PORTION_MUST_BE_NONPAGED = ULONG($000000D3);
 
2600
  {$EXTERNALSYM DRIVER_PORTION_MUST_BE_NONPAGED}
 
2601
 
 
2602
//
 
2603
// MessageId: SYSTEM_SCAN_AT_RAISED_IRQL_CAUGHT_IMPROPER_DRIVER_UNLOAD
 
2604
//
 
2605
// MessageText:
 
2606
//
 
2607
//  The driver unloaded without cancelling pending operations.
 
2608
//
 
2609
 
 
2610
  SYSTEM_SCAN_AT_RAISED_IRQL_CAUGHT_IMPROPER_DRIVER_UNLOAD = ULONG($000000D4);
 
2611
  {$EXTERNALSYM SYSTEM_SCAN_AT_RAISED_IRQL_CAUGHT_IMPROPER_DRIVER_UNLOAD}
 
2612
 
 
2613
//
 
2614
// MessageId: DRIVER_PAGE_FAULT_IN_FREED_SPECIAL_POOL
 
2615
//
 
2616
// MessageText:
 
2617
//
 
2618
//  
 
2619
//  The driver is attempting to access memory after it has been freed.
 
2620
//
 
2621
 
 
2622
  DRIVER_PAGE_FAULT_IN_FREED_SPECIAL_POOL = ULONG($000000D5);
 
2623
  {$EXTERNALSYM DRIVER_PAGE_FAULT_IN_FREED_SPECIAL_POOL}
 
2624
 
 
2625
//
 
2626
// MessageId: DRIVER_PAGE_FAULT_BEYOND_END_OF_ALLOCATION
 
2627
//
 
2628
// MessageText:
 
2629
//
 
2630
//  
 
2631
//  The driver is attempting to access memory beyond the end of the allocation.
 
2632
//
 
2633
 
 
2634
  DRIVER_PAGE_FAULT_BEYOND_END_OF_ALLOCATION = ULONG($000000D6);
 
2635
  {$EXTERNALSYM DRIVER_PAGE_FAULT_BEYOND_END_OF_ALLOCATION}
 
2636
 
 
2637
//
 
2638
// MessageId: DRIVER_UNMAPPING_INVALID_VIEW
 
2639
//
 
2640
// MessageText:
 
2641
//
 
2642
//  
 
2643
//  The driver is attempting to unmap an invalid memory address.
 
2644
//
 
2645
 
 
2646
  DRIVER_UNMAPPING_INVALID_VIEW = ULONG($000000D7);
 
2647
  {$EXTERNALSYM DRIVER_UNMAPPING_INVALID_VIEW}
 
2648
 
 
2649
//
 
2650
// MessageId: DRIVER_USED_EXCESSIVE_PTES
 
2651
//
 
2652
// MessageText:
 
2653
//
 
2654
//  
 
2655
//  The driver has used an excessive number of system PTEs.
 
2656
//
 
2657
 
 
2658
  DRIVER_USED_EXCESSIVE_PTES = ULONG($000000D8);
 
2659
  {$EXTERNALSYM DRIVER_USED_EXCESSIVE_PTES}
 
2660
 
 
2661
//
 
2662
// MessageId: LOCKED_PAGES_TRACKER_CORRUPTION
 
2663
//
 
2664
// MessageText:
 
2665
//
 
2666
//  
 
2667
//  The driver is corrupting the locked pages tracking structures.
 
2668
//
 
2669
 
 
2670
  LOCKED_PAGES_TRACKER_CORRUPTION = ULONG($000000D9);
 
2671
  {$EXTERNALSYM LOCKED_PAGES_TRACKER_CORRUPTION}
 
2672
 
 
2673
//
 
2674
// MessageId: SYSTEM_PTE_MISUSE
 
2675
//
 
2676
// MessageText:
 
2677
//
 
2678
//  
 
2679
//  The driver is mismanaging system PTEs.
 
2680
//
 
2681
 
 
2682
  SYSTEM_PTE_MISUSE = ULONG($000000DA);
 
2683
  {$EXTERNALSYM SYSTEM_PTE_MISUSE}
 
2684
 
 
2685
//
 
2686
// MessageId: DRIVER_CORRUPTED_SYSPTES
 
2687
//
 
2688
// MessageText:
 
2689
//
 
2690
//  
 
2691
//  A driver has corrupted the memory management system PTEs.
 
2692
//
 
2693
 
 
2694
  DRIVER_CORRUPTED_SYSPTES = ULONG($000000DB);
 
2695
  {$EXTERNALSYM DRIVER_CORRUPTED_SYSPTES}
 
2696
 
 
2697
//
 
2698
// MessageId: DRIVER_INVALID_STACK_ACCESS
 
2699
//
 
2700
// MessageText:
 
2701
//
 
2702
//  
 
2703
//  A driver accessed a stack address that lies below the current stack pointer
 
2704
//  of the stack's thread.
 
2705
//
 
2706
 
 
2707
  DRIVER_INVALID_STACK_ACCESS = ULONG($000000DC);
 
2708
  {$EXTERNALSYM DRIVER_INVALID_STACK_ACCESS}
 
2709
 
 
2710
//
 
2711
// MessageId: BUGCODE_PSS_MESSAGE_A5
 
2712
//
 
2713
// MessageText:
 
2714
//
 
2715
//  
 
2716
//  The BIOS in this system is not fully ACPI compliant.  Please contact your
 
2717
//  system vendor or visit http://www.hardware-update.com for an updated BIOS.  
 
2718
//  If you are unable to obtain an updated BIOS or the latest BIOS supplied by 
 
2719
//  your vendor is not ACPI compliant, you can turn off ACPI mode during text 
 
2720
//  mode setup.  To do this, simply press the F7 key when you are prompted to 
 
2721
//  install storage drivers.  The system will not notify you that the F7 key 
 
2722
//  was pressed - it will silently disable ACPI and allow you to continue 
 
2723
//  your installation.
 
2724
//
 
2725
 
 
2726
  BUGCODE_PSS_MESSAGE_A5 = ULONG($000000DD);
 
2727
  {$EXTERNALSYM BUGCODE_PSS_MESSAGE_A5}
 
2728
 
 
2729
//
 
2730
// MessageId: POOL_CORRUPTION_IN_FILE_AREA
 
2731
//
 
2732
// MessageText:
 
2733
//
 
2734
//  
 
2735
//  A driver corrupted pool memory used for holding pages destined for disk.
 
2736
//
 
2737
 
 
2738
  POOL_CORRUPTION_IN_FILE_AREA = ULONG($000000DE);
 
2739
  {$EXTERNALSYM POOL_CORRUPTION_IN_FILE_AREA}
 
2740
 
 
2741
//
 
2742
// MessageId: HARDWARE_PROFILE_UNDOCKED_STRING
 
2743
//
 
2744
// MessageText:
 
2745
//
 
2746
//  Undocked Profile
 
2747
//
 
2748
 
 
2749
  HARDWARE_PROFILE_UNDOCKED_STRING = ULONG($40010001);
 
2750
  {$EXTERNALSYM HARDWARE_PROFILE_UNDOCKED_STRING}
 
2751
 
 
2752
//
 
2753
// MessageId: HARDWARE_PROFILE_DOCKED_STRING
 
2754
//
 
2755
// MessageText:
 
2756
//
 
2757
//  Docked Profile
 
2758
//
 
2759
 
 
2760
  HARDWARE_PROFILE_DOCKED_STRING = ULONG($40010002);
 
2761
  {$EXTERNALSYM HARDWARE_PROFILE_DOCKED_STRING}
 
2762
 
 
2763
//
 
2764
// MessageId: HARDWARE_PROFILE_UNKNOWN_STRING
 
2765
//
 
2766
// MessageText:
 
2767
//
 
2768
//  Profile
 
2769
//
 
2770
 
 
2771
  HARDWARE_PROFILE_UNKNOWN_STRING = ULONG($40010003);
 
2772
  {$EXTERNALSYM HARDWARE_PROFILE_UNKNOWN_STRING}
 
2773
 
 
2774
//
 
2775
// MessageId: IMPERSONATING_WORKER_THREAD
 
2776
//
 
2777
// MessageText:
 
2778
//
 
2779
//  
 
2780
//  A worker thread is impersonating another process. The work item forgot to
 
2781
//  disable impersonation before it returned.
 
2782
//
 
2783
 
 
2784
  IMPERSONATING_WORKER_THREAD = ULONG($000000DF);
 
2785
  {$EXTERNALSYM IMPERSONATING_WORKER_THREAD}
 
2786
 
 
2787
//
 
2788
// MessageId: ACPI_BIOS_FATAL_ERROR
 
2789
//
 
2790
// MessageText:
 
2791
//
 
2792
//  
 
2793
//  Your computer (BIOS) has reported that a component in your system is faulty and
 
2794
//  has prevented Windows from operating.  You can determine which component is
 
2795
//  faulty by running the diagnostic disk or tool that came with your computer.
 
2796
//  
 
2797
//  If you do not have this tool, you must contact your system vendor and report
 
2798
//  this error message to them.  They will be able to assist you in correcting this
 
2799
//  hardware problem thereby allowing Windows to operate.
 
2800
//
 
2801
 
 
2802
  ACPI_BIOS_FATAL_ERROR = ULONG($000000E0);
 
2803
  {$EXTERNALSYM ACPI_BIOS_FATAL_ERROR}
 
2804
 
 
2805
//
 
2806
// MessageId: WORKER_THREAD_RETURNED_AT_BAD_IRQL
 
2807
//
 
2808
// MessageText:
 
2809
//
 
2810
//  WORKER_THREAD_RETURNED_AT_BAD_IRQL
 
2811
//
 
2812
 
 
2813
  WORKER_THREAD_RETURNED_AT_BAD_IRQL = ULONG($000000E1);
 
2814
  {$EXTERNALSYM WORKER_THREAD_RETURNED_AT_BAD_IRQL}
 
2815
 
 
2816
//
 
2817
// MessageId: MANUALLY_INITIATED_CRASH
 
2818
//
 
2819
// MessageText:
 
2820
//
 
2821
//  
 
2822
//  The end-user manually generated the crashdump.
 
2823
//
 
2824
 
 
2825
  MANUALLY_INITIATED_CRASH = ULONG($000000E2);
 
2826
  {$EXTERNALSYM MANUALLY_INITIATED_CRASH}
 
2827
 
 
2828
//
 
2829
// MessageId: RESOURCE_NOT_OWNED
 
2830
//
 
2831
// MessageText:
 
2832
//
 
2833
//  
 
2834
//  A thread tried to release a resource it did not own.
 
2835
//
 
2836
 
 
2837
  RESOURCE_NOT_OWNED = ULONG($000000E3);
 
2838
  {$EXTERNALSYM RESOURCE_NOT_OWNED}
 
2839
 
 
2840
//
 
2841
// MessageId: WORKER_INVALID
 
2842
//
 
2843
// MessageText:
 
2844
//
 
2845
//  
 
2846
//  A executive worker item was found in memory which must not contain such
 
2847
//  items.  Usually this is memory being freed.  This is usually caused by
 
2848
//  a device driver that has not cleaned up properly before freeing memory.
 
2849
//
 
2850
 
 
2851
  WORKER_INVALID = ULONG($000000E4);
 
2852
  {$EXTERNALSYM WORKER_INVALID}
 
2853
 
 
2854
implementation
 
2855
 
 
2856
end.