Source code of Windows XP (NT5)
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.

67 lines
2.2 KiB

  1. #include <windows.h>
  2. #include <ntverp.h>
  3. #include "main.h"
  4. #define VER_FILETYPE VFT_APP
  5. #define VER_FILESUBTYPE VFT2_UNKNOWN
  6. #define VER_FILEDESCRIPTION_STR "GPTDemo"
  7. #define VER_INTERNALNAME_STR "gptdemo\0"
  8. #define VER_ORIGINALFILENAME_STR "gptdemo.dll"
  9. #include "common.ver"
  10. IDI_POLICY ICON policy.ico
  11. IDI_README ICON txtfile.ico
  12. IDI_APPEAR ICON desk.ico
  13. IDB_16x16 BITMAP "icons16.bmp"
  14. IDB_32x32 BITMAP "icons32.bmp"
  15. STRINGTABLE
  16. BEGIN
  17. IDS_SNAPIN_NAME "Samples"
  18. IDS_NAME "Name"
  19. IDS_POLICY "Policy"
  20. IDS_DISPLAY "Display"
  21. IDS_SAMPLES "Samples"
  22. IDS_README "Read Me"
  23. IDS_APPEAR "Appearance"
  24. END
  25. IDD_README DIALOG 6, 18, 252, 218
  26. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  27. CAPTION "Notes"
  28. FONT 8, "MS Shell Dlg"
  29. BEGIN
  30. ICON IDI_README, -1, 8, 11, 18, 20
  31. LTEXT "Samples Overview", -1, 45, 18, 153, 8
  32. LTEXT "This folder contains sample policies which can be used to demonstrate how Group Policy Objects work with the Active Directory.",
  33. -1, 8, 49, 237, 16
  34. LTEXT "If you have questions about this snapin, contact [email protected]",
  35. -1, 8, 70, 237, 40
  36. END
  37. IDD_APPEAR DIALOG 6, 18, 252, 218
  38. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  39. CAPTION "Appearance"
  40. FONT 8, "MS Shell Dlg"
  41. BEGIN
  42. ICON IDI_APPEAR, -1, 8, 11, 18, 20
  43. LTEXT "Desktop Settings", -1, 45, 18, 153, 8
  44. GROUPBOX "&Desktop Color", -1, 8, 43, 233, 39
  45. AUTORADIOBUTTON "Red", IDC_RED, 15, 55, 39, 10
  46. AUTORADIOBUTTON "Green", IDC_GREEN, 104, 55, 39, 10
  47. AUTORADIOBUTTON "Blue", IDC_BLUE, 193, 55, 39, 10
  48. AUTORADIOBUTTON "Black", IDC_BLACK, 15, 68, 39, 10
  49. AUTORADIOBUTTON "Gray", IDC_GRAY, 104, 68, 39, 10
  50. AUTORADIOBUTTON "Default", IDC_DEFAULT, 193, 68, 39, 10
  51. GROUPBOX "&Wallpaper", -1, 8, 95, 233, 50
  52. LTEXT "File Name:", -1, 15, 113, 44, 8
  53. EDITTEXT IDC_WALLPAPER, 66, 111, 163, 12, ES_AUTOHSCROLL
  54. AUTORADIOBUTTON "Tile", IDC_TILE, 66, 130, 39, 10
  55. AUTORADIOBUTTON "Center", IDC_CENTER, 124, 130, 39, 10
  56. END