fix linux compile

This commit is contained in:
Jamie Pine
2026-01-31 07:44:28 -08:00
parent 220333b3bb
commit 610f64c762
2 changed files with 20 additions and 0 deletions
@@ -0,0 +1,16 @@
use crate::audio_capture::AudioCaptureState;
pub async fn start_capture(
state: &AudioCaptureState,
max_duration_secs: u32,
) -> Result<(), String> {
todo!("implement Linux audio capture")
}
pub async fn stop_capture(state: &AudioCaptureState) -> Result<String, String> {
todo!("implement Linux audio capture stop")
}
pub fn is_supported() -> bool {
false
}