Commit 878ea7d9 authored by Andrew Cook's avatar Andrew Cook Committed by Alexandre Julliard

dbghelp: Add stubs for SymSetHomeDirectory.

parent 31f8c51b
......@@ -153,8 +153,8 @@
@ stdcall SymSearch(long int64 long long str int64 ptr ptr long)
@ stdcall SymSearchW(long int64 long long wstr int64 ptr ptr long)
@ stdcall SymSetContext(long ptr ptr)
@ stub SymSetHomeDirectory
@ stub SymSetHomeDirectoryW
@ stdcall SymSetHomeDirectory(long str)
@ stdcall SymSetHomeDirectoryW(long wstr)
@ stdcall SymSetOptions(long)
@ stdcall SymSetParentWindow(long)
@ stdcall SymSetScopeFromAddr(ptr int64)
......
......@@ -2196,3 +2196,25 @@ BOOL WINAPI SymFromIndexW(HANDLE hProcess, ULONG64 BaseOfDll, DWORD index, PSYMB
return FALSE;
}
/******************************************************************
* SymSetHomeDirectory (DBGHELP.@)
*
*/
PCHAR WINAPI SymSetHomeDirectory(HANDLE hProcess, PCSTR dir)
{
FIXME("(%p, %s): stub\n", hProcess, dir);
return NULL;
}
/******************************************************************
* SymSetHomeDirectoryW (DBGHELP.@)
*
*/
PWSTR WINAPI SymSetHomeDirectoryW(HANDLE hProcess, PCWSTR dir)
{
FIXME("(%p, %s): stub\n", hProcess, debugstr_w(dir));
return NULL;
}
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