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

Windows编程

开发平台:

Visual C++

  1. /*
  2.  * FVTEXT.RCV
  3.  *
  4.  * Version information for a FileViewer DLL.  Make changes
  5.  * where you see MODIFY
  6.  *
  7.  * Copyright (c) 1994-1995 Microsoft Corporation, All Rights Reserved
  8.  */
  9. #include <version.h>
  10. //Default is nodebug
  11. #ifndef DEBUG
  12. #define VER_DEBUG                   0
  13. #else
  14. #define VER_DEBUG                   VS_FF_DEBUG
  15. #endif
  16. VS_VERSION_INFO VERSIONINFO
  17.  //MODIFY:  Update the version numbers as necessary
  18.  FILEVERSION        1,0,0,0
  19.  PRODUCTVERSION     1,0,0,0
  20.  FILEFLAGSMASK      VS_FFI_FILEFLAGSMASK
  21.  FILEFLAGS          VER_DEBUG
  22.  FILEOS             VOS_NT_WINDOWS32
  23.  FILETYPE           VFT_DLL
  24.  FILESUBTYPE        VFT_UNKNOWN
  25.  BEGIN
  26.    BLOCK "StringFileInfo"
  27.     BEGIN
  28.      BLOCK "040904E4"
  29.       BEGIN
  30.        //MODIFY:  Change all of these strings to your FileViewer specifics
  31.        VALUE "CompanyName",     "Microsoft Corporation", ""
  32.        VALUE "FileDescription", "Text FileViewer Object 1.0", ""
  33.        VALUE "FileVersion",     "1.00", ""
  34.        VALUE "InternalName",    "FVTEXT.DLL", ""
  35.        VALUE "LegalCopyright",  "Copyright 251 1994-1995 Microsoft Corp.", ""
  36.        VALUE "OriginalFilename","FVTEXT.DLL", ""
  37.        VALUE "ProductName",     "Text FileViewer Object 1.0", ""
  38.        VALUE "ProductVersion",  "1.00"
  39.       END
  40.    END
  41.  
  42.    BLOCK "VarFileInfo"
  43.     BEGIN 
  44.      VALUE "Translation", 0x0409, 0x04E4
  45.     END 
  46.  END