| 122 | } |
| 123 | |
| 124 | ASIOError ASIOGetChannels(long *numInputChannels, long *numOutputChannels) |
| 125 | { |
| 126 | if(!theAsioDriver) |
| 127 | { |
| 128 | *numInputChannels = *numOutputChannels = 0; |
| 129 | return ASE_NotPresent; |
| 130 | } |
| 131 | return theAsioDriver->getChannels(numInputChannels, numOutputChannels); |
| 132 | } |
| 133 | |
| 134 | ASIOError ASIOGetLatencies(long *inputLatency, long *outputLatency) |
| 135 | { |
nothing calls this directly
no test coverage detected