home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / inole2 / chap19 / hcosmo / hcosmo.rc < prev    next >
Text File  |  1995-05-03  |  2KB  |  72 lines

  1. /*
  2.  * HCOSMO.RC
  3.  * Cosmo Handler Chapter 19
  4.  *
  5.  * Resources for the Cosmo Handler
  6.  *
  7.  * Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved.
  8.  *
  9.  * Kraig Brockschmidt, Microsoft
  10.  * Internet  :  kraigb@microsoft.com
  11.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  12.  */
  13.  
  14.  
  15. #include <windows.h>
  16. #ifdef WIN32
  17. #include <winver.h>
  18. #else
  19. #include <ver.h>
  20. #endif
  21.  
  22. 1 ICON hcosmo.ico
  23.  
  24.  
  25.  
  26. VS_VERSION_INFO VERSIONINFO
  27.  FILEVERSION        1,0,0,0
  28.  PRODUCTVERSION     1,0,0,0
  29.  FILEFLAGSMASK      VS_FFI_FILEFLAGSMASK
  30. #ifndef DEBUG
  31.  FILEFLAGS          0
  32. #else
  33.  FILEFLAGS          VS_FF_DEBUG | VS_FF_PRERELEASE
  34. #endif
  35. #ifdef WIN32
  36.  FILEOS             VOS_NT_WINDOWS32
  37. #else
  38.  FILEOS             VOS_DOS_WINDOWS16
  39. #endif
  40.  FILETYPE           VFT_DLL
  41.  FILESUBTYPE        VFT_UNKNOWN
  42.  
  43.  BEGIN
  44.    BLOCK "StringFileInfo"
  45.     BEGIN
  46.     #ifdef UNICODE
  47.      BLOCK "040904B0" // Lang=US English, CharSet=Unicode
  48.     #else
  49.      BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilingual
  50.     #endif
  51.       BEGIN
  52.        VALUE "CompanyName",     "Microsoft Corporation\0", "\0"
  53.        VALUE "FileDescription", "Cosmo Handler 1.0", "\0"
  54.        VALUE "FileVersion",     "1.00\0", "\0"
  55.        VALUE "InternalName",    "HCOSMO19.DLL", "\0"
  56.        VALUE "LegalCopyright",  "Copyright \251 1993-1995 Microsoft Corp.", "\0"
  57.        VALUE "OriginalFilename","HCOSMO19.DLL", "\0"
  58.        VALUE "ProductName",     "Cosmo Handler 1.0", "\0"
  59.        VALUE "ProductVersion",  "1.00\0"
  60.       END
  61.    END
  62.  
  63.    BLOCK "VarFileInfo"
  64.     BEGIN 
  65.     #ifdef UNICODE
  66.      VALUE "Translation", 0x409, 1200  //English (0x409), Unicode (1200)
  67.     #else
  68.      VALUE "Translation", 0x409, 1252  //English (0x409), ANSI (1252)
  69.     #endif
  70.     END
  71.  END
  72.