ACMAPP.RCV
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:4k
源码类别:

Windows编程

开发平台:

Visual C++

  1. //==========================================================================;
  2. //
  3. //  THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  4. //  KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  5. //  IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
  6. //  PURPOSE.
  7. //
  8. //  Copyright (C) 1992 - 1996 Microsoft Corporation.  All Rights Reserved.
  9. //
  10. //--------------------------------------------------------------------------;
  11. //
  12. //  acmapp.rcv
  13. //
  14. //  Description:
  15. //      This file defines the version resource used for the application.
  16. //
  17. //      NOTE: All strings MUST have an explicit  for termination!
  18. //
  19. //      For a complete description of the Version Resource, search the
  20. //      Microsoft Developer's Network (MSDN) CD-ROM for 'version resource'.
  21. //
  22. //==========================================================================;
  23. #ifdef WIN32
  24. #include <winver.h>
  25. #else
  26. #include <ver.h>
  27. #endif
  28. //
  29. //  version flags. OFFICIAL and FINAL should be defined when appropriate.
  30. //
  31. //
  32. #ifndef OFFICIAL
  33. #define VER_PRIVATEBUILD      VS_FF_PRIVATEBUILD
  34. #else
  35. #define VER_PRIVATEBUILD      0
  36. #endif
  37. #ifndef FINAL
  38. #define VER_PRERELEASE        VS_FF_PRERELEASE
  39. #else
  40. #define VER_PRERELEASE        0
  41. #endif
  42. #ifdef DEBUG
  43. #define VER_DEBUG             VS_FF_DEBUG    
  44. #else
  45. #define VER_DEBUG             0
  46. #endif
  47. //--------------------------------------------------------------------------;
  48. //
  49. //
  50. //
  51. //
  52. //
  53. //--------------------------------------------------------------------------;
  54. #define APP_VERSION_FLAGSMASK   0x0030003FL
  55. #define APP_VERSION_FLAGS       (VER_PRIVATEBUILD|VER_PRERELEASE|VER_DEBUG)
  56. #ifdef WIN32
  57. #define APP_VERSION_OS          VOS_NT_WINDOWS32
  58. #else
  59. #define APP_VERSION_OS          VOS_DOS_WINDOWS16
  60. #endif
  61. #define APP_VERSION_TYPE        VFT_APP
  62. #define APP_VERSION_SUBTYPE     VFT2_UNKNOWN
  63. // This shouldn't be needed - this could cause problems
  64. //#define APP_VERSION_LANGUAGE    0x409
  65. //#ifdef UNICODE
  66. //#define APP_VERSION_CHARSET     1200
  67. //#else
  68. //#define APP_VERSION_CHARSET     1252
  69. //#endif
  70. //--------------------------------------------------------------------------;
  71. //
  72. //
  73. //
  74. //
  75. //
  76. //--------------------------------------------------------------------------;
  77. VS_VERSION_INFO VERSIONINFO
  78. FILEVERSION     APP_VERSION_MAJOR, APP_VERSION_MINOR, 0, APP_VERSION_BUILD
  79. PRODUCTVERSION  APP_VERSION_MAJOR, APP_VERSION_MINOR, 0, APP_VERSION_BUILD
  80. FILEFLAGSMASK   APP_VERSION_FLAGSMASK
  81. FILEFLAGS       APP_VERSION_FLAGS
  82. FILEOS          APP_VERSION_OS
  83. FILETYPE        APP_VERSION_TYPE
  84. FILESUBTYPE     APP_VERSION_SUBTYPE
  85. BEGIN
  86.     BLOCK "StringFileInfo"
  87.     BEGIN
  88.         BLOCK "040904E4"
  89.         BEGIN
  90.             VALUE "CompanyName",        APP_VERSION_COMPANYNAME_RC
  91.             VALUE "FileDescription",    APP_VERSION_DESCRIPTION_RC
  92.             VALUE "FileVersion",        APP_VERSION_STRING_RC
  93.             VALUE "InternalName",       APP_VERSION_NAME_RC
  94.             VALUE "LegalCopyright",     APP_VERSION_COPYRIGHT_RC
  95.             VALUE "OriginalFilename",   APP_VERSION_NAME_RC
  96.             VALUE "ProductName",        APP_VERSION_PRODUCTNAME_RC
  97.             VALUE "ProductVersion",     APP_VERSION_STRING_RC
  98.         END
  99.         BLOCK "041104E4"
  100.         BEGIN
  101.             VALUE "CompanyName",        APP_VERSION_COMPANYNAME_RC
  102.             VALUE "FileDescription",    APP_VERSION_DESCRIPTION_RC
  103.             VALUE "FileVersion",        APP_VERSION_STRING_RC
  104.             VALUE "InternalName",       APP_VERSION_NAME_RC
  105.             VALUE "LegalCopyright",     APP_VERSION_COPYRIGHT_RC
  106.             VALUE "OriginalFilename",   APP_VERSION_NAME_RC
  107.             VALUE "ProductName",        APP_VERSION_PRODUCTNAME_RC
  108.             VALUE "ProductVersion",     APP_VERSION_STRING_RC
  109.         END
  110.     END
  111.     BLOCK "VarFileInfo"
  112.     BEGIN
  113.         VALUE "Translation", 0x409, 0x4E4, 0x411, 0x4E4
  114.     END
  115. END