mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-02-23 06:02:08 -05:00
10 lines
182 B
C++
10 lines
182 B
C++
#pragma once
|
|
|
|
static struct {
|
|
std::thread thread;
|
|
std::condition_variable cv_to_thread, cv_from_thread;
|
|
std::mutex mutex;
|
|
bool running;
|
|
bool processing;
|
|
} audio;
|