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

Windows编程

开发平台:

Visual C++

  1. /*+==========================================================================
  2.   File:      SERVER.H
  3.   Summary:   Internal include file for the FRESERVE.DLL server code
  4.              sample.  Contains class declarations, Resource IDs and
  5.              string macros for internal use in constructing this DLL
  6.              as a COM component server.  Declares the CServer server
  7.              control object class.
  8.              For a comprehensive tutorial code tour of this module's
  9.              contents and offerings see the tutorial FRESERVE.HTM
  10.              file. For more specific technical details on the internal
  11.              workings see the comments dispersed throughout the module's
  12.              source code.
  13.   Classes:   CServer.
  14.   Functions: none
  15.   Origin:    4-5-96: atrent - Editor-inheritance from SERVER.H in
  16.                the DLLSERVE Tutorial Code Sample.
  17. ----------------------------------------------------------------------------
  18.   This file is part of the Microsoft COM Tutorial Code Samples.
  19.   Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  20.   This source code is intended only as a supplement to Microsoft
  21.   Development Tools and/or on-line documentation.  See these other
  22.   materials for detailed information regarding Microsoft code samples.
  23.   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  24.   KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  25.   IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  26.   PARTICULAR PURPOSE.
  27. ==========================================================================+*/
  28. #if !defined(SERVER_H)
  29. #define SERVER_H
  30. // Error-related String Identifiers.
  31. #define IDS_ASSERT_FAIL             2200
  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 FRESERVE modules to get at the globals.
  61. extern CServer* g_pServer;
  62. #endif // SERVER_H