IVsLanguageDebugInfoRemap::RemapBreakpoint Method (Object^, Object^)
Visual Studio 2015
Remaps a breakpoint.
Assembly: Microsoft.VisualStudio.TextManager.Interop.9.0 (in Microsoft.VisualStudio.TextManager.Interop.9.0.dll)
int RemapBreakpoint(
Object^ pUserBreakpointRequest,
[OutAttribute] Object^% ppMappedBreakpointRequest
)
Parameters
- pUserBreakpointRequest
-
Type:
System::Object^
[in] The breakpoint to be remapped.
- ppMappedBreakpointRequest
-
Type:
System::Object^
[out] The remapped breakpoint.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
pUserBreakpointRequest and ppMappedBreakpointRequest must both implement IDebugBreakpointRequest2 and IDebugBreakpointRequest3 interfaces.
From textmgr90.idl:
HRESULT RemapBreakpoint(
[in] IUnknown* pUserBreakpointRequest,
[out]IUnknown** ppMappedBreakpointRequest
);
Show: