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 / chap05 / polyline / polyline.rc < prev    next >
Text File  |  1995-05-03  |  2KB  |  69 lines

  1. /*
  2.  * POLYLINE.RC
  3.  * Polyline Component Chapter 5
  4.  *
  5.  * Resources for the Polyline object (just the version information)
  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.  
  17. #ifdef WIN32
  18. #include <winver.h>
  19. #else
  20. #include <ver.h>
  21. #endif
  22.  
  23. VS_VERSION_INFO VERSIONINFO
  24.  FILEVERSION        1,0,0,0
  25.  PRODUCTVERSION     1,0,0,0
  26.  FILEFLAGSMASK      VS_FFI_FILEFLAGSMASK
  27. #ifndef DEBUG
  28.  FILEFLAGS          0
  29. #else
  30.  FILEFLAGS          VS_FF_DEBUG | VS_FF_PRERELEASE
  31. #endif
  32. #ifdef WIN32
  33.  FILEOS             VOS_NT_WINDOWS32
  34. #else
  35.  FILEOS             VOS_DOS_WINDOWS16
  36. #endif
  37.  FILETYPE           VFT_DLL
  38.  FILESUBTYPE        VFT_UNKNOWN
  39.  
  40.  BEGIN
  41.    BLOCK "StringFileInfo"
  42.     BEGIN
  43.     #ifdef UNICODE
  44.      BLOCK "040904B0" // Lang=US English, CharSet=Unicode
  45.     #else
  46.      BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilingual
  47.     #endif
  48.       BEGIN
  49.        VALUE "CompanyName",     "Microsoft Corporation\0", "\0"
  50.        VALUE "FileDescription", "Polyline Object 1.0", "\0"
  51.        VALUE "FileVersion",     "1.00\0", "\0"
  52.        VALUE "InternalName",    "POLY05.DLL", "\0"
  53.        VALUE "LegalCopyright",  "Copyright \251 1993-1995 Microsoft Corp.", "\0"
  54.        VALUE "OriginalFilename","POLY05.DLL", "\0"
  55.        VALUE "ProductName",     "Polyline Object 1.0", "\0"
  56.        VALUE "ProductVersion",  "1.00\0"
  57.       END
  58.    END
  59.  
  60.    BLOCK "VarFileInfo"
  61.     BEGIN 
  62.     #ifdef UNICODE
  63.      VALUE "Translation", 0x409, 1200  //English (0x409), Unicode (1200)
  64.     #else
  65.      VALUE "Translation", 0x409, 1252  //English (0x409), ANSI (1252)
  66.     #endif
  67.     END
  68.  END
  69.