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.

59 lines
870 B

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. faxperf.h
  5. Abstract:
  6. This file defines the fax perfmon dll interface.
  7. Author:
  8. Wesley Witt (wesw) 22-Aug-1996
  9. Environment:
  10. User Mode
  11. --*/
  12. #ifndef _FAXPERF_
  13. #define _FAXPERF_
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. #define FAXPERF_SHARED_MEMORY TEXT("FaxPerfCounters")
  18. typedef struct _FAX_PERF_COUNTERS {
  19. DWORD InboundBytes;
  20. DWORD InboundFaxes;
  21. DWORD InboundPages;
  22. DWORD InboundMinutes;
  23. DWORD InboundFailedReceive;
  24. DWORD OutboundBytes;
  25. DWORD OutboundFaxes;
  26. DWORD OutboundPages;
  27. DWORD OutboundMinutes;
  28. DWORD OutboundFailedConnections;
  29. DWORD OutboundFailedXmit;
  30. DWORD TotalBytes;
  31. DWORD TotalFaxes;
  32. DWORD TotalPages;
  33. DWORD TotalMinutes;
  34. } FAX_PERF_COUNTERS, *PFAX_PERF_COUNTERS;
  35. #ifdef __cplusplus
  36. }
  37. #endif
  38. #endif