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.

40 lines
1.1 KiB

  1. /*-----------------------------
  2. DEFINE VERSION RESOURCE
  3. -----------------------------*/
  4. #include <windows.h>
  5. #include <ntverp.h>
  6. /*-----------------------------------------------*/
  7. /* the following lines are specific to this file */
  8. /*-----------------------------------------------*/
  9. /* VER_FILETYPE, VER_FILESUBTYPE, VER_FILEDESCRIPTION_STR
  10. * and VER_INTERNALNAME_STR must be defined before including COMMON.VER
  11. * The strings don't need a '\0', since common.ver has them.
  12. */
  13. #define VER_FILETYPE VFT_APP
  14. /* possible values: VFT_UNKNOWN
  15. VFT_APP
  16. VFT_DLL
  17. VFT_DRV
  18. VFT_FONT
  19. VFT_VXD
  20. VFT_STATIC_LIB
  21. */
  22. #define VER_FILESUBTYPE VFT2_UNKNOWN
  23. /* possible values VFT2_UNKNOWN
  24. VFT2_DRV_PRINTER
  25. VFT2_DRV_KEYBOARD
  26. VFT2_DRV_LANGUAGE
  27. VFT2_DRV_DISPLAY
  28. VFT2_DRV_MOUSE
  29. VFT2_DRV_NETWORK
  30. VFT2_DRV_SYSTEM
  31. VFT2_DRV_INSTALLABLE
  32. VFT2_DRV_SOUND
  33. VFT2_DRV_COMM
  34. */
  35. #define VER_FILEDESCRIPTION_STR "Windows NT Setup Update Utility"
  36. #define VER_INTERNALNAME_STR "UPDATE.EXE"
  37. #define VER_ORIGINALFILENAME_STR "UPDATE.EXE"
  38. #include "common.ver"