DUMP_START callback function (ntdddump.h)

The Dump_Start callback routine is called after initializing the dump driver and just before starting the dump write process.

Syntax

DUMP_START DumpStart;

NTSTATUS DumpStart(
  [in] PFILTER_EXTENSION FilterExtension
)
{...}

Parameters

[in] FilterExtension

A pointer to a FILTER_EXTENSION structure.

Return value

If the routine succeeds, it must return STATUS_SUCCESS. Otherwise, it must return one of the error status values that are defined in Ntstatus.h.

Requirements

Requirement Value
Minimum supported client Available starting with Windows Vista and Windows Server 2008.
Target Platform Desktop
Header ntdddump.h (include Ntdddump.h)

See also

FILTER_EXTENSION