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.

59 lines
1.6 KiB

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