update for HEAD-2003091401
[reactos.git] / lib / kernel32 / debug / debugger.c
index 47dc292..1564dbd 100644 (file)
 
 /* 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);