#ifndef _NTWMI_H
#include <pshpack1.h>
typedef struct _PERFINFO_DRIVER_COMPLETE_REQUEST
{
//
// Driver major function routine address for the "current" stack location
// on the IRP when it was completed. It is used to identify which driver
// was processing the IRP when the IRP got completed.
//
PVOID RoutineAddr;
//
// Irp field and UniqMatchId is used to match COMPLETE_REQUEST
// and COMPLETE_REQUEST_RET logged for an IRP completion.
//
PVOID Irp;
ULONG UniqMatchId;
} PERFINFO_DRIVER_COMPLETE_REQUEST, *PPERFINFO_DRIVER_COMPLETE_REQUEST;
View code on GitHub
No description available.