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.

54 lines
907 B

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1998, Microsoft Corp. All rights reserved.
  4. //
  5. // FILE
  6. //
  7. // stats.h
  8. //
  9. // SYNOPSIS
  10. //
  11. // Declares functions for accessing the statistics in shared memory.
  12. //
  13. // MODIFICATION HISTORY
  14. //
  15. // 09/10/1998 Original version.
  16. // 02/18/2000 Added proxy statistics.
  17. //
  18. ///////////////////////////////////////////////////////////////////////////////
  19. #ifndef _STATS_H_
  20. #define _STATS_H_
  21. #if _MSC_VER >= 1000
  22. #pragma once
  23. #endif
  24. #include <iasinfo.h>
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28. extern RadiusStatistics* theStats;
  29. extern RadiusProxyStatistics* theProxy;
  30. BOOL
  31. WINAPI
  32. StatsOpen( VOID );
  33. VOID
  34. WINAPI
  35. StatsClose( VOID );
  36. VOID
  37. WINAPI
  38. StatsLock( VOID );
  39. VOID
  40. WINAPI
  41. StatsUnlock( VOID );
  42. #ifdef __cplusplus
  43. }
  44. #endif
  45. #endif // _STATS_H_