| 94 | } |
| 95 | |
| 96 | ASIOError ASIOExit(void) |
| 97 | { |
| 98 | if(theAsioDriver) |
| 99 | { |
| 100 | #if WINDOWS |
| 101 | asioDrivers->removeCurrentDriver(); |
| 102 | #else |
| 103 | delete theAsioDriver; |
| 104 | #endif |
| 105 | } |
| 106 | theAsioDriver = 0; |
| 107 | return ASE_OK; |
| 108 | } |
| 109 | |
| 110 | ASIOError ASIOStart(void) |
| 111 | { |
nothing calls this directly
no outgoing calls
no test coverage detected