home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tricks of the Windows Gam…ming Gurus (2nd Edition)
/
Disc2.iso
/
msdn_vcb
/
samples
/
vc98
/
sdk
/
com
/
inole2
/
chap14
/
beeper2
/
dbeeper.h
< prev
next >
Wrap
C/C++ Source or Header
|
1995-05-03
|
1KB
|
51 lines
/*
* DBEEPER.H
* Beeper Automation Object Chapter 14
*
* Definitions, classes, and prototypes for the server of Beeper
* objects.
*
* Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
*
* Kraig Brockschmidt, Microsoft
* Internet : kraigb@microsoft.com
* Compuserve: >INTERNET:kraigb@microsoft.com
*/
#ifndef _DBEEPER_H_
#define _DBEEPER_H_
//Get the object definitions
#include "beeper.h"
//DBEEPER.CPP
void ObjectDestroyed(void);
//This class factory object creates other objects
class CBeeperFactory : public IClassFactory
{
protected:
ULONG m_cRef;
public:
CBeeperFactory(void);
~CBeeperFactory(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 CBeeperFactory *PCBeeperFactory;
#endif //_DBEEPER_H_