1 2 3 4 5 6 7 8 9 10 11 12
#pragma once #include "../API/MfStructs.h" namespace Whisper { struct iAudioCapture; struct iMediaFoundation; HRESULT __stdcall captureDeviceList( pfnFoundCaptureDevices pfn, void* pv ); HRESULT __stdcall captureOpen( iMediaFoundation* owner, const wchar_t* endpoint, const sCaptureParams& captureParams, iAudioCapture** pp ) noexcept; }