mirror of https://github.com/tongzx/nt5src
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.
47 lines
709 B
47 lines
709 B
/*++
|
|
|
|
Copyright (C) 1998-2001 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
Abstract:
|
|
|
|
History:
|
|
|
|
--*/
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Service.cpp
|
|
//
|
|
// Created by a-dcrews, Oct. 6, 1998
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#include "HiPerStress.h"
|
|
#include "Service.h"
|
|
|
|
CService::CService(WCHAR* wcsNameSpace, IWbemServices* pSvc)
|
|
{
|
|
pSvc->AddRef();
|
|
m_pService = pSvc;
|
|
|
|
wcscpy(m_wcsNameSpace, wcsNameSpace);
|
|
}
|
|
|
|
CService::~CService()
|
|
{
|
|
if (m_pService)
|
|
m_pService->Release();
|
|
}
|
|
|
|
void CService::GetName(WCHAR *wcsNameSpace)
|
|
{
|
|
wcscpy(wcsNameSpace, m_wcsNameSpace);
|
|
}
|
|
|
|
IWbemServices* CService::GetService()
|
|
{
|
|
return m_pService;
|
|
}
|