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

/*++
Copyright (c) 1996 Microsoft Corporation
All rights reserved.
Module Name:
perfp.hxx
Abstract:
Internal perf header file
Author:
Albert Ting (AlbertT) 22-Dec-1996
Revision History:
--*/
#ifndef PERFP_HXX
#define PERFP_HXX
const UINT kMaxMergeStrings = 0x10;
typedef struct GLOBAL_PERF_DATA {
UINT cOpens;
PPERF_DATA_DEFINITION ppdd;
HANDLE hEventLog;
UINT uLogLevel;
} *PGLOBAL_PERF_DATA;
extern GLOBAL_PERF_DATA gpd;
extern LPCTSTR gszAppName;
BOOL
Pfp_bNumberInUnicodeList (
DWORD dwNumber,
LPCWSTR lpwszUnicodeList
);
VOID
Pfp_vOpenEventLog (
VOID
);
VOID
Pfp_vCloseEventLog(
VOID
);
#endif // ifdef PERFP_HXX