include: Add PERF_DATA_BLOCK struct definition.

Signed-off-by: Vitaly Lipatov <lav@etersoft.ru>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Vitaly Lipatov 2017-03-22 14:03:45 +03:00 committed by Alexandre Julliard
parent 072c58e322
commit 2884205db3
1 changed files with 21 additions and 0 deletions

View File

@ -67,4 +67,25 @@
#define PERF_DETAIL_EXPERT 300
#define PERF_DETAIL_WIZARD 400
/* Performance data structure header
* returned in answer to HKEY_PERFORMANCE_DATA request
*/
typedef struct _PERF_DATA_BLOCK {
WCHAR Signature[4];
DWORD LittleEndian;
DWORD Version;
DWORD Revision;
DWORD TotalByteLength;
DWORD HeaderLength;
DWORD NumObjectTypes;
DWORD DefaultObject;
SYSTEMTIME SystemTime;
LARGE_INTEGER PerfTime;
LARGE_INTEGER PerfFreq;
LARGE_INTEGER PerfTime100nSec;
DWORD SystemNameLength;
DWORD SystemNameOffset;
} PERF_DATA_BLOCK, *PPERF_DATA_BLOCK, *LPPERF_DATA_BLOCK;
#endif /* _WINPERF_ */