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 / dlluser / dlluser.rc < prev    next >
Text File  |  1997-08-05  |  5KB  |  141 lines

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