home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / crt / src / sample_i.rc < prev    next >
Text File  |  1998-06-17  |  1KB  |  50 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // _SAMPLE_.RC : Defines the version resource for a user-built
  4. //    C/C++ Run-Time Library DLL (Dynamic Link Library).
  5. //
  6. /////////////////////////////////////////////////////////////////////////////
  7.  
  8. #include "winver.h"              // extract from windows header
  9.  
  10. VS_VERSION_INFO VERSIONINFO
  11.  FILEVERSION 6,00,0,0
  12.  PRODUCTVERSION 6,00,0,0
  13.  FILEFLAGSMASK 0x3fL
  14. #ifdef _DEBUG
  15.  FILEFLAGS VS_FF_DEBUG
  16. #else
  17.  FILEFLAGS 0x0L
  18. #endif
  19.  FILEOS VOS_NT_WINDOWS32
  20.  FILETYPE VFT_DLL
  21.  FILESUBTYPE VFT2_UNKNOWN
  22. BEGIN
  23.     BLOCK "StringFileInfo"
  24.     BEGIN
  25.         BLOCK "040904B0"
  26.         BEGIN
  27.             VALUE "CompanyName", "Sample Corporation"
  28.             VALUE "FileDescription", "User-Generated Microsoft (R) C/C++ Runtime Library"
  29.             VALUE "FileVersion", "6.00.0000"
  30. #ifdef _DEBUG
  31.             VALUE "InternalName", "_SAMPLD_.DLL"
  32. #else
  33.             VALUE "InternalName", "_SAMPLE_.DLL"
  34. #endif
  35.             VALUE "LegalCopyright", "Copyright (C) Microsoft Corp. 1981-1998"
  36. #ifdef _DEBUG
  37.             VALUE "OriginalFilename", "_SAMPLD_.DLL"
  38. #else
  39.             VALUE "OriginalFilename", "_SAMPLE_.DLL"
  40. #endif
  41.             VALUE "ProductName", "Sample Application DLL"
  42.             VALUE "ProductVersion", "6.00.0000"
  43.         END
  44.     END
  45.     BLOCK "VarFileInfo"
  46.     BEGIN
  47.         VALUE "Translation", 0x409, 1200
  48.     END
  49. END
  50.