Source code of Windows XP (NT5)
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.

58 lines
737 B

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. faxevent.h
  5. Abstract:
  6. This is the main fax service header file. All
  7. source modules should include this file ONLY.
  8. Author:
  9. Wesley Witt (wesw) 16-Jan-1996
  10. Revision History:
  11. --*/
  12. #ifndef _FAXEVENT_
  13. #define _FAXEVENT_
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. BOOL WINAPI
  18. InitializeEventLog(
  19. IN HANDLE HeapHandle,
  20. IN PREG_FAX_SERVICE FaxReg,
  21. IN PFAX_LOG_CATEGORY DefaultCategories,
  22. IN int DefaultCategoryCount
  23. );
  24. VOID WINAPI
  25. RefreshEventLog(
  26. PREG_FAX_LOGGING FaxEvent
  27. );
  28. BOOL WINAPI
  29. FaxLog(
  30. DWORD Category,
  31. DWORD Level,
  32. DWORD StringCount,
  33. DWORD FormatId,
  34. ...
  35. );
  36. #ifdef __cplusplus
  37. }
  38. #endif
  39. #endif