diff options
Diffstat (limited to '3rdparty/portaudio/src/os/win/pa_win_hostapis.c')
-rw-r--r-- | 3rdparty/portaudio/src/os/win/pa_win_hostapis.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/3rdparty/portaudio/src/os/win/pa_win_hostapis.c b/3rdparty/portaudio/src/os/win/pa_win_hostapis.c index 9c9927ab77c..d4f1c8567dc 100644 --- a/3rdparty/portaudio/src/os/win/pa_win_hostapis.c +++ b/3rdparty/portaudio/src/os/win/pa_win_hostapis.c @@ -26,13 +26,13 @@ */ /* - * The text above constitutes the entire PortAudio license; however, + * The text above constitutes the entire PortAudio license; however, * the PortAudio community also makes the following non-binding requests: * * Any person wishing to distribute modifications to the Software is * requested to send the modifications to the original developer so that - * they can be incorporated into the canonical version. It is also - * requested that these non-binding requests be included along with the + * they can be incorporated into the canonical version. It is also + * requested that these non-binding requests be included along with the * license above. */ @@ -63,6 +63,7 @@ PaError PaWinDs_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiInde PaError PaAsio_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiIndex index ); PaError PaWinWdm_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiIndex index ); PaError PaWasapi_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiIndex index ); +PaError PaJack_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiIndex index ); #ifdef __cplusplus } @@ -85,18 +86,20 @@ PaUtilHostApiInitializer *paHostApiInitializers[] = #endif #if PA_USE_WASAPI - PaWasapi_Initialize, + PaWasapi_Initialize, #endif #if PA_USE_WDMKS PaWinWdm_Initialize, #endif +#if PA_USE_JACK + PaJack_Initialize, +#endif + #if PA_USE_SKELETON PaSkeleton_Initialize, /* just for testing. last in list so it isn't marked as default. */ #endif 0 /* NULL terminated array */ }; - - |