#ifndef _NTWMI_H
//
// Structure used to pass user log messages to the kernel
//
typedef struct DECLSPEC_ALIGN(8) _MESSAGE_TRACE_USER
{
MESSAGE_TRACE_HEADER MessageHeader;
GUID MessageGuid;
ULONG MessageFlags;
ULONG DataSize;
ULONG64 Data;
} MESSAGE_TRACE_USER, *PMESSAGE_TRACE_USER;
View code on GitHub
No description available.