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 / dllserve / dllserve.rc < prev    next >
Text File  |  1997-08-05  |  4KB  |  105 lines

  1. //===========================================================================
  2. //  File:      DLLSERVE.RC
  3. //
  4. //  Summary:   Resource definition file for DLLSERVE.DLL.
  5. //
  6. //  Origin:    9-11-95: atrent - Editor-inheritance from the COMOBJ 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 inlcude apputil.h for Resource IDs shared with APPUTIL.
  25. // We include server.h for Resource IDs unique to DLLSERVE.DLL.
  26. #include <ole2.h>
  27. #include <apputil.h>
  28. #include "server.h"
  29.  
  30. // Dummy resource (needed for AppStudio).
  31. DummyRes ICON DISCARDABLE "dllserve.ico"
  32.  
  33. // The main icon resource for the application.
  34. AppIcon ICON DISCARDABLE "dllserve.ico"
  35.  
  36. // The DLLSERVE About Box dialog resource.
  37. IDD_ABOUTBOX DIALOG DISCARDABLE  67, 46, 196, 53
  38. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  39. CAPTION "About DLLSERVE"
  40. FONT 8, "MS Shell Dlg"
  41. BEGIN
  42.   ICON            "AppIcon",-1,6,7,18,20
  43.   LTEXT           "Tutorial Code Sample: DLLSERVE Version 1.0",-1,32,7,
  44.                     155,8,NOT WS_GROUP
  45.   LTEXT           "Copyright 1997 Microsoft Corporation",-1,32,18,155,
  46.                     8,NOT WS_GROUP
  47.   PUSHBUTTON      "OK",IDOK,75,32,40,14
  48. END
  49.  
  50. // Error Box String Resources.
  51. STRINGTABLE DISCARDABLE
  52. BEGIN
  53.   IDS_ASSERT_FAIL         "DLLSERVE: Assertion Failed."
  54. END
  55.  
  56.  
  57. // If being read in by AppStudio we don't confuse it with this Version Info.
  58. #ifndef APSTUDIO_INVOKED
  59.  
  60. // The version information for the binary.
  61. VS_VERSION_INFO VERSIONINFO
  62. FILEVERSION    1,0,0,0
  63. PRODUCTVERSION 1,0,0,0
  64. FILEFLAGSMASK  VS_FFI_FILEFLAGSMASK
  65. #ifndef DEBUG
  66.   FILEFLAGS    0
  67. #else
  68.   FILEFLAGS    VS_FF_DEBUG | VS_FF_PRERELEASE
  69. #endif
  70. FILEOS         VOS_NT_WINDOWS32
  71. FILETYPE       VFT_DLL
  72. FILESUBTYPE    VFT2_UNKNOWN
  73. BEGIN
  74.   BLOCK "StringFileInfo"
  75.   BEGIN
  76.     #ifdef UNICODE
  77.       BLOCK "040904B0" // LANG_ENGLISH/SUBLANG_ENGLISH_US, CharSet=Unicode
  78.     #else
  79.       BLOCK "040904E4" // LANG_ENGLISH/SUBLANG_ENGLISH_US, CharSet=MultiLang
  80.     #endif
  81.     BEGIN
  82.       VALUE "CompanyName",     "Microsoft Corporation"
  83.       VALUE "FileDescription", "DLLSERVE: Tutorial Code Sample"
  84.       VALUE "FileVersion",     "1.00"
  85.       VALUE "InternalName",    "DLLSERVE"
  86.       VALUE "LegalCopyright",  "Copyright \251 1997 Microsoft Corp. "
  87.       VALUE "OriginalFilename","DLLSERVE.DLL"
  88.       VALUE "ProductName",     "Microsoft\256 Tutorial Code Samples"
  89.       VALUE "ProductVersion",  "1.00"
  90.       VALUE "OLESelfRegister", "\0"
  91.     END
  92.   END
  93.  
  94.   BLOCK "VarFileInfo"
  95.   BEGIN
  96.     #ifdef UNICODE
  97.       VALUE "Translation", 0x409, 1200  //English (0x409), Unicode (1200)
  98.     #else
  99.       VALUE "Translation", 0x409, 1252  //English (0x409), ANSI (1252)
  100.     #endif
  101.   END
  102. END
  103.  
  104. #endif
  105.