wincompatlib 0.7.7

Set of interfaces to run windows applications on unix-like systems using Wine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod with;
mod boot;
mod run;
mod overrides;

#[cfg(feature = "wine-fonts")]
mod fonts;

pub use with::*;
pub use boot::*;
pub use run::*;
pub use overrides::*;

#[cfg(feature = "wine-fonts")]
pub use fonts::*;