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.

48 lines
1.8 KiB

  1. #include <windows.h>
  2. #include <ntverp.h>
  3. #define VER_FILETYPE VFT_APP
  4. #define VER_FILESUBTYPE VFT2_UNKNOWN
  5. #define VER_FILEDESCRIPTION_STR "Microsoft\256 Mean Time To Failure Setup"
  6. #define VER_INTERNALNAME_STR "GETMTTF.EXE"
  7. #define VER_ORIGINALFILENAME_STR "GETMTTF.EXE"
  8. #include <common.ver>
  9. #include "setupdef.h"
  10. setup ICON "setup.ico"
  11. IDD_SIGNON DIALOG 6, 18, 170, 80
  12. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  13. CAPTION "Mttf Setup -- Enter Path"
  14. FONT 8, "MS Shell Dlg"
  15. BEGIN
  16. LTEXT "Please enter path to Mttf files:", -1, 38, 12, 99, 8
  17. EDITTEXT IDS_PATH, 38, 30, 94, 12, ES_AUTOHSCROLL
  18. DEFPUSHBUTTON "&OK", IDOK, 10, 55, 40, 14
  19. PUSHBUTTON "&Cancel", IDCANCEL, 65, 55, 40, 14
  20. PUSHBUTTON "&Help", IDB_HELP, 120, 55, 40, 14
  21. END
  22. IDD_VALUES DIALOG 6, 18, 239, 142
  23. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  24. CAPTION "Mttf Setup -- Enter Values"
  25. FONT 8, "MS Shell Dlg"
  26. BEGIN
  27. LTEXT "Please enter the server file for &mttf results: (\\\\srv\\share\\file)",
  28. IDV_LABEL_MTTF, 17, 9, 200, 8
  29. EDITTEXT IDV_MTTF, 65, 25, 104, 12, ES_AUTOHSCROLL
  30. LTEXT "Please enter the server file for &name list: (\\\\srv\\share\\file)",
  31. IDV_LABEL_NAMES, 20, 47, 194, 8
  32. EDITTEXT IDV_NAMES, 65, 62, 104, 12, ES_AUTOHSCROLL
  33. LTEXT "Please enter the &polling period (in minutes) for collecting data:",
  34. IDV_LABEL_PERIOD, 16, 84, 202, 8
  35. EDITTEXT IDV_PERIOD, 65, 98, 104, 12, ES_AUTOHSCROLL
  36. PUSHBUTTON "&OK", IDOK, 42, 121, 40, 14
  37. PUSHBUTTON "&Cancel", IDCANCEL, 98, 121, 40, 14
  38. PUSHBUTTON "&Help", IDB_HELP, 154, 121, 40, 14
  39. END