2025-04-27 07:49:33 -04:00

19 lines
458 B
C++

// DeleteInstancePacket.h: interface for the CDeleteInstancePacket class.
//
//////////////////////////////////////////////////////////////////////
#ifndef WMI_XML_DELETE_INSTANCE
#define WMI_XML_DELETE_INSTANCE
class CDeleteInstancePacket : public CXMLClientPacket
{
public:
CDeleteInstancePacket(const WCHAR *pwszObjPath,const WCHAR *pwszNameSpace);
HRESULT GetBody(WCHAR **ppwszBody, DWORD *pdwLengthofPacket=NULL);
};
#endif