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.

53 lines
1.5 KiB

  1. /*
  2. ** Template for version resources. Place this in your .rc file,
  3. ** editing the values for VER_FILETYPE, VER_FILESUBTYPE,
  4. ** VER_FILEDESCRIPTION_STR and VER_INTERNALNAME_STR as needed.
  5. ** See winver.h for possible values.
  6. **
  7. ** Ntverp.h defines several global values that don't need to be
  8. ** changed except for official releases such as betas, sdk updates, etc.
  9. **
  10. ** Common.ver has the actual version resource structure that all these
  11. ** #defines eventually initialize.
  12. */
  13. #include <windows.h>
  14. #include <ntverp.h>
  15. /*-----------------------------------------------*/
  16. /* the following lines are specific to this file */
  17. /*-----------------------------------------------*/
  18. /* VER_FILETYPE, VER_FILESUBTYPE, VER_FILEDESCRIPTION_STR
  19. * and VER_INTERNALNAME_STR must be defined before including COMMON.VER
  20. * The strings don't need a '\0', since common.ver has them.
  21. */
  22. #define VER_FILETYPE VFT_APP
  23. /* possible values: VFT_UNKNOWN
  24. VFT_APP
  25. VFT_DLL
  26. VFT_DRV
  27. VFT_FONT
  28. VFT_VXD
  29. VFT_STATIC_LIB
  30. */
  31. #define VER_FILESUBTYPE VFT2_UNKNOWN
  32. /* possible values VFT2_UNKNOWN
  33. VFT2_DRV_PRINTER
  34. VFT2_DRV_KEYBOARD
  35. VFT2_DRV_LANGUAGE
  36. VFT2_DRV_DISPLAY
  37. VFT2_DRV_MOUSE
  38. VFT2_DRV_NETWORK
  39. VFT2_DRV_SYSTEM
  40. VFT2_DRV_INSTALLABLE
  41. VFT2_DRV_SOUND
  42. VFT2_DRV_COMM
  43. */
  44. #define VER_FILEDESCRIPTION_STR "Working Set Tuner Post-processing Tuning Utility"
  45. #define VER_INTERNALNAME_STR "WSTUNE.EXE"
  46. #define VER_ORIGINALFILENAME_STR "wstune.exe"
  47. #include "common.ver"
  48.