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.

43 lines
830 B

  1. /**********************************************************************/
  2. /** Microsoft Windows NT **/
  3. /** Copyright(c) Microsoft Corp., 1993 **/
  4. /**********************************************************************/
  5. /*
  6. metabase.hxx
  7. This module contains a class that supports openning the metabase
  8. and keeping it open for the life of the IISAdmin Service.
  9. FILE HISTORY:
  10. emilyk - created
  11. */
  12. #ifndef _CIISAdminMB_HXX_
  13. #define _CIISAdminMB_HXX_
  14. class CIISAdminMB
  15. {
  16. public:
  17. CIISAdminMB::CIISAdminMB() :
  18. m_pMdObject(NULL)
  19. {}
  20. CIISAdminMB::~CIISAdminMB()
  21. {
  22. DBG_ASSERT ( m_pMdObject == NULL );
  23. }
  24. HRESULT
  25. InitializeMetabase();
  26. VOID
  27. TerminateMetabase();
  28. private:
  29. IMDCOM* m_pMdObject;
  30. };
  31. #endif