kernel32: Add a CheckRemoteDebuggerPresent stub.
This commit is contained in:
parent
5e37345b30
commit
e90635f5b6
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue