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.
33 lines
815 B
33 lines
815 B
/*
|
|
* E V E N T L O G . H
|
|
*
|
|
* Event log interface
|
|
*
|
|
* Copyright 1986-1997 Microsoft Corporation, All Rights Reserved
|
|
*/
|
|
|
|
#ifndef _EVNTLOG_H_
|
|
#define _EVNTLOG_H_
|
|
|
|
EXTERN_C const WCHAR gc_wszSignature[];
|
|
|
|
VOID LogEventW( DWORD dwEventID,
|
|
WORD wEventType,
|
|
WORD wcDataStrings,
|
|
LPCWSTR * plpwszDataStrings,
|
|
DWORD dwcbRawData,
|
|
LPVOID lpvRawData,
|
|
WORD wEventCategory=0);
|
|
|
|
VOID LogEvent( DWORD dwEventID,
|
|
WORD wEventType,
|
|
WORD wcDataStrings,
|
|
LPCSTR * plpszDataStrings,
|
|
DWORD dwcbRawData,
|
|
LPVOID lpvRawData,
|
|
WORD wEventCategory=0);
|
|
|
|
STDAPI EventLogDllRegisterServer( LPCWSTR lpwszDllPath, DWORD dwCategories = 0 );
|
|
STDAPI EventLogDllUnregisterServer();
|
|
|
|
#endif // _EVNTLOG_H_
|