[go: up one dir, main page]

windows-acl 0.3.0

Rust crate to simplify Windows ACL operations
Documentation
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::{current_user, name_to_sid, sid_to_string, string_to_sid};
}

#[cfg(test)]
mod tests;