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

  1. /*
  2.  * POLYLINE.RC
  3.  * Polyline Component Chapter 8
  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. //CHAPTER8MOD
  24. #include "resource.h"
  25.  
  26. STRINGTABLE
  27.     BEGIN
  28.      IDS_STORAGEFORMAT,      "Polyline Figure"
  29.      IDS_USERTYPE,           "Polyline Figure"
  30.     END
  31. //End CHAPTER8MOD
  32.  
  33.  
  34. VS_VERSION_INFO VERSIONINFO
  35.  FILEVERSION        1,0,0,0
  36.  PRODUCTVERSION     1,0,0,0
  37.  FILEFLAGSMASK      VS_FFI_FILEFLAGSMASK
  38. #ifndef DEBUG
  39.  FILEFLAGS          0
  40. #else
  41.  FILEFLAGS          VS_FF_DEBUG | VS_FF_PRERELEASE
  42. #endif
  43. #ifdef WIN32
  44.  FILEOS             VOS_NT_WINDOWS32
  45. #else
  46.  FILEOS             VOS_DOS_WINDOWS16
  47. #endif
  48.  FILETYPE           VFT_DLL
  49.  FILESUBTYPE        VFT_UNKNOWN
  50.  
  51.  BEGIN
  52.    BLOCK "StringFileInfo"
  53.     BEGIN
  54.     #ifdef UNICODE
  55.      BLOCK "040904B0" // Lang=US English, CharSet=Unicode
  56.     #else
  57.      BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilingual
  58.     #endif
  59.       BEGIN
  60.        VALUE "CompanyName",     "Microsoft Corporation\0", "\0"
  61.        VALUE "FileDescription", "Polyline Object 1.0", "\0"
  62.        VALUE "FileVersion",     "1.00\0", "\0"
  63.        VALUE "InternalName",    "POLY08.DLL", "\0"
  64.        VALUE "LegalCopyright",  "Copyright \251 1993-1995 Microsoft Corp.", "\0"
  65.        VALUE "OriginalFilename","POLY08.DLL", "\0"
  66.        VALUE "ProductName",     "Polyline Object 1.0", "\0"
  67.        VALUE "ProductVersion",  "1.00\0"
  68.       END
  69.    END
  70.  
  71.    BLOCK "VarFileInfo"
  72.     BEGIN 
  73.     #ifdef UNICODE
  74.      VALUE "Translation", 0x409, 1200  //English (0x409), Unicode (1200)
  75.     #else
  76.      VALUE "Translation", 0x409, 1252  //English (0x409), ANSI (1252)
  77.     #endif
  78.     END
  79.  END
  80.