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

Windows编程

开发平台:

Visual C++

  1. //===========================================================================
  2. //  File:      COMOBJ.RC
  3. //
  4. //  Summary:   Resource definition file for COMOBJ.DLL.
  5. //
  6. //  Origin:    8-20-95: atrent - Editor-inheritance from the DLLSKEL 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 comobji.h for Resource IDs unique to COMOBJ.DLL.
  25. #include <ole2.h>
  26. #include <apputil.h>
  27. #include "comobji.h"
  28. //  The main icon resource for the application.
  29. AppIcon ICON DISCARDABLE "comobj.ico"
  30. //  The COMOBJ 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 COMOBJ"
  34. FONT 8, "MS Shell Dlg"
  35. BEGIN
  36.   ICON            "AppIcon",-1,6,7,18,20
  37.   LTEXT           "Tutorial Code Sample: COMOBJ 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_ASSERT_FAIL         "COMOBJ: Assertion Failed."
  47. END
  48. // If being read in by AppStudio we don't confuse it with this Version Info.
  49. #ifndef APSTUDIO_INVOKED
  50. //  The version information for the binary.
  51. VS_VERSION_INFO VERSIONINFO
  52. FILEVERSION    1,0,0,0
  53. PRODUCTVERSION 1,0,0,0
  54. FILEFLAGSMASK  VS_FFI_FILEFLAGSMASK
  55. #ifndef DEBUG
  56.   FILEFLAGS    0
  57. #else
  58.   FILEFLAGS    VS_FF_DEBUG | VS_FF_PRERELEASE
  59. #endif
  60. FILEOS         VOS_NT_WINDOWS32
  61. FILETYPE       VFT_DLL
  62. FILESUBTYPE    VFT2_UNKNOWN
  63. BEGIN
  64.   BLOCK "StringFileInfo"
  65.   BEGIN
  66.     #ifdef UNICODE
  67.       BLOCK "040904B0" // LANG_ENGLISH/SUBLANG_ENGLISH_US, CharSet=Unicode
  68.     #else
  69.       BLOCK "040904E4" // LANG_ENGLISH/SUBLANG_ENGLISH_US, CharSet=MultiLang
  70.     #endif
  71.     BEGIN
  72.       VALUE "CompanyName",     "Microsoft Corporation"
  73.       VALUE "FileDescription", "COMOBJ: Tutorial Code Sample"
  74.       VALUE "FileVersion",     "1.00"
  75.       VALUE "InternalName",    "COMOBJ"
  76.       VALUE "LegalCopyright",  "Copyright 251 1997 Microsoft Corp. "
  77.       VALUE "OriginalFilename","COMOBJ.DLL"
  78.       VALUE "ProductName",     "Microsoft256 Tutorial Code Samples"
  79.       VALUE "ProductVersion",  "1.00"
  80.     END
  81.   END
  82.   BLOCK "VarFileInfo"
  83.   BEGIN
  84.     #ifdef UNICODE
  85.       VALUE "Translation", 0x409, 1200  //English (0x409), Unicode (1200)
  86.     #else
  87.       VALUE "Translation", 0x409, 1252  //English (0x409), ANSI (1252)
  88.     #endif
  89.   END
  90. END
  91. #endif