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.
 
 
 
 
 
 

33 lines
650 B

//******************************************************************************
//
// NEWOBJ.H
//
// Copyright (C) 1996-1999 Microsoft Corporation
//
//******************************************************************************
#ifndef __WBEM_NEW_OBJ__H_
#define __WBEM_NEW_OBJ__H_
#include <sync.h>
#include <wbemcomn.h>
#include <wbemidl.h>
#include <wbemint.h>
class CInstanceManager
{
protected:
CCritSec m_cs;
CFlexQueue m_Available;
public:
~CInstanceManager()
{
Clear();
}
void Clear();
_IWmiObject* Clone(_IWmiObject* pOld);
static void Delete(void* pArg, _IWmiObject* p);
};
#endif