Commit 2884205d authored by Vitaly Lipatov's avatar Vitaly Lipatov Committed by Alexandre Julliard

include: Add PERF_DATA_BLOCK struct definition.

parent 072c58e3
...@@ -67,4 +67,25 @@ ...@@ -67,4 +67,25 @@
#define PERF_DETAIL_EXPERT 300 #define PERF_DETAIL_EXPERT 300
#define PERF_DETAIL_WIZARD 400 #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_ */ #endif /* _WINPERF_ */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment