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.

49 lines
1.2 KiB

  1. #include <windows.h>
  2. #include "types.h"
  3. #include <winver.h>
  4. #ifdef MTSCRIPT_DROP
  5. #include "mtverp.h"
  6. #else
  7. #include "ntverp.h"
  8. #endif
  9. #define VER_FILETYPE VFT_APP
  10. #define VER_FILESUBTYPE VFT2_UNKNOWN
  11. #define VER_FILEDESCRIPTION_STR "Microsoft (R) Remote script engine"
  12. #define VER_INTERNALNAME_STR "MTScript"
  13. #define VER_ORIGINALFILENAME_STR "MTSCRIPT.EXE"
  14. #include "common.ver"
  15. myicon ICON mtscript.ico
  16. myicon_small ICON mtscript_small.ico
  17. REGINST REGINST MOVEABLE PURE "selfreg_mtscript.inf"
  18. #include "config.dlg"
  19. #include "msgbox.dlg"
  20. #include "status.dlg"
  21. IDR_MAINMENU MENU FIXED
  22. BEGIN
  23. POPUP "ContextMenu"
  24. BEGIN
  25. MENUITEM "&Configure...", IDM_CONFIGURE
  26. MENUITEM "&Restart", IDM_RESTART
  27. MENUITEM "&Status", IDM_STATUS
  28. MENUITEM SEPARATOR
  29. #if DBG == 1
  30. MENUITEM "&Debug Settings...", IDM_TRACETAG
  31. MENUITEM "&Memory Monitor...", IDM_MEMORYMON
  32. MENUITEM SEPARATOR
  33. #endif
  34. MENUITEM "&About...", IDM_ABOUT, GRAYED
  35. MENUITEM SEPARATOR
  36. MENUITEM "E&xit", IDM_EXIT
  37. END
  38. END