IDkmProcessExecutionNotification.OnProcessResume Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Handler which is notified before the target process is resumed. A process is resumed when the pausing event finishes processing, when the internal breakpoint is continued, or if the UI entered break mode, when the user decides to continue.
public:
void OnProcessResume(Microsoft::VisualStudio::Debugger::DkmProcess ^ process, Microsoft::VisualStudio::Debugger::DkmProcessExecutionCounters ^ processCounters);
public void OnProcessResume (Microsoft.VisualStudio.Debugger.DkmProcess process, Microsoft.VisualStudio.Debugger.DkmProcessExecutionCounters processCounters);
abstract member OnProcessResume : Microsoft.VisualStudio.Debugger.DkmProcess * Microsoft.VisualStudio.Debugger.DkmProcessExecutionCounters -> unit
Public Sub OnProcessResume (process As DkmProcess, processCounters As DkmProcessExecutionCounters)
Parameters
- process
- DkmProcess
[In] DkmProcess represents a target process which is being debugged. The debugger debugs processes, so this is the basic unit of debugging. A DkmProcess can represent a system process or a virtual process such as minidumps.
- processCounters
- DkmProcessExecutionCounters
[In] Stores a QPC timestamp for a process stop/resume event.