ContinueDebugEvent

[DllImport("Kernel32.dll")][return: MarshalAs(UnmanagedType.Bool)]
public static extern bool ContinueDebugEvent(
   uint dwProcessId,
   uint dwThreadId,
   uint dwContinueStatus
);

Microsoft documentation: Link

Last updated