windows-nt/Source/XPSP1/NT/inetsrv/iis/admin/logui/uiextnd.h

49 lines
821 B
C
Raw Permalink Normal View History

2020-09-26 03:20:57 -05:00
#ifndef _EXTNDLOGUI_H_
#define _EXTNDLOGUI_H_
class CFacExtndLogUI : COleObjectFactory
{
public:
CFacExtndLogUI();
virtual BOOL UpdateRegistry( BOOL bRegister );
};
class CExtndCreator : public CCmdTarget
{
DECLARE_DYNCREATE(CExtndCreator)
virtual LPUNKNOWN GetInterfaceHook(const void* piid);
};
class CImpExtndLogUI : public ILogUIPlugin
{
public:
CImpExtndLogUI();
~CImpExtndLogUI();
virtual HRESULT STDMETHODCALLTYPE OnProperties( IN OLECHAR* pocMachineName, IN OLECHAR* pocMetabasePath );
HRESULT _stdcall
QueryInterface(REFIID riid, void **ppObject);
ULONG _stdcall
AddRef();
ULONG _stdcall
Release();
protected:
private:
ULONG m_dwRefCount;
}; // CImpLogUI
#endif // _EXTNDLOGUI_H_