MiniDumpCallback Callback Function
An application-defined callback function used with MiniDumpWriteDump. It receives extended minidump information.
The MINIDUMP_CALLBACK_ROUTINE type defines a pointer to this callback function. MiniDumpCallback is a placeholder for the application-defined function name.
BOOL CALLBACK MiniDumpCallback( [in] PVOID CallbackParam, [in] const PMINIDUMP_CALLBACK_INPUT CallbackInput, [in, out] PMINIDUMP_CALLBACK_OUTPUT CallbackOutput );
Parameters
- CallbackParam
-
An application-defined parameter value.
- CallbackInput
-
A pointer to a MINIDUMP_CALLBACK_INPUT structure that specifies extended minidump information.
- CallbackOutput
-
A pointer to a MINIDUMP_CALLBACK_OUTPUT structure that receives application-defined information from the callback function.
Return Value
If the function succeeds, return TRUE; otherwise, return FALSE.
Requirements
Redistributable |
Requires DbgHelp.dll 5.1 or later. |
---|---|
Header |
Declared in DbgHelp.h. |
See Also
DbgHelp FunctionsMINIDUMP_CALLBACK_INFORMATION
MiniDumpWriteDump
Send comments about this topic to Microsoft
Build date: 9/25/2007
© 2007 Microsoft Corporation. All rights reserved.