MCPcopy Create free account
hub / github.com/LabSound/LabSound / AsioHandle

Class AsioHandle

src/backends/RtAudio/RtAudio.cpp:3073–3086  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3071static bool asioXRun;
3072
3073struct AsioHandle
3074{
3075 int drainCounter; // Tracks callback counts when draining
3076 bool internalDrain; // Indicates if stop is initiated from callback or not.
3077 ASIOBufferInfo * bufferInfos;
3078 HANDLE condition;
3079
3080 AsioHandle()
3081 : drainCounter(0)
3082 , internalDrain(false)
3083 , bufferInfos(0)
3084 {
3085 }
3086};
3087
3088// Function declarations (definitions at end of section)
3089static const char * getAsioErrorString(ASIOError result);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected