kernel32: Add a CheckRemoteDebuggerPresent stub.
diff --git a/dlls/kernel32/debugger.c b/dlls/kernel32/debugger.c
index 7534a9b..df4dc50 100644
--- a/dlls/kernel32/debugger.c
+++ b/dlls/kernel32/debugger.c
@@ -383,6 +383,24 @@
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)