X-Git-Url: http://git.jankratochvil.net/?p=reactos.git;a=blobdiff_plain;f=lib%2Fkernel32%2Fdebug%2Fdebugger.c;h=1564dbd6ca51f368ec10f3ec67143787bca2fe7f;hp=47dc292a381eab3e2a344945185fdf30cd39806f;hb=HEAD;hpb=7c0db166f81fbe8c8b913d7f26048e337d383605 diff --git a/lib/kernel32/debug/debugger.c b/lib/kernel32/debug/debugger.c index 47dc292..1564dbd 100644 --- a/lib/kernel32/debug/debugger.c +++ b/lib/kernel32/debug/debugger.c @@ -13,12 +13,19 @@ /* FUNCTIONS *****************************************************************/ +/* + * @unimplemented + */ BOOL WINAPI CheckRemoteDebuggerPresent(HANDLE hProcess, PBOOL pbDebuggerPresent) { SetLastError(ERROR_CALL_NOT_IMPLEMENTED); return FALSE; } + +/* + * @implemented + */ BOOL WINAPI ContinueDebugEvent ( DWORD dwProcessId, @@ -43,29 +50,49 @@ BOOL WINAPI ContinueDebugEvent return TRUE; } + +/* + * @unimplemented + */ BOOL WINAPI DebugActiveProcess(DWORD dwProcessId) { SetLastError(ERROR_CALL_NOT_IMPLEMENTED); return FALSE; } + +/* + * @unimplemented + */ BOOL WINAPI DebugActiveProcessStop(DWORD dwProcessId) { SetLastError(ERROR_CALL_NOT_IMPLEMENTED); return FALSE; } + +/* + * @unimplemented + */ BOOL WINAPI DebugSetProcessKillOnExit(BOOL KillOnExit) { SetLastError(ERROR_CALL_NOT_IMPLEMENTED); return FALSE; } + +/* + * @implemented + */ BOOL WINAPI IsDebuggerPresent(VOID) { return (WINBOOL)NtCurrentPeb()->BeingDebugged; } + +/* + * @unimplemented + */ BOOL WINAPI WaitForDebugEvent(LPDEBUG_EVENT lpDebugEvent, DWORD dwMilliseconds) { SetLastError(ERROR_CALL_NOT_IMPLEMENTED);