| 159 | } |
| 160 | |
| 161 | ASIOError ASIOGetSampleRate(ASIOSampleRate *currentRate) |
| 162 | { |
| 163 | if(!theAsioDriver) |
| 164 | return ASE_NotPresent; |
| 165 | return theAsioDriver->getSampleRate(currentRate); |
| 166 | } |
| 167 | |
| 168 | ASIOError ASIOSetSampleRate(ASIOSampleRate sampleRate) |
| 169 | { |
nothing calls this directly
no test coverage detected