Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.1 KiB

  1. ;/*++ BUILD Version: 0001 // Increment this if a change has global effects
  2. ;
  3. ;Copyright (C) Microsoft Corporation, 2001
  4. ;
  5. ;Module Name:
  6. ;
  7. ; pnpmem.mc
  8. ;
  9. ;Abstract:
  10. ;
  11. ; Constant definitions for the I/O error code log values.
  12. ;
  13. ;--*/
  14. ;
  15. ;#ifndef _PNPMEMLOG_
  16. ;#define _PNPMEMLOG_
  17. ;
  18. MessageIdTypedef=NTSTATUS
  19. SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS
  20. Informational=0x1:STATUS_SEVERITY_INFORMATIONAL
  21. Warning=0x2:STATUS_SEVERITY_WARNING
  22. Error=0x3:STATUS_SEVERITY_ERROR
  23. )
  24. FacilityNames=(System=0x0
  25. RpcRuntime=0x2:FACILITY_RPC_RUNTIME
  26. RpcStubs=0x3:FACILITY_RPC_STUBS
  27. Io=0x4:FACILITY_IO_ERROR_CODE
  28. Pnpmem=0xf:FACILITY_PNPMEM_ERROR_CODE
  29. )
  30. ;
  31. ;//
  32. ;// Warning Error Messages
  33. ;//
  34. MessageId=0x0000 Facility=Pnpmem Severity=Warning
  35. SymbolicName=PNPMEM_ERR_FAILED_TO_ADD_MEMORY
  36. Language=English
  37. Failed to add memory range starting at 0x%2 for 0x%3 bytes. This
  38. operation exceeded the maximum memory capacity of the operating system
  39. or the server is not configured to support dynamic memory operations.
  40. .
  41. ;#endif /* _PNPMEMLOG_ */