You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.3 KiB
48 lines
1.3 KiB
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
|
|
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
|
|
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
|
|
// PARTICULAR PURPOSE.
|
|
//
|
|
// Copyright 1998 Microsoft Corporation. All Rights Reserved.
|
|
//
|
|
// Author: Scott Roberts, Microsoft Developer Support - Internet Client SDK
|
|
//
|
|
// Portions of this code were taken from the bandobj sample that comes
|
|
// with the Internet Client SDK for Internet Explorer 4.0x
|
|
//
|
|
//
|
|
// ClsFact.h - CClassFactory declaration
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef __ClsFact_h__
|
|
#define __ClsFact_h__
|
|
|
|
#include <windows.h>
|
|
#include "Globals.h"
|
|
#include "blhost.h"
|
|
|
|
class CClassFactory : public IClassFactory
|
|
{
|
|
public:
|
|
CClassFactory(CLSID);
|
|
~CClassFactory();
|
|
|
|
//IUnknown methods
|
|
STDMETHOD(QueryInterface)(REFIID iid, LPVOID* ppvObject);
|
|
STDMETHOD_(ULONG, AddRef)();
|
|
STDMETHOD_(ULONG, Release)();
|
|
|
|
//IClassFactory methods
|
|
STDMETHOD(CreateInstance)(LPUNKNOWN pUnkOuter, REFIID riid, LPVOID* ppvObject);
|
|
STDMETHOD(LockServer)(BOOL fLock);
|
|
|
|
protected:
|
|
LONG m_cRef;
|
|
|
|
private:
|
|
CLSID m_clsidObject;
|
|
};
|
|
|
|
#endif // __ClsFact_h__
|