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
use std::path::Path;

use super::*;

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

pub trait Bundle {
    /// Get absolute path to the wine bundle
    fn path(&self) -> &Path;

    /// Get `Wine` struct from current bundle
    fn wine(&self) -> &Wine;
}