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

Windows编程

开发平台:

Visual C++

  1. //===========================================================================
  2. //  File:      DLLUSER.RC
  3. //
  4. //  Summary:   Resource definition file for DLLUSER.EXE.
  5. //
  6. //  Origin:    8-5-95: atrent - Editor-inheritance from the EXESKEL.RC.
  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 dlluser.h for Resource IDs unique to DLLUSER.EXE.
  25. #include <ole2.h>
  26. #include <apputil.h>
  27. #include "dlluser.h"
  28. // The main keyboard accelerator resource table.
  29. AppAccel ACCELERATORS MOVEABLE PURE
  30. BEGIN
  31.   VK_F1,          IDM_HELP_CONTENTS,      VIRTKEY
  32.   "?",            IDM_HELP_CONTENTS,      ASCII
  33. END
  34. // The About Box dialog resource.
  35. IDM_HELP_ABOUT DIALOG DISCARDABLE  67, 46, 196, 53
  36. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  37. CAPTION "About DLLUSER"
  38. FONT 8, "MS Shell Dlg"
  39. BEGIN
  40.   ICON            "AppIcon",-1,6,7,18,20
  41.   LTEXT           "Tutorial Code Sample: DLLUSER Version 1.0",-1,32,7,
  42.                     155,8,NOT WS_GROUP
  43.   LTEXT           "Copyright 1997 Microsoft Corporation",-1,32,18,155,
  44.                     8,NOT WS_GROUP
  45.   PUSHBUTTON      "OK",IDOK,75,32,40,14
  46. END
  47. // The main icon resource for the application--use same one as in
  48. // DLLSKEL.DLL.
  49. AppIcon ICON DISCARDABLE "dlluser.ico"
  50. // The main menu resource definition.
  51. DLLUSERMENU MENU DISCARDABLE
  52. BEGIN
  53.   POPUP "&File"
  54.   BEGIN
  55.     MENUITEM "E&xit",                       IDM_FILE_EXIT
  56.   END
  57.   POPUP "&Test"
  58.   BEGIN
  59.     MENUITEM "&Call DLLSKEL.DLL...",        IDM_TEST_DLLHELLO
  60.     MENUITEM "&About DLLSKEL.DLL...",       IDM_TEST_DLLABOUT
  61.   END
  62.   POPUP "&Help"
  63.   BEGIN
  64. //  MENUITEM "&Help Topics",                IDM_HELP_CONTENTS
  65.     MENUITEM "DLLUSER &Tutorial",           IDM_HELP_TUTORIAL
  66.     MENUITEM "&DLLSKEL Tutorial",           IDM_HELP_TUTDLL
  67.     MENUITEM "Read Source &File...",        IDM_HELP_READSOURCE
  68.     MENUITEM SEPARATOR
  69.     MENUITEM "&About DLLUSER...",           IDM_HELP_ABOUT
  70.   END
  71. END
  72. // Error Box String Resources.
  73. STRINGTABLE DISCARDABLE
  74. BEGIN
  75.   IDS_COMINITFAILED       "DLLUSER: COM initialization failed."
  76.   IDS_APPINITFAILED       "DLLUSER: App initialization failed."
  77.   IDS_OUTOFMEMORY         "DLLUSER: Ran out of memory."
  78.   IDS_UNICODEFAIL         "DLLUSER: Can't run with Unicode."
  79.   IDS_ASSERT_FAIL         "DLLUSER: Assertion Failed."
  80. END
  81. // If being read in by AppStudio we don't confuse it with this Version Info.
  82. #ifndef APSTUDIO_INVOKED
  83. // The version information for the binary.
  84. VS_VERSION_INFO VERSIONINFO
  85. FILEVERSION    1,0,0,0
  86. PRODUCTVERSION 1,0,0,0
  87. FILEFLAGSMASK  VS_FFI_FILEFLAGSMASK
  88. #ifndef DEBUG
  89.   FILEFLAGS    0
  90. #else
  91.   FILEFLAGS    VS_FF_DEBUG | VS_FF_PRERELEASE
  92. #endif
  93. FILEOS         VOS_NT_WINDOWS32
  94. FILETYPE       VFT_APP
  95. FILESUBTYPE    VFT2_UNKNOWN
  96. BEGIN
  97.   BLOCK "StringFileInfo"
  98.   BEGIN
  99.     #ifdef UNICODE
  100.       BLOCK "040904B0" // LANG_ENGLISH/SUBLANG_ENGLISH_US, CharSet=Unicode
  101.     #else
  102.       BLOCK "040904E4" // LANG_ENGLISH/SUBLANG_ENGLISH_US, CharSet=MultiLang
  103.     #endif
  104.     BEGIN
  105.       VALUE "CompanyName",     "Microsoft Corporation"
  106.       VALUE "FileDescription", "DLLUSER: Tutorial Code Sample"
  107.       VALUE "FileVersion",     "1.00"
  108.       VALUE "InternalName",    "DLLUSER"
  109.       VALUE "LegalCopyright",  "Copyright 251 1997 Microsoft Corp. "
  110.       VALUE "OriginalFilename","DLLUSER.EXE"
  111.       VALUE "ProductName",     "Microsoft256 Tutorial Code Samples"
  112.       VALUE "ProductVersion",  "1.00"
  113.     END
  114.   END
  115.   BLOCK "VarFileInfo"
  116.   BEGIN
  117.     #ifdef UNICODE
  118.       VALUE "Translation", 0x409, 1200  //English (0x409), Unicode (1200)
  119.     #else
  120.       VALUE "Translation", 0x409, 1252  //English (0x409), ANSI (1252)
  121.     #endif
  122.   END
  123. END
  124. #endif