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.

55 lines
697 B

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. All rights reserved.
  4. Module Name:
  5. perfp.hxx
  6. Abstract:
  7. Internal perf header file
  8. Author:
  9. Albert Ting (AlbertT) 22-Dec-1996
  10. Revision History:
  11. --*/
  12. #ifndef PERFP_HXX
  13. #define PERFP_HXX
  14. const UINT kMaxMergeStrings = 0x10;
  15. typedef struct GLOBAL_PERF_DATA {
  16. UINT cOpens;
  17. PPERF_DATA_DEFINITION ppdd;
  18. HANDLE hEventLog;
  19. UINT uLogLevel;
  20. } *PGLOBAL_PERF_DATA;
  21. extern GLOBAL_PERF_DATA gpd;
  22. extern LPCTSTR gszAppName;
  23. BOOL
  24. Pfp_bNumberInUnicodeList (
  25. DWORD dwNumber,
  26. LPCWSTR lpwszUnicodeList
  27. );
  28. VOID
  29. Pfp_vOpenEventLog (
  30. VOID
  31. );
  32. VOID
  33. Pfp_vCloseEventLog(
  34. VOID
  35. );
  36. #endif // ifdef PERFP_HXX