30 lines
697 B
C
30 lines
697 B
C
|
#ifndef _MAIN_H
|
||
|
#define _MAIN_H
|
||
|
|
||
|
|
||
|
#include "t_string.h"
|
||
|
#include "Utilities.h"
|
||
|
#include "Persistor.h"
|
||
|
#include "StructureWrappers.h"
|
||
|
#include "StructureWapperHelpers.h"
|
||
|
//#include "ConstantMap.h"
|
||
|
//#include "TCOData.h"
|
||
|
#include "Logger.h"
|
||
|
//#include "Validator.h"
|
||
|
|
||
|
ULONG ProviderCallBack(WMIDPREQUESTCODE RequestCode,
|
||
|
PVOID Context,
|
||
|
OUT ULONG *InOutBufferSize,
|
||
|
OUT PVOID Buffer);
|
||
|
|
||
|
void
|
||
|
InitializeRegisterTraceGuid( PREGISTER_TRACE_GUID RegisterTraceGuid );
|
||
|
|
||
|
ULONG
|
||
|
TraceEvents ( ULONG TraceMode, ULONG TraceGuid, ULONG Count);
|
||
|
|
||
|
ULONG
|
||
|
TraceEventInstances ( ULONG TraceMode, ULONG TraceGuid, ULONG Count);
|
||
|
|
||
|
//int InitializeLogging( LPCTSTR lpctstrTCOFile, CLogger *&pLoggingInfo);
|
||
|
#endif
|