| 173 | } |
| 174 | |
| 175 | ASIOError ASIOGetClockSources(ASIOClockSource *clocks, long *numSources) |
| 176 | { |
| 177 | if(!theAsioDriver) |
| 178 | { |
| 179 | *numSources = 0; |
| 180 | return ASE_NotPresent; |
| 181 | } |
| 182 | return theAsioDriver->getClockSources(clocks, numSources); |
| 183 | } |
| 184 | |
| 185 | ASIOError ASIOSetClockSource(long reference) |
| 186 | { |
nothing calls this directly
no test coverage detected