rusty-duplication 0.6.1

Capture the screen on Windows using the Desktop Duplication API in Rust, with shared memory support.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod capturer;
mod error;
mod ext;
mod monitor;
mod scanner;

pub use capturer::*;
pub use error::*;
pub use ext::*;
pub use monitor::*;
pub use scanner::*;

#[cfg(doctest)]
#[doc = include_str!("../README.md")]
mod readme {}