mirror of
https://github.com/jamiepine/voicebox.git
synced 2026-09-16 21:30:39 -07:00
17 lines
381 B
Rust
17 lines
381 B
Rust
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
|
|
}
|