📄 freserve.h
字号:
/*+==========================================================================
File: FRESERVE.H
Summary: Include file for the FRESERVE.DLL dynamic link library.
Intended primarily for external users of this DLL who exploit
it via static linkage to the DllRegisterServer and
DllUnregisterServer exported service calls.
For a comprehensive tutorial code tour of FRESERVE's contents
and offerings see the accompanying FRESERVE.TXT file. For
more specific technical details on the internal workings see
the comments dispersed throughout the FRESERVE source code.
Classes: none.
Functions: DllRegisterServer, DllUnregisterServer.
Origin: 4-5-96: atrent - Editor-inheritance from DLLSERVE.H in
the DLLSERVE OLE Tutorial Code Sample.
----------------------------------------------------------------------------
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.
==========================================================================+*/
#if !defined(FRESERVE_H)
#define FRESERVE_H
#if !defined(RC_INCLUDE)
#if !defined(_DLLEXPORT_)
// If _DLLEXPORT_ is NOT defined then the default is to import.
#define DLLENTRY EXTERN_C __declspec(dllimport)
#define STDENTRY EXTERN_C __declspec(dllimport) HRESULT STDAPICALLTYPE
#define STDENTRY_(type) EXTERN_C __declspec(dllimport) type STDAPICALLTYPE
// Here is the list of server APIs offered by the DLL (using the
// appropriate entry API declaration macros just #defined above).
STDENTRY DllRegisterServer(void);
STDENTRY DllUnregisterServer(void);
#else // _DLLEXPORT_
// Else if _DLLEXPORT_ is indeed defined then we've been told to export.
#define DLLENTRY EXTERN_C __declspec(dllexport)
#define STDENTRY EXTERN_C __declspec(dllexport) HRESULT STDAPICALLTYPE
#define STDENTRY_(type) EXTERN_C __declspec(dllexport) type STDAPICALLTYPE
#endif // _DLLEXPORT_
#endif // RC_INCLUDE
#endif // FRESERVE_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -