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

Windows编程

开发平台:

Visual C++

  1. /*+==========================================================================
  2.   File:      FRESERVE.H
  3.   Summary:   Include file for the FRESERVE.DLL dynamic link library.
  4.              Intended primarily for external users of this DLL who exploit
  5.              it via static linkage to the DllRegisterServer and
  6.              DllUnregisterServer exported service calls.
  7.              For a comprehensive tutorial code tour of FRESERVE's contents
  8.              and offerings see the accompanying FRESERVE.TXT file. For
  9.              more specific technical details on the internal workings see
  10.              the comments dispersed throughout the FRESERVE source code.
  11.   Classes:   none.
  12.   Functions: DllRegisterServer, DllUnregisterServer.
  13.   Origin:    4-5-96: atrent - Editor-inheritance from DLLSERVE.H in
  14.                the DLLSERVE OLE Tutorial Code Sample.
  15. ----------------------------------------------------------------------------
  16.   This file is part of the Microsoft OLE Tutorial Code Samples.
  17.   Copyright (C) Microsoft Corporation, 1996.  All rights reserved.
  18.   This source code is intended only as a supplement to Microsoft
  19.   Development Tools and/or on-line documentation.  See these other
  20.   materials for detailed information regarding Microsoft code samples.
  21.   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  22.   KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  23.   IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  24.   PARTICULAR PURPOSE.
  25. ==========================================================================+*/
  26. #if !defined(FRESERVE_H)
  27. #define FRESERVE_H
  28. #if !defined(RC_INCLUDE)
  29. #if !defined(_DLLEXPORT_)
  30. // If _DLLEXPORT_ is NOT defined then the default is to import.
  31. #define DLLENTRY EXTERN_C __declspec(dllimport)
  32. #define STDENTRY EXTERN_C __declspec(dllimport) HRESULT STDAPICALLTYPE
  33. #define STDENTRY_(type) EXTERN_C __declspec(dllimport) type STDAPICALLTYPE
  34. // Here is the list of server APIs offered by the DLL (using the
  35. // appropriate entry API declaration macros just #defined above).
  36. STDENTRY DllRegisterServer(void);
  37. STDENTRY DllUnregisterServer(void);
  38. #else  // _DLLEXPORT_
  39. // Else if _DLLEXPORT_ is indeed defined then we've been told to export.
  40. #define DLLENTRY EXTERN_C __declspec(dllexport)
  41. #define STDENTRY EXTERN_C __declspec(dllexport) HRESULT STDAPICALLTYPE
  42. #define STDENTRY_(type) EXTERN_C __declspec(dllexport) type STDAPICALLTYPE
  43. #endif // _DLLEXPORT_
  44. #endif // RC_INCLUDE
  45. #endif // FRESERVE_H