MiniDumpWriteDump

[DllImport("Dbghelp.dll", SetLastError = true)]
public static extern bool MiniDumpWriteDump(
   IntPtr hProcess,
   uint ProcessId,
   SafeHandle hFile,
   int DumpType,
   ref MINIDUMP_EXCEPTION_INFORMATION ExceptionParam,
   IntPtr UserStreamParam,
   IntPtr CallbackParam
);

Microsoft documentation: Link

Last updated