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.

40 lines
891 B

  1. /*
  2. Copyright (c) 1992 Microsoft Corporation
  3. Module Name:
  4. perfutil.h
  5. Abstract:
  6. This file supports routines used to parse and
  7. create Performance Monitor Data Structures.
  8. It actually supports Performance Object types with
  9. multiple instances
  10. Author:
  11. Russ Blake 7/30/92
  12. Revision History:
  13. 11/1/95 Dave Van Horn Trim out unused.
  14. --*/
  15. #ifndef _PERFUTIL_H_
  16. #define _PERFUTIL_H_
  17. extern WCHAR GLOBAL_STRING[]; // Global command (get all local ctrs)
  18. extern WCHAR FOREIGN_STRING[]; // get data from foreign computers
  19. extern WCHAR COSTLY_STRING[];
  20. extern WCHAR NULL_STRING[];
  21. #define QUERY_GLOBAL 1
  22. #define QUERY_ITEMS 2
  23. #define QUERY_FOREIGN 3
  24. #define QUERY_COSTLY 4
  25. /*
  26. * The definition of the routines in perfutil.c,
  27. */
  28. DWORD GetQueryType(IN LPWSTR);
  29. BOOL IsNumberInUnicodeList(DWORD, LPWSTR);
  30. #endif //_PERFUTIL_H_