securityappcontainer.h 604 B

1234567891011121314151617181920212223242526
  1. /**
  2. * This file is part of the mingw-w64 runtime package.
  3. * No warranty is given; refer to the file DISCLAIMER within this package.
  4. */
  5. #ifndef _APIAPPCONTAINER_
  6. #define _APIAPPCONTAINER_
  7. #include <apiset.h>
  8. #include <apisetcconv.h>
  9. #include <minwindef.h>
  10. #include <minwinbase.h>
  11. #if WINAPI_FAMILY_PARTITION (WINAPI_PARTITION_DESKTOP)
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. #if NTDDI_VERSION >= 0x06020000
  16. WINBOOL GetAppContainerNamedObjectPath (HANDLE Token, PSID AppContainerSid, ULONG ObjectPathLength, LPWSTR ObjectPath, PULONG ReturnLength);
  17. #endif
  18. #ifdef __cplusplus
  19. }
  20. #endif
  21. #endif
  22. #endif