⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 freserve.rc

📁 服务器方面的
💻 RC
字号:
//===========================================================================
//  File:      FRESERVE.RC
//
//  Summary:   Resource definition file for FRESERVE.DLL.
//
//  Origin:    4-5-96: atrent - Editor-inheritance from the DLLSERVE source.
//
// -------------------------------------------------------------------------
//  This file is part of the Microsoft OLE Tutorial Code Samples.
//
//  Copyright (C) Microsoft Corporation, 1996.  All rights reserved.
//
//  This source code is intended only as a supplement to Microsoft
//  Development Tools and/or on-line documentation.  See these other
//  materials for detailed information regarding Microsoft code samples.
//
//  THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
//  KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
//  IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
//  PARTICULAR PURPOSE.
//===========================================================================

// We include ole2.h because we're defining the Version Info.
// We inlcude apputil.h for Resource IDs shared with APPUTIL.
// We include server.h for Resource IDs unique to FRESERVE.DLL.
#include <ole2.h>
#include "apputil.h"
#include "server.h"

// The main icon resource for the application.
AppIcon ICON DISCARDABLE "freserve.ico"

// Error Box String Resources.
STRINGTABLE DISCARDABLE
BEGIN
  IDS_ASSERT_FAIL         "FRESERVE: Assertion Failed."
END


// If being read in by AppStudio we don't confuse it with this Version Info.
#ifndef APSTUDIO_INVOKED

// The version information for the binary.
VS_VERSION_INFO VERSIONINFO
FILEVERSION    1,0,0,0
PRODUCTVERSION 1,0,0,0
FILEFLAGSMASK  VS_FFI_FILEFLAGSMASK
#ifndef DEBUG
  FILEFLAGS    0
#else
  FILEFLAGS    VS_FF_DEBUG | VS_FF_PRERELEASE
#endif
FILEOS         VOS_NT_WINDOWS32
FILETYPE       VFT_DLL
FILESUBTYPE    VFT2_UNKNOWN
BEGIN
  BLOCK "StringFileInfo"
  BEGIN
    #ifdef UNICODE
      BLOCK "040904B0" // LANG_ENGLISH/SUBLANG_ENGLISH_US, CharSet=Unicode
    #else
      BLOCK "040904E4" // LANG_ENGLISH/SUBLANG_ENGLISH_US, CharSet=MultiLang
    #endif
    BEGIN
      VALUE "CompanyName",     "Microsoft Corporation"
      VALUE "FileDescription", "FRESERVE: OLE Tutorial Code Sample"
      VALUE "FileVersion",     "1.00"
      VALUE "InternalName",    "FRESERVE"
      VALUE "LegalCopyright",  "Copyright \251 1996 Microsoft Corp. "
      VALUE "OriginalFilename","FRESERVE.DLL"
      VALUE "ProductName",     "Microsoft\256 OLE Tutorial Code Samples"
      VALUE "ProductVersion",  "1.00"
      VALUE "OLESelfRegister", "\0"
    END
  END

  BLOCK "VarFileInfo"
  BEGIN
    #ifdef UNICODE
      VALUE "Translation", 0x409, 1200  //English (0x409), Unicode (1200)
    #else
      VALUE "Translation", 0x409, 1252  //English (0x409), ANSI (1252)
    #endif
  END
END

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -