]> git.proxmox.com Git - rustc.git/blob - vendor/winapi/src/um/securityappcontainer.rs
New upstream version 1.32.0~beta.2+dfsg1
[rustc.git] / vendor / winapi / src / um / securityappcontainer.rs
1 // Copyright © 2017 winapi-rs developers
2 // Licensed under the Apache License, Version 2.0
3 // <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
4 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
5 // All files in the project carrying such notice may not be copied, modified, or distributed
6 // except according to those terms.
7 use shared::minwindef::{BOOL, PULONG, ULONG};
8 use um::winnt::{HANDLE, LPWSTR, PSID};
9 extern "system" {
10 pub fn GetAppContainerNamedObjectPath(
11 Token: HANDLE,
12 AppContainerSid: PSID,
13 ObjectPathLength: ULONG,
14 ObjectPath: LPWSTR,
15 ReturnLength: PULONG,
16 ) -> BOOL;
17 }