Share via


DkmLaunchedProcessInfo(Int32, Int64, Int32) Constructor

Definition

Initialize a new DkmLaunchedProcessInfo value.

public:
 DkmLaunchedProcessInfo(int ProcessId, long StartTime, int ThreadId);
public:
 DkmLaunchedProcessInfo(int ProcessId, long long StartTime, int ThreadId);
 DkmLaunchedProcessInfo(int ProcessId, long StartTime, int ThreadId);
public DkmLaunchedProcessInfo (int ProcessId, long StartTime, int ThreadId);
new Microsoft.VisualStudio.Debugger.Start.DkmLaunchedProcessInfo : int * int64 * int -> Microsoft.VisualStudio.Debugger.Start.DkmLaunchedProcessInfo
Public Sub New (ProcessId As Integer, StartTime As Long, ThreadId As Integer)

Parameters

ProcessId
Int32

[In] Id of the launched process. Minidump implementations can set this to 0.

StartTime
Int64

[In] 64-bit date time value indicating when the process was started. The start time along with the id and the machine where the process was started can uniquely identify a process. This can be set to 0 if this is unknown/invalid (ex: minidumps).

ThreadId
Int32

[In] Id of the first thread in the launched process. Minidump implementations can set this to 0.

Applies to