I wanted to use this function to dump the memory of some processes for analysis, but I didn't find any instructions for this function online.
Asked
Active
Viewed 28 times
1 Answers
1
From the ReactOS source code (/dll/win32/dbghelp/rosstubs.c
):
BOOL WINAPI
DbgHelpCreateUserDump(LPSTR pszFileName,
PDBGHELP_CREATE_USER_DUMP_CALLBACK Callback,
PVOID pUserData)
{
UNIMPLEMENTED;
return FALSE;
}
BOOL WINAPI
DbgHelpCreateUserDumpW(LPWSTR pszFileName,
PDBGHELP_CREATE_USER_DUMP_CALLBACK Callback,
PVOID pUserData)
{
UNIMPLEMENTED;
return FALSE;
}
See also Microsoft's documentation; FreePascal's documentation.
I haven't found anything more than the function's prototype. It does not look like this is part of the dbghelp public API. Consider using MiniDumpWriteDump
instead.

wizzwizz4
- 6,140
- 2
- 26
- 62