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

  1. //===========================================================================
  2. //  File:      REGISTER.RC
  3. //
  4. //  Summary:   Resource definition file for REGISTER.EXE.
  5. //
  6. //  Origin:    9-20-95: atrent - Based on SELFREG by Kraig Brockschmidt.
  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 only intended 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 register.h for Resource IDs unique to REGISTER.EXE.
  26. #include <ole2.h>
  27. #include <apputil.h>
  28. #include "register.h"
  29.  
  30.  
  31. //  The main icon resource for the application.
  32. AppIcon ICON DISCARDABLE "register.ico"
  33.  
  34. // Error Box String Resources.
  35. STRINGTABLE DISCARDABLE
  36. BEGIN
  37.   IDS_COMINITFAILED       "REGISTER.EXE: COM initizlization failed."
  38.   IDS_OUTOFMEMORY         "REGISTER.EXE: Ran out of memory."
  39.   IDS_DLLUNREG_FAIL       "REGISTER.EXE: DLL UnRegister Failed."
  40.   IDS_DLLREG_FAIL         "REGISTER.EXE: DLL Registration Failed."
  41.   IDS_LOADLIB_FAIL        "REGISTER.EXE: Load Library of DLL Server Failed."
  42.   IDS_EXERUN_FAIL         "REGISTER.EXE: WinExec of EXE Server Failed."
  43.   IDS_ASSERT_FAIL         "REGISTER.EXE: Assertion Failed"
  44.   IDS_ERROR_TITLE         "-Error-"
  45. END
  46.  
  47. // The Loading Message Box dialog resource.
  48. IDD_SUCCESS_MSG DIALOG DISCARDABLE  60, 40, 120, 35
  49. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION
  50. CAPTION "-Notice-"
  51. FONT 8, "MS Shell Dlg"
  52. BEGIN
  53.   ICON   "AppIcon",-1,6,7,18,20
  54.   LTEXT  "REGISTER.EXE Utility:",-1,32,7,80,8,NOT WS_GROUP
  55.   LTEXT  "Successful.",-1,32,20,80,8,NOT WS_GROUP
  56. END
  57.  
  58.  
  59. // If being read in by AppStudio we don't confuse it with this Version Info.
  60. #ifndef APSTUDIO_INVOKED
  61.  
  62. //  The version information for the binary.
  63. VS_VERSION_INFO VERSIONINFO
  64. FILEVERSION    1,0,0,0
  65. PRODUCTVERSION 1,0,0,0
  66. FILEFLAGSMASK  VS_FFI_FILEFLAGSMASK
  67. #ifndef DEBUG
  68.   FILEFLAGS    0
  69. #else
  70.   FILEFLAGS    VS_FF_DEBUG | VS_FF_PRERELEASE
  71. #endif
  72. FILEOS         VOS_NT_WINDOWS32
  73. FILETYPE       VFT_APP
  74. FILESUBTYPE    VFT2_UNKNOWN
  75. BEGIN
  76.   BLOCK "StringFileInfo"
  77.   BEGIN
  78.     #ifdef UNICODE
  79.       BLOCK "040904B0" // LANG_ENGLISH/SUBLANG_ENGLISH_US, CharSet=Unicode
  80.     #else
  81.       BLOCK "040904E4" // LANG_ENGLISH/SUBLANG_ENGLISH_US, CharSet=MultiLang
  82.     #endif
  83.     BEGIN
  84.       VALUE "CompanyName",     "Microsoft Corporation"
  85.       VALUE "FileDescription", "REGISTER: Tutorial Code Sample"
  86.       VALUE "FileVersion",     "1.00"
  87.       VALUE "InternalName",    "REGISTER"
  88.       VALUE "LegalCopyright",  "Copyright \251 1997 Microsoft Corp. "
  89.       VALUE "OriginalFilename","REGISTER.EXE"
  90.       VALUE "ProductName",     "Microsoft\256 Tutorial Code Samples"
  91.       VALUE "ProductVersion",  "1.00"
  92.     END
  93.   END
  94.  
  95.   BLOCK "VarFileInfo"
  96.   BEGIN
  97.     #ifdef UNICODE
  98.       VALUE "Translation", 0x409, 1200  //English (0x409), Unicode (1200)
  99.     #else
  100.       VALUE "Translation", 0x409, 1252  //English (0x409), ANSI (1252)
  101.     #endif
  102.   END
  103. END
  104.  
  105. #endif
  106.