DelegatesMiniDumpCallbackRoutine Delegate

An application-defined callback function used with MiniDumpWriteDump(IntPtr, Int32, SafeHandle, MiniDumpType, MiniDumpExceptionInformation, IntPtr, IntPtr). It receives extended minidump information.

Definition

Namespace: DevCase.Win32.Delegates
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public delegate bool MiniDumpCallbackRoutine(
	IntPtr callbackParam,
	IntPtr callbackInput,
	IntPtr callbackOutput
)

Parameters

callbackParam  IntPtr
An application-defined parameter value.
callbackInput  IntPtr
A pointer to a MINIDUMP_CALLBACK_INPUT structure that specifies extended minidump information.
callbackOutput  IntPtr
A pointer to a MINIDUMP_CALLBACK_OUTPUT structure that receives application-defined information from the callback function.

Return Value

Boolean
If the function succeeds, return ; otherwise, return

Remarks

See Also