| 187 | } |
| 188 | |
| 189 | std::string RtAudio ::getApiDisplayName(RtAudio::Api api) |
| 190 | { |
| 191 | if (api < 0 || api >= RtAudio::NUM_APIS) |
| 192 | return "Unknown"; |
| 193 | return rtaudio_api_names[api][1]; |
| 194 | } |
| 195 | |
| 196 | RtAudio::Api RtAudio ::getCompiledApiByName(const std::string & name) |
| 197 | { |
nothing calls this directly
no outgoing calls
no test coverage detected