Leaked source code of windows server 2003
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.

71 lines
2.8 KiB

  1. /*----------------------------------------------------------------------------*\
  2. | Include this file in your .RC file. |
  3. | |
  4. | The information here is described more fully in the SDK online help. |
  5. | Search on topics "VS_FIXEDFILEINFO" and "Version-Information Resource". |
  6. \*----------------------------------------------------------------------------*/
  7. #ifdef RC_INVOKED
  8. #ifdef WINNT
  9. #include <ntverp.h>
  10. #else
  11. #include <version.h>
  12. #endif
  13. /*----------------------------------------------------------------------------*\
  14. | The following VER_ and VSTR_ #defines should be changed to suit a |
  15. | particular application, DLL, driver, font or device. |
  16. | |
  17. | Pay particular attention to: |
  18. | VER_FILETYPE |
  19. | VER_FILEVERSION, VSTR_FILEVERSION |
  20. | VER_PRODUCTVERSION, VSTR_PRODUCTVERSION |
  21. | |
  22. | VSTR_INTERNALNAME |
  23. | VSTR_ORIGINALFILENAME |
  24. \*----------------------------------------------------------------------------*/
  25. /* VFT_APP: for an application.
  26. * VFT_DLL: for a dynamic-link library.
  27. * VFT_FONT: for a font.
  28. * VFT_DRV: for a device driver.
  29. * VFT_VXD: for a virtual device.
  30. **********/
  31. #define VER_FILETYPE VFT_APP
  32. #define VER_FILESUBTYPE VFT_UNKNOWN
  33. /* Binary and string version numbers for this file, and for the product
  34. * with which the file is distributed.
  35. *
  36. * The binary version number is defined by two DWORDS. They appear
  37. * here as HIWORD(dw1), LOWORD(dw1), HIWORD(dw2), LOWORD(dw2).
  38. *
  39. * The version strings can be whatever you want.
  40. **********/
  41. /* Change these to suit your needs.
  42. **********/
  43. #define VSTR_FILEDESCRIPTION "PANOSE(tm) Font Mapper"
  44. #define VER_FILEDESCRIPTION_STR VSTR_FILEDESCRIPTION
  45. /* Module name if this is a DLL - for example, "USER". Otherwise, this
  46. * should be the original filename, without extension.
  47. **********/
  48. #define VER_INTERNALNAME_STR "PANMAP"
  49. /* Original filename of the file, -not- including the path.
  50. **********/
  51. #define VER_ORIGINALFILENAME_STR "PANMAP.DLL"
  52. /* Full text of all copyright notices.
  53. **********/
  54. #define VER_LEGALCOPYRIGHT_YEARS "1991-1995"
  55. #include <common.ver>
  56. #endif /* RC_INVOKED */