mirror of https://github.com/tongzx/nt5src
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.
42 lines
632 B
42 lines
632 B
/*++
|
|
|
|
Copyright (C) 1996-1999 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
WMICLASS.H
|
|
|
|
History:
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef WMICLASS_H
|
|
#define WMICLASS_H
|
|
|
|
class CWMILocClassFactory : public IClassFactory, public CLObject
|
|
{
|
|
public:
|
|
CWMILocClassFactory();
|
|
|
|
#ifdef _DEBUG
|
|
void AssertValid(void) const;
|
|
void Dump(CDumpContext &) const;
|
|
#endif
|
|
|
|
STDMETHOD_(ULONG, AddRef)();
|
|
STDMETHOD_(ULONG, Release)();
|
|
STDMETHOD(QueryInterface)(REFIID iid, LPVOID* ppvObj);
|
|
|
|
STDMETHOD(CreateInstance)(THIS_ LPUNKNOWN, REFIID, LPVOID *);
|
|
STDMETHOD(LockServer)(THIS_ BOOL);
|
|
|
|
~CWMILocClassFactory();
|
|
|
|
private:
|
|
UINT m_uiRefCount;
|
|
|
|
};
|
|
|
|
|
|
#endif // WMICLASS_H
|