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.

27 lines
772 B

  1. //
  2. // Debug levels
  3. //
  4. #define DL_NONE 0x00000000
  5. #define DL_NORMAL 0x00000001
  6. #define DL_VERBOSE 0x00000002
  7. #define DL_LOGFILE 0x00010000
  8. #define DL_DEBUGGER 0x00020000
  9. //
  10. // Winlogon location
  11. //
  12. #define WINLOGON_KEY TEXT("Software\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon")
  13. #define EXEC_OPTIONS_KEY TEXT("Software\\Microsoft\\Windows NT\\CurrentVersion\\Image File Execution Options\\Winlogon.exe")
  14. #define USERENV_DEBUG_LEVEL TEXT("UserEnvDebugLevel")
  15. #define GLOBAL_FLAG TEXT("GlobalFlag")
  16. #define IDD_NONE 401
  17. #define IDD_NORMAL 402
  18. #define IDD_VERBOSE 403
  19. #define IDD_LOGFILE 404
  20. #define IDD_WINLOGON 405
  21. BOOL CALLBACK DebugDlgProc (HWND, UINT, WPARAM, LPARAM);