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.

60 lines
1.1 KiB

  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("Global\\FaxPerfCounters") // We use the global kernel object name space.
  18. // See Terminal Services and kernel objects name space
  19. typedef struct _FAX_PERF_COUNTERS {
  20. DWORD InboundBytes;
  21. DWORD InboundFaxes;
  22. DWORD InboundPages;
  23. DWORD InboundMinutes;
  24. DWORD InboundFailedReceive;
  25. DWORD OutboundBytes;
  26. DWORD OutboundFaxes;
  27. DWORD OutboundPages;
  28. DWORD OutboundMinutes;
  29. DWORD OutboundFailedConnections;
  30. DWORD OutboundFailedXmit;
  31. DWORD TotalBytes;
  32. DWORD TotalFaxes;
  33. DWORD TotalPages;
  34. DWORD TotalMinutes;
  35. } FAX_PERF_COUNTERS, *PFAX_PERF_COUNTERS;
  36. #ifdef __cplusplus
  37. }
  38. #endif
  39. #endif