DKOALA1.H
资源名称:MSDN_VC98.zip [点击查看]
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:
Windows编程
开发平台:
Visual C++
- /*
- * DKOALA1.H
- * Koala Object DLL Server Chapter 5
- *
- * Definitions, classes, and prototypes for a DLL that
- * provides Koala objects to any other object user.
- *
- * Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
- *
- * Kraig Brockschmidt, Microsoft
- * Internet : kraigb@microsoft.com
- * Compuserve: >INTERNET:kraigb@microsoft.com
- */
- #ifndef _DKOALA1_H_
- #define _DKOALA1_H_
- //Get the object definitions
- #include "koala.h"
- void ObjectDestroyed(void);
- //DKOALA.CPP
- //This class factory object creates Koala objects.
- class CKoalaClassFactory : public IClassFactory
- {
- protected:
- ULONG m_cRef;
- public:
- CKoalaClassFactory(void);
- ~CKoalaClassFactory(void);
- //IUnknown members
- STDMETHODIMP QueryInterface(REFIID, PPVOID);
- STDMETHODIMP_(ULONG) AddRef(void);
- STDMETHODIMP_(ULONG) Release(void);
- //IClassFactory members
- STDMETHODIMP CreateInstance(LPUNKNOWN, REFIID
- , PPVOID);
- STDMETHODIMP LockServer(BOOL);
- };
- typedef CKoalaClassFactory *PCKoalaClassFactory;
- #endif //_DKOALA1_H_