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.

41 lines
666 B

  1. /*++
  2. Copyright (c) 1998 Microsoft Corporation
  3. Module Name:
  4. perfutil.h
  5. Abstract:
  6. The header file that defines the constants and variables used in
  7. the functions defined in the file perfutil.c
  8. Environment:
  9. User Mode Service
  10. Revision History:
  11. --*/
  12. #ifndef _PERFUTIL_H_
  13. #define _PERFUTIL_H_
  14. extern WCHAR GLOBAL_STRING[];
  15. extern WCHAR FOREIGN_STRING[];
  16. extern WCHAR COSTLY_STRING[];
  17. extern WCHAR NULL_STRING[];
  18. #define QUERY_GLOBAL 1
  19. #define QUERY_ITEMS 2
  20. #define QUERY_FOREIGN 3
  21. #define QUERY_COSTLY 4
  22. // Signatures of functions implemented in perfutil.c
  23. DWORD GetQueryType (IN LPWSTR);
  24. BOOL IsNumberInUnicodeList (DWORD, LPWSTR);
  25. #endif