mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2026-09-13 11:04:25 +08:00
feat: 初步增加 Windows 支持
This commit is contained in:
12
src/video/capture/mod.rs
Normal file
12
src/video/capture/mod.rs
Normal 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::*;
|
||||
Reference in New Issue
Block a user