ntdll: Add DbgUiRemoteBreakin() stub.
Signed-off-by: Austin English <austinenglish@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
970009fed7
commit
e13f59085f
|
@ -476,3 +476,11 @@ ULONG WINAPI EtwEventWrite( REGHANDLE handle, const EVENT_DESCRIPTOR *descriptor
|
|||
FIXME("(%s, %p, %u, %p): stub\n", wine_dbgstr_longlong(handle), descriptor, count, data);
|
||||
return ERROR_SUCCESS;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* DbgUiRemoteBreakin (NTDLL.@)
|
||||
*/
|
||||
void WINAPI DbgUiRemoteBreakin( void *arg )
|
||||
{
|
||||
FIXME("stub\n");
|
||||
}
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
# @ stub DbgUiDebugActiveProcess
|
||||
# @ stub DbgUiGetThreadDebugObject
|
||||
# @ stub DbgUiIssueRemoteBreakin
|
||||
# @ stub DbgUiRemoteBreakin
|
||||
@ stdcall DbgUiRemoteBreakin(ptr)
|
||||
# @ stub DbgUiSetThreadDebugObject
|
||||
# @ stub DbgUiStopDebugging
|
||||
@ stub DbgUiWaitStateChange
|
||||
|
|
Loading…
Reference in New Issue