pulseaudio: Added typedef needed for compat with ancient Pulse installs.

main
Ryan C. Gordon 2023-09-28 12:10:16 -04:00
parent f24551f6d1
commit a2c5dc6507
No known key found for this signature in database
GPG Key ID: FA148B892AB48044
1 changed files with 4 additions and 0 deletions

View File

@ -35,6 +35,10 @@
#include "SDL_pulseaudio.h"
#include "../../thread/SDL_systhread.h"
#if (PA_PROTOCOL_VERSION < 28)
typedef void (*pa_operation_notify_cb_t) (pa_operation *o, void *userdata);
#endif
/* should we include monitors in the device list? Set at SDL_Init time */
static SDL_bool include_monitors = SDL_FALSE;