Commit f93d7114 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

dbghelp/tests: Use indirect call for SymSetExtendedOption.

parent 9af05517
......@@ -331,7 +331,7 @@ static unsigned get_native_module_count(HANDLE proc)
old = pSymSetExtendedOption(SYMOPT_EX_WINE_NATIVE_MODULES, TRUE);
ret = SymEnumerateModules64(proc, count_native_module_cb, &count);
ok(ret, "SymEnumerateModules64 failed: %lu\n", GetLastError());
SymSetExtendedOption(SYMOPT_EX_WINE_NATIVE_MODULES, old);
pSymSetExtendedOption(SYMOPT_EX_WINE_NATIVE_MODULES, old);
return count;
}
......
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