home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / tutsamp / perdraw / perdraw.rc < prev    next >
Text File  |  1997-08-05  |  3KB  |  80 lines

  1. //===========================================================================
  2. //  File:      PERDRAW.RC
  3. //
  4. //  Summary:   Resource definition file for PERDRAW.DLL.
  5. //
  6. //  Origin:    5-20-97: atrent - Editor-inheritance from STOSERVE source.
  7. //
  8. // -------------------------------------------------------------------------
  9. //  This file is part of the Microsoft COM Tutorial Code Samples.
  10. //
  11. //  Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  12. //
  13. //  This source code is intended only as a supplement to Microsoft
  14. //  Development Tools and/or on-line documentation.  See these other
  15. //  materials for detailed information regarding Microsoft code samples.
  16. //
  17. //  THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  18. //  KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  19. //  IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  20. //  PARTICULAR PURPOSE.
  21. //===========================================================================
  22.  
  23. // We include ole2.h because we're defining the Version Info.
  24. // We include apputil.h for Resource IDs shared with APPUTIL.
  25. #include <ole2.h>
  26. #include <apputil.h>
  27.  
  28. // The main icon resource for the application.
  29. AppIcon ICON DISCARDABLE "perdraw.ico"
  30.  
  31.  
  32. // If being read in by AppStudio we don't confuse it with this Version Info.
  33. #ifndef APSTUDIO_INVOKED
  34.  
  35. // The version information for the binary.
  36. VS_VERSION_INFO VERSIONINFO
  37. FILEVERSION    1,0,0,0
  38. PRODUCTVERSION 1,0,0,0
  39. FILEFLAGSMASK  VS_FFI_FILEFLAGSMASK
  40. #ifndef DEBUG
  41.   FILEFLAGS    0
  42. #else
  43.   FILEFLAGS    VS_FF_DEBUG | VS_FF_PRERELEASE
  44. #endif
  45. FILEOS         VOS_NT_WINDOWS32
  46. FILETYPE       VFT_DLL
  47. FILESUBTYPE    VFT2_UNKNOWN
  48. BEGIN
  49.   BLOCK "StringFileInfo"
  50.   BEGIN
  51.     #ifdef UNICODE
  52.       BLOCK "040904B0" // LANG_ENGLISH/SUBLANG_ENGLISH_US, CharSet=Unicode
  53.     #else
  54.       BLOCK "040904E4" // LANG_ENGLISH/SUBLANG_ENGLISH_US, CharSet=MultiLang
  55.     #endif
  56.     BEGIN
  57.       VALUE "CompanyName",     "Microsoft Corporation"
  58.       VALUE "FileDescription", "PERDRAW: Tutorial Code Sample"
  59.       VALUE "FileVersion",     "1.00"
  60.       VALUE "InternalName",    "PERDRAW"
  61.       VALUE "LegalCopyright",  "Copyright \251 1997 Microsoft Corp. "
  62.       VALUE "OriginalFilename","PERDRAW.DLL"
  63.       VALUE "ProductName",     "Microsoft\256 Tutorial Code Samples"
  64.       VALUE "ProductVersion",  "1.00"
  65.       VALUE "OLESelfRegister", "\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.  
  79. #endif
  80.