summaryrefslogtreecommitdiffstats
path: root/Whisper/MF/AudioCapture.h
blob: 276ee4b19cc24b9667e016febfdb54ceb1eae93d (plain)
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;
}