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.

55 lines
1.5 KiB

  1. //+----------------------------------------------------------------------------
  2. //
  3. // Job Schedule service test task application
  4. //
  5. // Microsoft Windows
  6. // Copyright (C) Microsoft Corporation, 1992 - 1996.
  7. //
  8. // File: jobtask.rc
  9. //
  10. // Contents: resources
  11. //
  12. // History: 14-Jan-96 EricB created
  13. //
  14. //-----------------------------------------------------------------------------
  15. #include "res-ids.h"
  16. #include <windows.h>
  17. //+----------------------------------------------------------------------------
  18. //
  19. // Icons
  20. //
  21. //-----------------------------------------------------------------------------
  22. IDI_SCHEDULER ICON DISCARDABLE "..\..\service\sched.ICO"
  23. //+----------------------------------------------------------------------------
  24. //
  25. // Menus
  26. //
  27. //-----------------------------------------------------------------------------
  28. MAIN_MENU MENU PRELOAD DISCARDABLE
  29. BEGIN
  30. MENUITEM "&Exit!", IDM_EXIT
  31. END
  32. //+----------------------------------------------------------------------------
  33. //
  34. // Version resource
  35. //
  36. //-----------------------------------------------------------------------------
  37. #include <ntverp.h>
  38. #include "..\..\inc\version.h"
  39. #define VER_FILETYPE VFT_APP
  40. #define VER_FILESUBTYPE VFT2_UNKNOWN
  41. #define VER_FILEDESCRIPTION_STR "Windows Job Scheduler Test Task App"
  42. #define VER_FILEVERSION JOB_MAJOR_VERSION,JOB_MINOR_VERSION,VER_PRODUCTBUILD,1
  43. #define VER_INTERNALNAME_STR "JobTask\0"
  44. #define VER_ORIGINALFILENAME_STR "jobtask.exe"
  45. #include <common.ver>