| 2204 | bool internalDrain; // Indicates if stop is initiated from callback or not. |
| 2205 | |
| 2206 | JackHandle() |
| 2207 | : client(0) |
| 2208 | , drainCounter(0) |
| 2209 | , internalDrain(false) |
| 2210 | { |
| 2211 | ports[0] = 0; |
| 2212 | ports[1] = 0; |
| 2213 | xrun[0] = false; |
| 2214 | xrun[1] = false; |
| 2215 | } |
| 2216 | }; |
| 2217 | |
| 2218 | #if !defined(__RTAUDIO_DEBUG__) |
nothing calls this directly
no outgoing calls
no test coverage detected