DLLSKEL.RC
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:4k
源码类别:

Windows编程

开发平台:

Visual C++

  1. //===========================================================================
  2. //  File:      DLLSKEL.RC
  3. //
  4. //  Summary:   Resource definition file for DLLSKEL.DLL.
  5. //
  6. //  Origin:    8-5-95: atrent - Editor-inheritance from the EXESKEL 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. // We include ole2.h because we're defining the Version Info.
  23. // We inlcude apputil.h for Resource IDs shared with APPUTIL.
  24. // We include dllskeli.h for Resource IDs unique to DLLSKEL.DLL.
  25. #include <ole2.h>
  26. #include <apputil.h>
  27. #include "dllskeli.h"
  28. //  The main icon resource for the application.
  29. AppIcon ICON DISCARDABLE "dllskel.ico"
  30. //  The DLLSKEL About Box dialog resource.
  31. IDD_ABOUTBOX DIALOG DISCARDABLE  67, 46, 196, 53
  32. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  33. CAPTION "About DLLSKEL"
  34. FONT 8, "MS Shell Dlg"
  35. BEGIN
  36.   ICON            "AppIcon",-1,6,7,18,20
  37.   LTEXT           "Tutorial Code Sample: DLLSKEL Version 1.0",-1,32,7,
  38.                     155,8,NOT WS_GROUP
  39.   LTEXT           "Copyright 1997 Microsoft Corporation",-1,32,18,155,
  40.                     8,NOT WS_GROUP
  41.   PUSHBUTTON      "OK",IDOK,75,32,40,14
  42. END
  43. // Error Box String Resources.
  44. STRINGTABLE DISCARDABLE
  45. BEGIN
  46.   IDS_COMINITFAILED       "DLLSKEL: COM initialization failed."
  47.   IDS_DLLINITFAILED       "DLLSKEL: DLL initialization failed."
  48.   IDS_OUTOFMEMORY         "DLLSKEL: Ran out of memory."
  49.   IDS_NOHELPFILE          "DLLSKEL: Can't find .HLP file."
  50.   IDS_ASSERT_FAIL         "DLLSKEL: Assertion Failed."
  51. END
  52. // Notice Box String Resources.
  53. STRINGTABLE DISCARDABLE
  54. BEGIN
  55.   IDS_HELLOCOUNTFMT       "DLLSKEL instance %i hello. Shared count = %i."
  56.   IDS_HELLOTITLE          "DLLSKEL.DLL called by DLLUSER.EXE"
  57. END
  58. // If being read in by AppStudio we don't confuse it with this Version Info.
  59. #ifndef APSTUDIO_INVOKED
  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=Multilingual
  80.     #endif
  81.     BEGIN
  82.       VALUE "CompanyName",     "Microsoft Corporation"
  83.       VALUE "FileDescription", "DLLSKEL: Tutorial Code Sample"
  84.       VALUE "FileVersion",     "1.00"
  85.       VALUE "InternalName",    "DLLSKEL"
  86.       VALUE "LegalCopyright",  "Copyright 251 1997 Microsoft Corp. "
  87.       VALUE "OriginalFilename","DLLSKEL.DLL"
  88.       VALUE "ProductName",     "Microsoft256 Tutorial Code Samples"
  89.       VALUE "ProductVersion",  "1.00"
  90.     END
  91.   END
  92.   BLOCK "VarFileInfo"
  93.   BEGIN
  94.     #ifdef UNICODE
  95.       VALUE "Translation", 0x409, 1200  //English (0x409), Unicode (1200)
  96.     #else
  97.       VALUE "Translation", 0x409, 1252  //English (0x409), ANSI (1252)
  98.     #endif
  99.   END
  100. END
  101. #endif