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

Windows编程

开发平台:

Visual C++

  1. /*+==========================================================================
  2.   File:      SERVER.H
  3.   Summary:   Internal include file for the PERTEXT.DLL server code sample.
  4.              Contains class declarations, resource IDs and string macros
  5.              for internal use in constructing this DLL as a COM component
  6.              server.  Declares the CServer server control object class.
  7.              The CThreaded OwnThis mechanism is used to ensure mutually
  8.              exclusive access to this CServer object by multiple threads.
  9.              For a comprehensive tutorial code tour of this module's
  10.              contents and offerings see the tutorial PERTEXT.HTM
  11.              file. For more specific technical details on the internal
  12.              workings see the comments dispersed throughout the module's
  13.              source code.
  14.   Classes:   CServer.
  15.   Functions: .
  16.   Origin:    5-20-97: atrent - Editor-inheritance from SERVER.H in
  17.                the DLLSERVE Tutorial Code Sample.
  18. ----------------------------------------------------------------------------
  19.   This file is part of the Microsoft COM Tutorial Code Samples.
  20.   Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  21.   This source code is intended only as a supplement to Microsoft
  22.   Development Tools and/or on-line documentation.  See these other
  23.   materials for detailed information regarding Microsoft code samples.
  24.   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  25.   KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  26.   IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  27.   PARTICULAR PURPOSE.
  28. ==========================================================================+*/
  29. #if !defined(SERVER_H)
  30. #define SERVER_H
  31. #ifdef __cplusplus
  32. /*C+C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C
  33.   Class:    CServer
  34.   Summary:  Class to encapsulate control of this COM server (eg, handle
  35.             Lock and Object counting, encapsulate otherwise global data).
  36.   Methods:  none
  37. C---C---C---C---C---C---C---C---C---C---C---C---C---C---C---C---C---C---C-C*/
  38. class CServer : public CThreaded
  39. {
  40.   public:
  41.     CServer(void);
  42.     ~CServer(void);
  43.     // Methods for server lifetime control: object counts and lock counts.
  44.     void Lock(void);
  45.     void Unlock(void);
  46.     void ObjectsUp(void);
  47.     void ObjectsDown(void);
  48.     HRESULT CanUnloadNow(void);
  49.     // A place to store the handle to loaded instance of this DLL module.
  50.     HINSTANCE m_hDllInst;
  51.     // A place to store a client's parent window.
  52.     HWND m_hWndParent;
  53.     // Global DLL Server living Object count.
  54.     LONG m_cObjects;
  55.     // Global DLL Server Client Lock count.
  56.     LONG m_cLocks;
  57. };
  58. #endif // __cplusplus
  59. // Allow other internal PERTEXT modules to get at the globals.
  60. extern CServer* g_pServer;
  61. #endif // SERVER_H