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.

91 lines
2.7 KiB

  1. /*
  2. * This file provides the template for supplying the version resource
  3. * information for build objects. Each build object must include such a
  4. * version resource. It is not editable by MSVC++, since MSVC rewrites
  5. * the data as constants, instead of picking them up from the included files.
  6. *
  7. * To use this file with MSVC, rename it to an extension of *.rc2, and include
  8. * it from within your MSVC resource file.
  9. */
  10. #ifdef APSTUDIO_INVOKED
  11. #error this file is not editable by Microsoft Visual C++
  12. #endif //APSTUDIO_INVOKED
  13. #include <winver.h>
  14. #include <ntverp.h>
  15. /*
  16. * ============================================================================
  17. * Mandatory definitions
  18. * ============================================================================
  19. *
  20. * The following symbols must be properly defined for your file.
  21. */
  22. /*
  23. * VER_INTERNALNAME_STR
  24. *
  25. * Define this to be the name of the target file.
  26. */
  27. #define VER_INTERNALNAME_STR "tclcrypt.exe"
  28. /* VER_FILETYPE
  29. * VER_FILESUBTYPE
  30. *
  31. * Define this value to one of the following symbols:
  32. *
  33. * VFT_APP - File contains an application.
  34. *
  35. * VFT_DLL - File contains a dynamic-link library (DLL).
  36. *
  37. * VFT_STATIC_LIB File contains a static-link library.
  38. *
  39. * VFT_VXD File contains a virtual device.
  40. *
  41. * VFT_DRV - File contains a device driver. If the dwFileType member is
  42. * VFT_DRV, the dwFileSubtype member contains a more specific
  43. * description of the driver.
  44. *
  45. * VFT_FONT - File contains a font. If the dwFileType member is VFT_FONT,
  46. * the dwFileSubtype member contains a more specific description of
  47. * the font.
  48. *
  49. * VFT_UNKNOWN - File type is unknown to Windows.
  50. */
  51. #define VER_FILETYPE VFT_APP
  52. #define VER_FILESUBTYPE VFT2_UNKNOWN
  53. /*
  54. * VER_FILEDESCRIPTION_STR
  55. *
  56. * Define this to be a short description of the file.
  57. */
  58. #define VER_FILEDESCRIPTION_STR "Tcl V7.3 with CryptoAPI extensions"
  59. /*
  60. * ============================================================================
  61. * Optional definitions
  62. * ============================================================================
  63. *
  64. * The following symbols may be defined for your file. For a complete list,
  65. * see common.ver.
  66. */
  67. #if 0
  68. #define VER_PRODUCTNAME_STR "Sample Product Name"
  69. #define VER_FILEVERSION HIWORD(MAJOR_VER), LOWORD(MAJOR_VER), HIWORD(MINOR_VER), LOWORD(MINOR_VER)
  70. #define VER_FILEVERSION_STR "1.00"
  71. #define VER_ORIGINALFILENAME_STR VER_INTERNALNAME_STR
  72. #define EXPORT_CONTROLLED /* Define this if app is export controlled. */
  73. #define EXPORT /* Then define this for export versions. */
  74. #endif
  75. #include "common.ver"