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.

50 lines
1.2 KiB

  1. #include "xerox.h"
  2. #include "xerox.dlg"
  3. IDI_APPICON ICON xerox.ico
  4. IDM_MAINMENU MENU
  5. BEGIN
  6. POPUP "&Target"
  7. BEGIN
  8. MENUITEM "&Add...", IDM_TARGETADD
  9. MENUITEM "&Delete...", IDM_TARGETDELETE
  10. END
  11. POPUP "&Group"
  12. BEGIN
  13. MENUITEM "&Restore Windows...", IDM_GROUPRSTWIN
  14. MENUITEM "&Minimize Windows...", IDM_GROUPMINWIN
  15. MENUITEM "&Add...", IDM_GROUPADD
  16. MENUITEM "&Delete...", IDM_GROUPDELETE
  17. MENUITEM "&Select...", IDM_GROUPSELECT
  18. END
  19. POPUP "&Window"
  20. BEGIN
  21. MENUITEM "&Refresh Items...", IDM_REFRESHITEMS
  22. END
  23. POPUP "&Help"
  24. BEGIN
  25. MENUITEM "&About...", IDM_ABOUT
  26. END
  27. END
  28. IDR_ACCEL ACCELERATORS
  29. BEGIN
  30. VK_DELETE, IDM_TARGETDELETE , VIRTKEY
  31. VK_INSERT, IDM_TARGETADD , VIRTKEY
  32. END
  33. #include <ntverp.h>
  34. #define VER_FILETYPE VFT_APP
  35. #define VER_FILESUBTYPE VFT2_UNKNOWN
  36. #define VER_FILEDESCRIPTION_STR "Test tool - multiple window copy/paste utility"
  37. #define VER_INTERNALNAME_STR "xerox.exe"
  38. #define VER_ORIGINALFILENAME_STR "xerox.exe"
  39. #include "common.ver"