1 // Licensed under the Apache License, Version 2.0
2 // <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
3 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
4 // All files in the project carrying such notice may not be copied, modified, or distributed
5 // except according to those terms.
6 use shared::minwindef::{BOOL, PULONG, ULONG};
7 use um::winnt::{HANDLE, LPWSTR, PSID};
8 extern "system" {
GetAppContainerNamedObjectPath( Token: HANDLE, AppContainerSid: PSID, ObjectPathLength: ULONG, ObjectPath: LPWSTR, ReturnLength: PULONG, ) -> BOOL9     pub fn GetAppContainerNamedObjectPath(
10         Token: HANDLE,
11         AppContainerSid: PSID,
12         ObjectPathLength: ULONG,
13         ObjectPath: LPWSTR,
14         ReturnLength: PULONG,
15     ) -> BOOL;
16 }
17