// 61883.h
typedef struct _SET_FCP_NOTIFY {
IN ULONG Flags;
IN NODE_ADDRESS NodeAddress;
} SET_FCP_NOTIFY, *PSET_FCP_NOTIFY;
View the official Windows Driver Kit DDI referenceNo description available.
This structure is used for FCP notification. The SetFcpNotify request registers a client driver notification of FCP requests or responses, or cancels a prior registration. A driver must register for FCP notifications in order to retrieve requests or responses. The driver is responsible for canceling registration by sending a SetFcpNotify request with DEREGISTER_FCP_NOTIFY set in Flags before the system unloads the driver.
FlagsOn input, specifies the notification requested by the driver. The driver can register by setting Flags with either or both of the following:
REGISTER_FCP_RESPONSE_NOTIFY
REGISTER_FCP_REQUEST_NOTIFY
The driver can cancel notification by setting Flags with DEREGISTER_FCP_NOTIFY, which clears REGISTER_FCP_RESPONSE_NOTIFY and REGISTER_FCP_REQUEST_NOTIFY.
NodeAddressReserved for use by the operating system.
If successful, the IEC-61883 protocol driver sets Irp->IoStatus.Status to STATUS_SUCCESS.