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.

38 lines
792 B

  1. /*++ BUILD Version: 0001 // Increment this if a change has global effects
  2. Copyright (c) 2000-2001 Microsoft Corporation
  3. Module Name:
  4. perfutil.h
  5. Abstract:
  6. This file declares some usefule utilities.
  7. Author:
  8. davj 17-May-2000
  9. Revision History:
  10. --*/
  11. #ifndef _PERFUTIL_H_
  12. #define _PERFUTIL_H_
  13. extern WCHAR GLOBAL_STRING[]; // Global command (get all local ctrs)
  14. extern WCHAR FOREIGN_STRING[]; // get data from foreign computers
  15. extern WCHAR COSTLY_STRING[];
  16. extern WCHAR NULL_STRING[];
  17. #define QUERY_GLOBAL 1
  18. #define QUERY_ITEMS 2
  19. #define QUERY_FOREIGN 3
  20. #define QUERY_COSTLY 4
  21. HANDLE MonOpenEventLog ();
  22. VOID MonCloseEventLog ();
  23. DWORD GetQueryType (IN LPWSTR);
  24. BOOL IsNumberInUnicodeList (DWORD, LPWSTR);
  25. #endif //_PERFUTIL_H_