feat: 初步增加 Windows 支持

This commit is contained in:
mofeng-git
2026-05-18 22:43:28 +08:00
parent 0b9d94f53f
commit 935fa823f2
163 changed files with 11419 additions and 7581 deletions

12
src/video/capture/mod.rs Normal file
View File

@@ -0,0 +1,12 @@
//! Video capture implementations and capture-state helpers.
pub(crate) mod runtime;
pub(crate) mod status;
#[cfg(unix)]
mod linux;
#[cfg(windows)]
#[path = "windows.rs"]
mod linux;
pub use linux::*;