1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
#![cfg(all(target_arch = "x86_64", target_os = "windows"))]

#[macro_use]
extern crate bitflags;
#[macro_use]
extern crate failure;
extern crate libloading;

mod wide_chars;
mod wslapi;

pub use wslapi::{DistroConfiguration, DistroFlags, Wslapi};