Added stub for SymSetParentWindow.

This commit is contained in:
Peter Oberndorfer 2005-07-29 14:42:37 +00:00 committed by Alexandre Julliard
parent c2fe2f0f5b
commit 68a4da07eb
3 changed files with 14 additions and 0 deletions

View File

@ -281,6 +281,17 @@ DWORD WINAPI SymGetOptions(void)
return dbghelp_options;
}
/******************************************************************
* SymSetParentWindow (DBGHELP.@)
*
*/
BOOL WINAPI SymSetParentWindow(HWND hwnd)
{
/* Save hwnd so it can be used as parent window */
FIXME("(%p): stub\n", hwnd);
return TRUE;
}
/******************************************************************
* SymSetContext (DBGHELP.@)
*

View File

@ -80,6 +80,7 @@
@ stub SymRegisterFunctionEntryCallback
@ stdcall SymSetContext(long ptr ptr)
@ stdcall SymSetOptions(long)
@ stdcall SymSetParentWindow(long)
@ stdcall SymSetSearchPath(long str)
@ stub SymSetSymWithAddr64
@ stub SymUnDName64

View File

@ -887,6 +887,8 @@ BOOL WINAPI UnmapDebugInformation(PIMAGE_DEBUG_INFORMATION);
DWORD WINAPI SymGetOptions(void);
DWORD WINAPI SymSetOptions(DWORD);
BOOL WINAPI SymSetParentWindow(HWND hwnd);
/* Symbol server bits */
typedef BOOL (WINAPI* PSYMBOLSERVERPROC)(LPCSTR, LPCSTR, PVOID, DWORD, DWORD, LPSTR);
typedef BOOL (WINAPI* PSYMBOLSERVEROPENPROC)(void);