mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-02-24 06:41:52 -05:00
9 lines
162 B
C++
9 lines
162 B
C++
#pragma once
|
|
|
|
static struct {
|
|
std::condition_variable cv_to_thread, cv_from_thread;
|
|
std::mutex mutex;
|
|
bool initialized;
|
|
bool processing;
|
|
} audio;
|