#ifndef _NTWMI_H
//
// Data Block structure for ETW notification
//
typedef enum _ETW_NOTIFICATION_TYPE
{
EtwNotificationTypeNoReply = 1, // No data block reply
EtwNotificationTypeLegacyEnable, // Enable notification for RegisterTraceGuids
EtwNotificationTypeEnable, // Enable notification for EventRegister
EtwNotificationTypePrivateLogger, // Private logger notification for ETW
EtwNotificationTypePerflib, // PERFLIB V2 counter data request/delivery block
EtwNotificationTypeAudio, // Private notification for audio policy
EtwNotificationTypeSession, // Session related ETW notifications
EtwNotificationTypeReserved, // For internal use (test)
EtwNotificationTypeCredentialUI, // Private notification for media center elevation detection
EtwNotificationTypeInProcSession, // Private in-proc session related ETW notifications
EtwNotificationTypeMax
} ETW_NOTIFICATION_TYPE;
View code on GitHub
No description available.