Provides asynchronous access to a given synchronous debug operation.
HRESULT CreateAsyncDebugOperation( IDebugSyncOperation* psdo, IDebugAsyncOperation** ppado );
- psdo
[in] The synchronous debug operation object.
- ppado
[out] The asynchronous debug operation object.
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. |
This method allows language engines to evaluate expressions asynchronously without explicitly synchronizing with the debugger thread. For more information, see IDebugSyncOperation Interface and IDebugAsyncOperation Interface.