mirror of
https://github.com/reactos/reactos.git
synced 2025-01-02 20:43:18 +00:00
fix definition of EVENT_TRACE_HEADER
svn path=/trunk/; revision=10627
This commit is contained in:
parent
65c3f8c5a6
commit
7ab9404fc9
1 changed files with 13 additions and 8 deletions
|
@ -1,5 +1,5 @@
|
|||
|
||||
/* $Id: zw.h,v 1.29 2004/08/20 21:23:49 navaraf Exp $
|
||||
/* $Id: zw.h,v 1.30 2004/08/21 13:20:25 tamlin Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -56,8 +56,13 @@ typedef struct _EVENT_BASIC_INFORMATION
|
|||
// wmi trace event data
|
||||
typedef struct _EVENT_TRACE_HEADER {
|
||||
USHORT Size;
|
||||
UCHAR HeaderType;
|
||||
UCHAR MarkerFlags;
|
||||
union {
|
||||
USHORT FieldTypeFlags;
|
||||
struct {
|
||||
UCHAR HeaderType;
|
||||
UCHAR MarkerFlags;
|
||||
};
|
||||
};
|
||||
union {
|
||||
ULONG Version;
|
||||
struct {
|
||||
|
@ -66,11 +71,12 @@ typedef struct _EVENT_TRACE_HEADER {
|
|||
USHORT Version;
|
||||
} Class;
|
||||
};
|
||||
LARGE_INTEGER ThreadId;
|
||||
ULONG ThreadId;
|
||||
ULONG ProcessId;
|
||||
LARGE_INTEGER TimeStamp;
|
||||
union {
|
||||
GUID Guid;
|
||||
LARGE_INTEGER GuidPtr;
|
||||
union {
|
||||
GUID Guid;
|
||||
ULONGLONG GuidPtr;
|
||||
};
|
||||
union {
|
||||
struct {
|
||||
|
@ -83,7 +89,6 @@ typedef struct _EVENT_TRACE_HEADER {
|
|||
};
|
||||
ULONG64 ProcessorTime;
|
||||
};
|
||||
LARGE_INTEGER ProcessorTime;
|
||||
} EVENT_TRACE_HEADER, *PEVENT_TRACE_HEADER;
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue