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

Windows编程

开发平台:

Visual C++

  1. //===========================================================================
  2. //  File:      PERSERVE.RC
  3. //
  4. //  Summary:   Resource definition file for PERSERVE.DLL.
  5. //
  6. //  Origin:    5-8-97: atrent - Editor-inheritance from STOSERVE 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 server.h for Resource IDs unique to PERSERVE.DLL.
  25. #include <ole2.h>
  26. #include <apputil.h>
  27. #include "server.h"
  28. // The main icon resource for the application.
  29. AppIcon ICON DISCARDABLE "perserve.ico"
  30. // If being read in by AppStudio we don't confuse it with this Version Info.
  31. #ifndef APSTUDIO_INVOKED
  32. // The version information for the binary.
  33. VS_VERSION_INFO VERSIONINFO
  34. FILEVERSION    1,0,0,0
  35. PRODUCTVERSION 1,0,0,0
  36. FILEFLAGSMASK  VS_FFI_FILEFLAGSMASK
  37. #ifndef DEBUG
  38.   FILEFLAGS    0
  39. #else
  40.   FILEFLAGS    VS_FF_DEBUG | VS_FF_PRERELEASE
  41. #endif
  42. FILEOS         VOS_NT_WINDOWS32
  43. FILETYPE       VFT_DLL
  44. FILESUBTYPE    VFT2_UNKNOWN
  45. BEGIN
  46.   BLOCK "StringFileInfo"
  47.   BEGIN
  48.     #ifdef UNICODE
  49.       BLOCK "040904B0" // LANG_ENGLISH/SUBLANG_ENGLISH_US, CharSet=Unicode
  50.     #else
  51.       BLOCK "040904E4" // LANG_ENGLISH/SUBLANG_ENGLISH_US, CharSet=MultiLang
  52.     #endif
  53.     BEGIN
  54.       VALUE "CompanyName",     "Microsoft Corporation"
  55.       VALUE "FileDescription", "PERSERVE: Tutorial Code Sample"
  56.       VALUE "FileVersion",     "1.00"
  57.       VALUE "InternalName",    "PERSERVE"
  58.       VALUE "LegalCopyright",  "Copyright 251 1997 Microsoft Corp. "
  59.       VALUE "OriginalFilename","PERSERVE.DLL"
  60.       VALUE "ProductName",     "Microsoft256 Tutorial Code Samples"
  61.       VALUE "ProductVersion",  "1.00"
  62.       VALUE "OLESelfRegister", ""
  63.     END
  64.   END
  65.   BLOCK "VarFileInfo"
  66.   BEGIN
  67.     #ifdef UNICODE
  68.       VALUE "Translation", 0x409, 1200  //English (0x409), Unicode (1200)
  69.     #else
  70.       VALUE "Translation", 0x409, 1252  //English (0x409), ANSI (1252)
  71.     #endif
  72.   END
  73. END
  74. #endif