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

Windows编程

开发平台:

Visual C++

  1. /*
  2.  * DKOALA1.H
  3.  * Koala Object DLL Server Chapter 5
  4.  *
  5.  * Definitions, classes, and prototypes for a DLL that
  6.  * provides Koala objects to any other object user.
  7.  *
  8.  * Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
  9.  *
  10.  * Kraig Brockschmidt, Microsoft
  11.  * Internet  :  kraigb@microsoft.com
  12.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  13.  */
  14. #ifndef _DKOALA1_H_
  15. #define _DKOALA1_H_
  16. //Get the object definitions
  17. #include "koala.h"
  18. void ObjectDestroyed(void);
  19. //DKOALA.CPP
  20. //This class factory object creates Koala objects.
  21. class CKoalaClassFactory : public IClassFactory
  22.     {
  23.     protected:
  24.         ULONG           m_cRef;
  25.     public:
  26.         CKoalaClassFactory(void);
  27.         ~CKoalaClassFactory(void);
  28.         //IUnknown members
  29.         STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  30.         STDMETHODIMP_(ULONG) AddRef(void);
  31.         STDMETHODIMP_(ULONG) Release(void);
  32.         //IClassFactory members
  33.         STDMETHODIMP         CreateInstance(LPUNKNOWN, REFIID
  34.                                  , PPVOID);
  35.         STDMETHODIMP         LockServer(BOOL);
  36.     };
  37. typedef CKoalaClassFactory *PCKoalaClassFactory;
  38. #endif //_DKOALA1_H_