1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
//! `windows-acl` is a Rust library to simplify Windows ACL operations. #![cfg(windows)] extern crate field_offset; extern crate libc; extern crate widestring; extern crate winapi; pub mod acl; mod utils; pub mod helper { pub use utils::{sid_to_string, name_to_sid, string_to_sid, current_user}; } #[cfg(test)] mod tests;