DebugBreakProcess function kernel32

int DebugBreakProcess(
  1. int Process
)

Causes a breakpoint exception to occur in the specified process. This allows the calling thread to signal the debugger to handle the exception.

BOOL DebugBreakProcess(
  HANDLE Process
);

Implementation

int DebugBreakProcess(int Process) => _DebugBreakProcess(Process);