Commit e90635f5 authored by Stefan Dösinger's avatar Stefan Dösinger Committed by Alexandre Julliard

kernel32: Add a CheckRemoteDebuggerPresent stub.

parent 5e37345b
......@@ -383,6 +383,24 @@ BOOL WINAPI IsDebuggerPresent(void)
return NtCurrentTeb()->Peb->BeingDebugged;
}
/***********************************************************************
* CheckRemoteDebuggerPresent (KERNEL32.@)
*
* Allows a process to determine if there is a remote debugger
* attached.
*
* PARAMS
*
* RETURNS
*
* TRUE because it is a stub.
*/
BOOL WINAPI CheckRemoteDebuggerPresent(HANDLE process, PBOOL DebuggerPresent)
{
FIXME("(%p)->(%p): Stub!\n", process, DebuggerPresent);
*DebuggerPresent = FALSE;
return TRUE;
}
/***********************************************************************
* _DebugOutput (KERNEL.328)
......
......@@ -182,7 +182,7 @@
@ stub ChangeTimerQueueTimer
# @ stub CheckNameLegalDOS8Dot3A
# @ stub CheckNameLegalDOS8Dot3W
# @ stub CheckRemoteDebuggerPresent
@ stdcall CheckRemoteDebuggerPresent(long ptr)
@ stdcall ClearCommBreak(long)
@ stdcall ClearCommError(long ptr ptr)
@ stdcall CloseConsoleHandle(long)
......
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