コード例 #1
0
    public HResult EndGetEvent(IMFAsyncResult pResult,
                               out IMFMediaEvent ppEvent)
    {
        HResult hr;

        hr = m_events.EndGetEvent(pResult, out ppEvent);

        return(hr);
    }
コード例 #2
0
ファイル: NetworkSource.cs プロジェクト: azdjdgh/VideoChat
        public HResult EndGetEvent(IMFAsyncResult pResult, out IMFMediaEvent ppEvent)
        {
            HResult hr = HResult.S_OK;

            ppEvent = null;
            hr      = CheckShutdown();
            if (MFError.Succeeded(hr))
            {
                hr = _spEventQueue.EndGetEvent(pResult, out ppEvent);
            }
            return(hr);
        }