home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winui / shell / fileview / fvtext.rcv < prev    next >
Encoding:
Text File  |  1995-03-10  |  1.4 KB  |  54 lines

  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.  
  10.  
  11. #include <version.h>
  12.  
  13. //Default is nodebug
  14. #ifndef DEBUG
  15. #define VER_DEBUG                   0
  16. #else
  17. #define VER_DEBUG                   VS_FF_DEBUG
  18. #endif
  19.  
  20.  
  21. VS_VERSION_INFO VERSIONINFO
  22.  //MODIFY:  Update the version numbers as necessary
  23.  FILEVERSION        1,0,0,0
  24.  PRODUCTVERSION     1,0,0,0
  25.  
  26.  FILEFLAGSMASK      VS_FFI_FILEFLAGSMASK
  27.  FILEFLAGS          VER_DEBUG
  28.  FILEOS             VOS_NT_WINDOWS32
  29.  FILETYPE           VFT_DLL
  30.  FILESUBTYPE        VFT_UNKNOWN
  31.  
  32.  BEGIN
  33.    BLOCK "StringFileInfo"
  34.     BEGIN
  35.      BLOCK "040904E4"
  36.       BEGIN
  37.        //MODIFY:  Change all of these strings to your FileViewer specifics
  38.        VALUE "CompanyName",     "Microsoft Corporation\0", "\0"
  39.        VALUE "FileDescription", "Text FileViewer Object 1.0", "\0"
  40.        VALUE "FileVersion",     "1.00\0", "\0"
  41.        VALUE "InternalName",    "FVTEXT.DLL", "\0"
  42.        VALUE "LegalCopyright",  "Copyright \251 1994-1995 Microsoft Corp.", "\0"
  43.        VALUE "OriginalFilename","FVTEXT.DLL", "\0"
  44.        VALUE "ProductName",     "Text FileViewer Object 1.0", "\0"
  45.        VALUE "ProductVersion",  "1.00\0"
  46.       END
  47.    END
  48.  
  49.    BLOCK "VarFileInfo"
  50.     BEGIN 
  51.      VALUE "Translation", 0x0409, 0x04E4
  52.     END 
  53.  END
  54.