IDebugProgram2::GetENCUpdate

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

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

Reference

IDebugProgram2