Wincompatlib
Rust library that contains a set of interfaces to run windows applications on unix-like systems using Wine
Examples
Run cmd.exe using system wine
use *;
// Run cmd.exe using system wine
default.run;
Print wine version
use *;
// Print wine version
println!;
Run cmd.exe using custom wine, and then stop it
use *;
let wine = from_binary;
// Run cmd.exe using custom wine
// and then stop it
wine.run;
wine.stop_processes;
Print DXVK version
// Requires "dxvk" feature
use *;
match get_version
Install DXVK
// Requires "dxvk" feature
use *;
// Same for uninstall_dxvk
let output = default
.install_dxvk
.expect;
println!;