// wdm.h
VOID IoFreeErrorLogEntry(
[in] PVOID ElEntry
);
View the official Windows Driver Kit DDI reference
No description available.
The IoFreeErrorLogEntry routine frees an unused error log entry.
ElEntry
[in]Pointer to an error log packet allocated by IoAllocateErrorLogEntry.
Drivers use IoFreeErrorLogEntry to free an error log entry allocated by IoAllocateErrorLogEntry. IoWriteErrorLogEntry also frees any error log entries passed to it, so drivers must not call both on the same log entry.