Share via


IDebugProgram2::GetENCUpdate

Note

This article applies to Visual Studio 2015. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here

This method gets the Edit and Continue (ENC) update for this program. A custom debug engine always returns E_NOTIMPL.

Syntax

HRESULT GetENCUpdate(   
   IUnknown** ppUpdate  
);  
int GetENCUpdate(  
   out object ppUpdate  
);  

Parameters

ppUpdate
[out] Returns an internal interface that can be used to update this program.

Return Value

If successful, returns S_OK; otherwise, returns an error code.

Note

A custom debug engine should always return E_NOTIMPL.

See Also

IDebugProgram2