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.
19 lines
433 B
19 lines
433 B
#ifndef _LODCTR_MOFCOMP_H
|
|
#define _LODCTR_MOFCOMP_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define WMI_LODCTR_EVENT 1
|
|
#define WMI_UNLODCTR_EVENT 2
|
|
|
|
|
|
DWORD SignalWmiWithNewData ( DWORD dwEventId );
|
|
DWORD LodctrCompileMofFile ( LPCWSTR szComputerName, LPCWSTR szMofFileName );
|
|
DWORD LodctrCompileMofBuffer ( LPCWSTR szComputerName, LPVOID pMofBuffer, DWORD dwBufSize );
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif //_LODCTR_MOFCOMP_H
|