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 / chap10 / polyline / polyline.rc < prev    next >
Encoding:
Text File  |  1995-05-03  |  1.9 KB  |  78 lines

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