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.

60 lines
1.7 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. #include "defs.h"
  16. /*-----------------------------------------------*/
  17. /* the following lines are specific to this file */
  18. /*-----------------------------------------------*/
  19. /* VER_FILETYPE, VER_FILESUBTYPE, VER_FILEDESCRIPTION_STR
  20. * and VER_INTERNALNAME_STR must be defined before including COMMON.VER
  21. * The strings don't need a '\0', since common.ver has them.
  22. */
  23. #define VER_FILETYPE VFT_DLL
  24. /* possible values: VFT_UNKNOWN
  25. VFT_APP
  26. VFT_DLL
  27. VFT_DRV
  28. VFT_FONT
  29. VFT_VXD
  30. VFT_STATIC_LIB
  31. */
  32. #define VER_FILESUBTYPE VFT2_UNKNOWN
  33. /* possible values VFT2_UNKNOWN
  34. VFT2_DRV_PRINTER
  35. VFT2_DRV_KEYBOARD
  36. VFT2_DRV_LANGUAGE
  37. VFT2_DRV_DISPLAY
  38. VFT2_DRV_MOUSE
  39. VFT2_DRV_NETWORK
  40. VFT2_DRV_SYSTEM
  41. VFT2_DRV_INSTALLABLE
  42. VFT2_DRV_SOUND
  43. VFT2_DRV_COMM
  44. */
  45. #define VER_FILEDESCRIPTION_STR "IP Router Manager"
  46. #define VER_INTERNALNAME_STR "IPRTRMGR.DLL"
  47. #define VER_ORIGINALFILENAME_STR "IPRTRMGR.DLL"
  48. #include "common.ver" // NT5.0 version file.
  49. STRINGTABLE DISCARDABLE
  50. BEGIN
  51. LOOPBACK_STRID "Internal loopback interface for 127.0.0 network"
  52. INTERNAL_STRID "Internal RAS Server interface for dial in clients"
  53. WAN_STRID "WAN (PPP/SLIP) Interface"
  54. IPIP_STRID "IP in IP (Tunnel) Interface"
  55. END