#pragma option push -b -a8 -pc -A- -w-pun /*P_O_Push*/ /******************************************************************************** * * * securityappcontainer.h -- ApiSet Contract for api-ms-win-security-appcontainer-l1 * * * * Copyright (c) Microsoft Corporation. All rights reserved. * * * ********************************************************************************/ #ifdef _MSC_VER #pragma once #endif // _MSC_VER #ifndef _APIAPPCONTAINER_ #define _APIAPPCONTAINER_ #include #include #include #include /* APISET_NAME: api-ms-win-security-appcontainer-l1 */ #if !defined(RC_INVOKED) #ifndef _APISET_APPCONTAINER_VER #ifdef _APISET_TARGET_VERSION #if _APISET_TARGET_VERSION >= _APISET_TARGET_VERSION_WIN8 #define _APISET_APPCONTAINER_VER 0x0100 #endif #endif #endif #endif // !defined(RC_INVOKED) #pragma region Desktop Family or OneCore Family #if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM) #ifdef __cplusplus extern "C" { #endif #if NTDDI_VERSION >= NTDDI_WIN8 // // Token Extension APIs // BOOL WINAPI GetAppContainerNamedObjectPath( _In_opt_ HANDLE Token, _In_opt_ PSID AppContainerSid, _In_ ULONG ObjectPathLength, _Out_writes_opt_(ObjectPathLength) LPWSTR ObjectPath, _Out_ PULONG ReturnLength ); #endif #ifdef __cplusplus } #endif #endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM) */ #pragma endregion #endif // _APIAPPCONTAINER_ #pragma option pop /*P_O_Pop*/