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

Windows编程

开发平台:

Visual C++

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