1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
//////////////////// UNIX

#[cfg(not(any(target_family="windows",target_os="android")))]
pub mod permissions_unix;

#[cfg(not(any(target_family="windows",target_os="android")))]
pub use permissions_unix::*;

//////////////////// WINDOWS

#[cfg(windows)]
pub fn supported() -> bool {
    false
}