// ntdddump.h
DUMP_FINISH DumpFinish;
NTSTATUS DumpFinish(
[in] PFILTER_EXTENSION FilterExtension
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The Dump_Finish callback routine is called after writing all the dump data. The dump port driver generally flushes the cache to ensure the data is stored on the storage media before the system powers down.
FilterExtension [in]A pointer to a FILTER_EXTENSION structure.
If the routine succeeds, it must return STATUS_SUCCESS. Otherwise, it must return one of the error status values defined in Ntstatus.h.