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.

49 lines
763 B

  1. /*++
  2. Copyright (C) 1997-2001 Microsoft Corporation
  3. Module Name:
  4. Abstract:
  5. History:
  6. --*/
  7. //***************************************************************************
  8. //
  9. // PERFHELP.H
  10. //
  11. //
  12. //***************************************************************************
  13. #ifndef _PERFHELP_H_
  14. #define _PERFHELP_H_
  15. class PerfHelper
  16. {
  17. static void GetInstances(
  18. LPBYTE pBuf,
  19. CClassMapInfo *pClassMap,
  20. IWbemObjectSink *pSink
  21. );
  22. static void RefreshInstances(
  23. LPBYTE pBuf,
  24. CNt5Refresher *pRef
  25. );
  26. public:
  27. static BOOL QueryInstances(
  28. CClassMapInfo *pClassMap,
  29. IWbemObjectSink *pSink
  30. );
  31. static BOOL RefreshInstances(
  32. CNt5Refresher *pRef
  33. );
  34. };
  35. #endif