mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-07 23:32:53 +02:00
Closes #1413 Closes #1414 This commit addresses issues with building PortMixer using the upstream version of PortAudio. The resulting solution allows: * To build Linux with the vanilla PortAudio. * To build Windows with the vanilla PortAudio, but the notable exceptions: * for PortMixer to work on MME - PA 19.7.0 is required; only static linking is supported. A patch is available to allow dynamic linking; * for PortMixer to work on DirectSound - the patch is always required. Remove nyquist autotools
11 lines
183 B
C
11 lines
183 B
C
#include <Windows.h>
|
|
#include <portaudio.h>
|
|
#include <pa_win_wmme.h>
|
|
|
|
int main()
|
|
{
|
|
PaWinMME_GetStreamInputHandle(0, 0);
|
|
PaWinMME_GetStreamOutputHandle(0, 0);
|
|
|
|
return 0;
|
|
} |