| 180 | } |
| 181 | |
| 182 | std::string RtAudio ::getApiName(RtAudio::Api api) |
| 183 | { |
| 184 | if (api < 0 || api >= RtAudio::NUM_APIS) |
| 185 | return ""; |
| 186 | return rtaudio_api_names[api][0]; |
| 187 | } |
| 188 | |
| 189 | std::string RtAudio ::getApiDisplayName(RtAudio::Api api) |
| 190 | { |
nothing calls this directly
no outgoing calls
no test coverage detected