Leaked source code of windows server 2003
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

  1. /*
  2. * E V E N T L O G . H
  3. *
  4. * Event log interface
  5. *
  6. * Copyright 1986-1997 Microsoft Corporation, All Rights Reserved
  7. */
  8. #ifndef _EVNTLOG_H_
  9. #define _EVNTLOG_H_
  10. EXTERN_C const WCHAR gc_wszSignature[];
  11. VOID LogEventW( DWORD dwEventID,
  12. WORD wEventType,
  13. WORD wcDataStrings,
  14. LPCWSTR * plpwszDataStrings,
  15. DWORD dwcbRawData,
  16. LPVOID lpvRawData,
  17. WORD wEventCategory=0);
  18. VOID LogEvent( DWORD dwEventID,
  19. WORD wEventType,
  20. WORD wcDataStrings,
  21. LPCSTR * plpszDataStrings,
  22. DWORD dwcbRawData,
  23. LPVOID lpvRawData,
  24. WORD wEventCategory=0);
  25. STDAPI EventLogDllRegisterServer( LPCWSTR lpwszDllPath, DWORD dwCategories = 0 );
  26. STDAPI EventLogDllUnregisterServer();
  27. #endif // _EVNTLOG_H_