Type Alias SECURITY_DESCRIPTOR

Source
pub type SECURITY_DESCRIPTOR = _SECURITY_DESCRIPTOR;

Aliased Type§

struct SECURITY_DESCRIPTOR {
    pub Revision: u8,
    pub Sbz1: u8,
    pub Control: u16,
    pub Owner: *mut c_void,
    pub Group: *mut c_void,
    pub Sacl: *mut _ACL,
    pub Dacl: *mut _ACL,
}

Fields§

§Revision: u8§Sbz1: u8§Control: u16§Owner: *mut c_void§Group: *mut c_void§Sacl: *mut _ACL§Dacl: *mut _ACL