// iscsimgt.h
typedef struct _MSiSCSI_Eventlog {
ULONG Type;
ULONG LogToEventlog;
ULONG Size;
UCHAR AdditionalData[1];
} MSiSCSI_Eventlog, *PMSiSCSI_Eventlog;
View the official Windows Driver Kit DDI referenceNo description available.
The MSiSCSI_EventLog method is used to log any messages to the event log.
TypeThis specifies the EVENTLOG_MESSAGE_QUALIFIERS type of event log message.
SizeThis specifies the size of the Additional Data field.
AdditionalData[1]This provides additional information associated with this event.
LogToEventlogIf this value it set to 1, the message will be logged to the system event log.
It is recommended that you implement this class.