dbghelp: Stub SymRefreshModuleList.

This commit is contained in:
Andrew Nguyen 2009-11-15 19:02:48 -06:00 committed by Alexandre Julliard
parent 0c652a5a5c
commit 44ac91d78d
2 changed files with 10 additions and 1 deletions

View file

@ -144,7 +144,7 @@
@ stub SymNextW
@ stub SymPrev
@ stub SymPrevW
@ stub SymRefreshModuleList
@ stdcall SymRefreshModuleList(long)
@ stdcall SymRegisterCallback(long ptr ptr)
@ stdcall SymRegisterCallback64(long ptr double)
@ stdcall SymRegisterCallbackW64(long ptr double)

View file

@ -1052,3 +1052,12 @@ void module_reset_debug_info(struct module* module)
module->sources_used = module->sources_alloc = 0;
module->sources = NULL;
}
/******************************************************************
* SymRefreshModuleList (DBGHELP.@)
*/
BOOL WINAPI SymRefreshModuleList(HANDLE hProcess)
{
FIXME("(%p) stub\n", hProcess);
return FALSE;
}