home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / tutsamp / dllserve / server.h < prev    next >
C/C++ Source or Header  |  1997-08-30  |  3KB  |  96 lines

  1. /*+==========================================================================
  2.   File:      SERVER.H
  3.  
  4.   Summary:   Internal include file for the DLLSERVE.DLL server code
  5.              sample.  Contains class declarations, Resource IDs and
  6.              string macros for internal use in constructing this DLL
  7.              as a COM component server.  Declares the CServer server
  8.              control object class.
  9.  
  10.              For a comprehensive tutorial code tour of this module's
  11.              contents and offerings see the tutorial DLLSERVE.HTM file.
  12.              For more specific technical details on the internal workings
  13.              see the comments dispersed throughout the module's source code.
  14.  
  15.   Classes:   CServer.
  16.  
  17.   Functions: none
  18.  
  19.   Origin:    9-11-95: atrent - Editor-inheritance from CAR.H in
  20.                the COMOBJ Tutorial Code Sample.
  21.  
  22. ----------------------------------------------------------------------------
  23.   This file is part of the Microsoft COM Tutorial Code Samples.
  24.  
  25.   Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  26.  
  27.   This source code is intended only as a supplement to Microsoft
  28.   Development Tools and/or on-line documentation.  See these other
  29.   materials for detailed information regarding Microsoft code samples.
  30.  
  31.   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  32.   KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  33.   IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  34.   PARTICULAR PURPOSE.
  35. ==========================================================================+*/
  36.  
  37.  
  38. #if !defined(SERVER_H)
  39. #define SERVER_H
  40.  
  41. // String Macros.
  42. #define ABOUT_TITLE_STR "DLLSERVE: Tutorial Code Sample"
  43.  
  44. // Dialog IDs.
  45. #define IDD_ABOUTBOX                1000
  46.  
  47. // Error-related String Identifiers.
  48. #define IDS_ASSERT_FAIL             2200
  49.  
  50.  
  51. #ifdef __cplusplus
  52.  
  53. /*C+C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C
  54.   Class:    CServer
  55.  
  56.   Summary:  Class to encapsulate control of this COM server (eg, handle
  57.             Lock and Object counting, encapsulate otherwise global data).
  58.  
  59.   Methods:  none
  60. C---C---C---C---C---C---C---C---C---C---C---C---C---C---C---C---C---C---C-C*/
  61. class CServer
  62. {
  63.   public:
  64.     CServer(void);
  65.     ~CServer(void);
  66.  
  67.     void Lock(void);
  68.     void Unlock(void);
  69.     void ObjectsUp(void);
  70.     void ObjectsDown(void);
  71.  
  72.     // A place to store the handle to loaded instance of this DLL module.
  73.     HINSTANCE m_hDllInst;
  74.  
  75.     // A place to store a client's parent window.
  76.     HWND m_hWndParent;
  77.  
  78.     // A Pointer to a Message Box object.
  79.     CMsgBox* m_pMsgBox;
  80.  
  81.     // Global DLL Server living Object count.
  82.     LONG m_cObjects;
  83.  
  84.     // Global DLL Server Client Lock count.
  85.     LONG m_cLocks;
  86. };
  87.  
  88. #endif // __cplusplus
  89.  
  90. // Allow other internal DLLSERVE modules to get at the globals.
  91. extern CServer* g_pServer;
  92. extern CMsgLog* g_pMsgLog;
  93.  
  94.  
  95. #endif // SERVER_H
  96.