| 194 | } |
| 195 | |
| 196 | RtAudio::Api RtAudio ::getCompiledApiByName(const std::string & name) |
| 197 | { |
| 198 | unsigned int i = 0; |
| 199 | for (i = 0; i < rtaudio_num_compiled_apis; ++i) |
| 200 | if (name == rtaudio_api_names[rtaudio_compiled_apis[i]][0]) |
| 201 | return rtaudio_compiled_apis[i]; |
| 202 | return RtAudio::UNSPECIFIED; |
| 203 | } |
| 204 | |
| 205 | void RtAudio ::openRtApi(RtAudio::Api api) |
| 206 | { |
nothing calls this directly
no outgoing calls
no test coverage detected