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.

28 lines
1.1 KiB

  1. #include "windows.h"
  2. #include "debug.h"
  3. DEBUG DIALOG 17, 26, 241, 117
  4. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  5. CAPTION "Debug User Environments"
  6. FONT 8, "MS Shell Dlg"
  7. BEGIN
  8. GROUPBOX "Userenv Debug Output", -1, 10, 10, 160, 65
  9. AUTORADIOBUTTON "None", IDD_NONE, 25, 25, 68, 10, WS_TABSTOP | WS_GROUP
  10. AUTORADIOBUTTON "Normal", IDD_NORMAL, 25, 40, 68, 10
  11. AUTORADIOBUTTON "Verbose", IDD_VERBOSE, 25, 55, 68, 10
  12. AUTOCHECKBOX "Create Log File (C:\USERENV.LOG)", IDD_LOGFILE, 10, 87, 161, 10, WS_TABSTOP | WS_GROUP
  13. AUTOCHECKBOX "Debug Winlogon", IDD_WINLOGON, 10, 99, 161, 10, WS_TABSTOP | WS_GROUP
  14. DEFPUSHBUTTON "OK", IDOK, 182, 10, 52, 17, WS_TABSTOP | WS_GROUP
  15. PUSHBUTTON "Cancel", IDCANCEL, 182, 34, 52, 17, WS_TABSTOP | WS_GROUP
  16. END
  17. #include <ntverp.h>
  18. #define VER_FILETYPE VFT_APP
  19. #define VER_FILESUBTYPE VFT2_UNKNOWN
  20. #define VER_FILEDESCRIPTION_STR "Debug"
  21. #define VER_INTERNALNAME_STR "debug\0"
  22. #define VER_ORIGINALFILENAME_STR "debug.exe"
  23. #include "common.ver"