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.
29 lines
741 B
29 lines
741 B
#ifndef __WBEMDELTA_H__
|
|
#define __WBEMDELTA_H__
|
|
|
|
#include "precomp.h"
|
|
#include <reg.h>
|
|
#include <stdio.h>
|
|
|
|
#define SVC_KEY TEXT("System\\CurrentControlSet\\Services")
|
|
#define KNOWN_SERVICES TEXT("KnownSvcs")
|
|
|
|
#define WBEM_REG_ADAP __TEXT("Software\\Microsoft\\WBEM\\CIMOM\\ADAP")
|
|
|
|
#define WBEM_NORESYNCPERF __TEXT("NoResyncPerf")
|
|
#define WBEM_NOSHELL __TEXT("NoShell")
|
|
#define WBEM_WMISETUP __TEXT("WMISetup")
|
|
#define WBEM_ADAPEXTDLL __TEXT("ADAPExtDll")
|
|
|
|
|
|
//
|
|
// version of the function without the actual delta dredge
|
|
//
|
|
/////////////////////////////////////////////////////////////
|
|
|
|
DWORD WINAPI
|
|
DeltaDredge2(DWORD dwNumServicesArgs,
|
|
LPWSTR *lpServiceArgVectors);
|
|
|
|
|
|
#endif /*__WBEMDELTA_H__*/
|