static void WINMM_DetectDevices(int iscapture, SDL_AddAudioDevice addfn) { if (iscapture) { DetectWaveInDevs(addfn); } else { DetectWaveOutDevs(addfn); } }
static void WINMM_DetectDevices(void) { DetectWaveInDevs(); DetectWaveOutDevs(); }