mirror of https://github.com/lianthony/NT4.0
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.
26 lines
674 B
26 lines
674 B
//
|
|
// Debug levels
|
|
//
|
|
|
|
#define DL_NONE 0x00000000
|
|
#define DL_NORMAL 0x00000001
|
|
#define DL_VERBOSE 0x00000002
|
|
#define DL_LOGFILE 0x00010000
|
|
|
|
//
|
|
// Winlogon location
|
|
//
|
|
|
|
#define WINLOGON_KEY TEXT("Software\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon")
|
|
#define GLOBALFLAG_KEY TEXT("System\\CurrentControlSet\\Control\\Session Manager")
|
|
|
|
#define USERENV_DEBUG_LEVEL TEXT("UserEnvDebugLevel")
|
|
#define GLOBAL_FLAG TEXT("GlobalFlag")
|
|
|
|
#define IDD_NONE 401
|
|
#define IDD_NORMAL 402
|
|
#define IDD_VERBOSE 403
|
|
#define IDD_LOGFILE 404
|
|
#define IDD_WINLOGON 405
|
|
|
|
BOOL CALLBACK DebugDlgProc (HWND, UINT, WPARAM, LPARAM);
|