IVsDebugger2.LaunchDebugTargets2(UInt32, IntPtr) Method

Definition

Launches or attaches to the specified processes under the control of the debugger.

public:
 int LaunchDebugTargets2(System::UInt32 DebugTargetCount, IntPtr pDebugTargets);
public int LaunchDebugTargets2 (uint DebugTargetCount, IntPtr pDebugTargets);
abstract member LaunchDebugTargets2 : uint32 * nativeint -> int
Public Function LaunchDebugTargets2 (DebugTargetCount As UInteger, pDebugTargets As IntPtr) As Integer

Parameters

DebugTargetCount
UInt32

[in] Number of targets to launch (specifies the number of VsDebugTargetInfo2 structures pointed to by pDebugTargets).

pDebugTargets
IntPtr

nativeint

[in, out] Array of VsDebugTargetInfo2 structures describing the programs to launch or attach to.

Returns

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Remarks

COM Signature

From vsshell80.idl:

HRESULT IVsDebugger2::LaunchDebugTargets2(  
   [in] ULONG DebugTargetCount,  
   [in, out, size_is(DebugTargetCount)] VsDebugTargetInfo2* pDebugTargets  
);  

This is the method called by the DebugLaunch method to perform the launch. This indirection gives DebugLaunch a chance to make changes or additions to the debug launch cycle before launching the debugger. For example, one addition would be adding custom debug engines to launch with the process.

Note

An example implementation of DebugLaunch and how it uses IvsDebugger::LaunchDebugTargets can be found in the My C Package sample.

Applies to