// ntifs.h
VOID IoWriteErrorLogEntry(
[in] PVOID ElEntry
);
View the official Windows Driver Kit DDI reference
// wdm.h
VOID IoWriteErrorLogEntry(
[in] PVOID ElEntry
);
View the official Windows Driver Kit DDI reference
No description available.
The IoWriteErrorLogEntry routine queues a given error log packet to the system error logging thread.
ElEntry
[in]Pointer to the error log packet the driver has allocated with IoAllocateErrorLogEntry and filled in by the caller.
IoWriteErrorLogEntry frees the error log entry. Drivers must not call IoFreeErrorLogEntry on a log entry that they have already passed to IoWriteErrorLogEntry.
The IoWriteErrorLogEntry routine queues a given error log packet to the system error logging thread.
ElEntry
[in]Pointer to the error log packet the driver has allocated with IoAllocateErrorLogEntry and filled in by the caller.
IoWriteErrorLogEntry frees the error log entry. Drivers must not call IoFreeErrorLogEntry on a log entry that they have already passed to IoWriteErrorLogEntry.