Leaked source code of windows server 2003
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.

44 lines
1.6 KiB

  1. /******************************************************************************
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. ercommon.h
  5. Revision History:
  6. created derekm 03/16/01
  7. ******************************************************************************/
  8. #ifndef ERCOMMON_H
  9. #define ERCOMMON_H
  10. /////////////////////////////////////////////////////////////////////////////
  11. // reg keys
  12. const WCHAR c_wszRKRun[] = L"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run";
  13. const WCHAR c_wszTmpRKRun[] = L"Microsoft\\Windows\\CurrentVersion\\Run";
  14. const WCHAR c_wszRKKrnl[] = L"SOFTWARE\\Microsoft\\PCHealth\\ErrorReporting\\KernelFaults";
  15. const WCHAR c_wszTmpRKKrnl[] = L"Microsoft\\PCHealth\\ErrorReporting\\KernelFaults";
  16. const WCHAR c_wszRVKFC[] = L"KernelFaultCheck";
  17. const WCHAR c_wszMutKrnlName[] = L"Global\\0CADFD67AF62496dB34264F000F5624A";
  18. const WCHAR c_wszRKShut[] = L"SOFTWARE\\Microsoft\\PCHealth\\ErrorReporting\\ShutdownEvents";
  19. const WCHAR c_wszTmpRKShut[] = L"Microsoft\\PCHealth\\ErrorReporting\\ShutdownEvents";
  20. const WCHAR c_wszRVSEC[] = L"ShutdownEventCheck";
  21. const WCHAR c_wszMutShutName[] = L"Global\\238FAD3109D3473aB4764B20B3731840";
  22. const WCHAR c_wszRKUser[] = L"SOFTWARE\\Microsoft\\PCHealth\\ErrorReporting\\UserFaults";
  23. const WCHAR c_wszTmpRKUser[] = L"Microsoft\\PCHealth\\ErrorReporting\\UserFaults";
  24. const WCHAR c_wszRVUFC[] = L"UserFaultCheck";
  25. const WCHAR c_wszMutUserName[] = L"Global\\4FCC0DEFE22C4f138FB9D5AF25FD9398";
  26. const WCHAR c_wszDumpSuffix[] = L".mdmp";
  27. const WCHAR c_wszHeapDumpSuffix[] = L".hdmp";
  28. #endif