// fltuserstructures.h
typedef struct _FILTER_REPLY_HEADER {
NTSTATUS Status;
ULONGLONG MessageId;
} FILTER_REPLY_HEADER, *PFILTER_REPLY_HEADER;
View the official Windows Driver Kit DDI reference
No description available.
The FILTER_REPLY_HEADER structure contains message reply header information.
Status
Status value to be returned for the original message.
MessageId
Unique ID received in the MessageId field of the original message.
This structure is allocated by a user-mode application. It is a container for a reply that the application sends in response to a message received from a kernel-mode minifilter or minifilter instance.