Provides the return value and return object parameter from the synchronous debug operation.
HRESULT GetResult( HRESULT* phrResult, IUnknown** ppunkResult );
- phrResult
[out] If the operation is complete, phrResult is the return value of IDebugSyncOperation::Execute.
- ppunkResult
[out] If the operation is complete, ppunkResult is the object parameter returned by the operation.
The method returns an HRESULT. Possible values include, but are not limited to, those in the following table.
Value | Description |
---|---|
S_OK | The method succeeded. |
E_PENDING | The operation has not completed. |
If the operation has completed, this method returns the HRESULT and object parameter from IDebugSyncOperation::Execute.