#ifndef _NTWMI_H
typedef struct _ETW_NOTIFICATION_HEADER
{
ETW_NOTIFICATION_TYPE NotificationType; // Notification type
ULONG NotificationSize; // Notification size in bytes
ULONG Offset; // Offset to the next notification
BOOLEAN ReplyRequested; // Reply Requested
ULONG Timeout; // Timeout in milliseconds when requesting reply
union
{
ULONG ReplyCount; // Out to sender: the number of notifications sent
ULONG NotifyeeCount; // Out to notifyee: the order during notification
};
ULONGLONG Reserved2;
ULONG TargetPID;
ULONG SourcePID;
GUID DestinationGuid; // Destination GUID
GUID SourceGuid; // Source GUID
} ETW_NOTIFICATION_HEADER, *PETW_NOTIFICATION_HEADER;
View code on GitHub
No description available.