Share via


IDkmNonDebugProcessExitNotification.OnNonDebugProcessExit Method

Definition

OnNonDebugProcessExit is invoked as part of event processing. See interface definition for more information.

public void OnNonDebugProcessExit (Microsoft.VisualStudio.Debugger.Start.DkmNonDebugProcess nonDebugProcess, int exitCode, Microsoft.VisualStudio.Debugger.DkmEventDescriptor eventDescriptor);
abstract member OnNonDebugProcessExit : Microsoft.VisualStudio.Debugger.Start.DkmNonDebugProcess * int * Microsoft.VisualStudio.Debugger.DkmEventDescriptor -> unit
Public Sub OnNonDebugProcessExit (nonDebugProcess As DkmNonDebugProcess, exitCode As Integer, eventDescriptor As DkmEventDescriptor)

Parameters

nonDebugProcess
DkmNonDebugProcess

[In] DkmNonDebugProcess represents a process which was started in 'Start Without Debugging' (Ctrl-F5) scenarios. It provides functionality needed to track the lifetime of these processes.

exitCode
Int32

[In] 32-bit value which the processed returned on exit. This is the same value that would be reported from the kernel32!GetExitCodeProcess.

eventDescriptor
DkmEventDescriptor

[In] Describes the event being processed.

Applies to