Source code of Windows XP (NT5)
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.
|
|
/**********************************************************************/ /** Microsoft Windows NT **/ /** Copyright(c) Microsoft Corp., 1993 **/ /**********************************************************************/
/*
metabase.hxx
This module contains a class that supports openning the metabase and keeping it open for the life of the IISAdmin Service.
FILE HISTORY: emilyk - created */
#ifndef _CIISAdminMB_HXX_
#define _CIISAdminMB_HXX_
class CIISAdminMB { public:
CIISAdminMB::CIISAdminMB() : m_pMdObject(NULL) {}
CIISAdminMB::~CIISAdminMB() { DBG_ASSERT ( m_pMdObject == NULL ); }
HRESULT InitializeMetabase();
VOID TerminateMetabase();
private:
IMDCOM* m_pMdObject; };
#endif
|