Commit d382828f authored by Magnus Hagander's avatar Magnus Hagander

Remove thread dumping constant that requires newer Platform SDK

Since we're not multithreaded it only provides marginally useful
information, and it does require a newer version of the Platform SDK
than we target. We may want to reconsider this in the future along
with a fix for MinGW.
parent 1b19e2c0
......@@ -132,11 +132,6 @@ crashDumpHandler(struct _EXCEPTION_POINTERS *pExceptionInfo)
dumpType |= MiniDumpWithIndirectlyReferencedMemory |
MiniDumpWithPrivateReadWriteMemory;
}
if (GetProcAddress(hDll, "SymFromIndex") != NULL)
{
/* If this function exists, we have version 6.2 or newer */
dumpType |= MiniDumpWithThreadInfo;
}
systemTicks = GetTickCount();
snprintf(dumpPath, _MAX_PATH,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment