/************************************************************************************* * * * AppCompat.h -- Appcompat procedure declarations, constant definitions and macros * * * * Copyright (c) Microsoft Corporation. All rights reserved. * * * **************************************************************************************/ #ifndef __APPCOMPAT_H_ #define __APPCOMPAT_H_ #include #pragma region Desktop Family #if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) #ifdef __cplusplus extern "C" { #endif #ifndef SDBAPI #define SDBAPI STDAPICALLTYPE #endif BOOL SDBAPI ApphelpCheckShellObject( _In_ REFCLSID ObjectCLSID, _In_ BOOL bShimIfNecessary, _Out_ ULONGLONG* pullFlags ); #ifdef __cplusplus } #endif #endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) */ #pragma endregion #endif // __APPCOMPAT_H_