structure ACTIVATION_CONTEXT_COMPATIBILITY_INFORMATION (winnt.h)
La structure ACTIVATION_CONTEXT_COMPATIBILITY_INFORMATION est utilisée par la fonction QueryActCtxW .
Syntaxe
typedef struct _ACTIVATION_CONTEXT_COMPATIBILITY_INFORMATION {
DWORD ElementCount;
COMPATIBILITY_CONTEXT_ELEMENT Elements[];
} ACTIVATION_CONTEXT_COMPATIBILITY_INFORMATION, *PACTIVATION_CONTEXT_COMPATIBILITY_INFORMATION;
Membres
ElementCount
Nombre d’éléments de compatibilité définis dans le manifeste de l’application.
Elements
Il s’agit d’un tableau de structures COMPATIBILITY_CONTEXT_ELEMENT . Chaque structure décrit un élément de compatibilité dans le manifeste de l’application.
Remarques
L’exemple suivant nécessite Windows Server 2008 R2 ou Windows 7 et montre la méthode pour récupérer des informations sur le contexte de compatibilité.
HANDLE ActCtxHandle=INVALID_HANDLE_VALUE;
SIZE_T BytesWritten=0;
PACTIVATION_CONTEXT_COMPATIBILITY_INFORMATION CtxCompatInfo=NULL;
// Query the compatibility information size
bReturn = QueryActCtxW(0,
ActCtxHandle,
NULL,
CompatibilityInformationInActivationContext,
NULL,
0,
&BytesWritten);
if (bReturn == FALSE && GetLastError() !=ERROR_INSUFFICIENT_BUFFER)
{
goto EXIT;
}
CtxCompatInfo =
(PACTIVATION_CONTEXT_COMPATIBILITY_INFORMATION)HeapAlloc(GetProcessHeap(),
HEAP_ZERO_MEMORY, BytesWritten);
if (CtxCompatInfo==NULL)
{
// Out of memory
goto EXIT;
}
// Query the compatibility information
bReturn = QueryActCtxW(0,
ActCtxHandle,
NULL,
CompatibilityInformationInActivationContext,
CtxCompatInfo,
BytesWritten,
&BytesWritten);
if (bReturn==FALSE)
{
// Unexpected error: use GetLastError() to check
goto EXIT;
}
for (DWORD ElementIndex=0; ElementIndex < CtxCompatInfo->ElementCount; ElementIndex ++)
{
PCOMPATIBILITY_CONTEXT_ELEMENT ContextElement = &CtxCompatInfo->Elements[ElementIndex];
if (ContextElement->Type == ACTCTX_COMPATIBILITY_ELEMENT_TYPE_OS)
{
if (memcmp(&ContextElement->Id, &WIN7_CONTEXT_GUID, sizeof (GUID))==0)
{printf_s("Windows 7 is supported");}
}
}
EXIT:
if (ActCtxHandle != INVALID_HANDLE_VALUE)
{
ReleaseActCtx (ActCtxHandle)
}
if (CtxCompatInfo != NULL)
{
RtlFreeHeap (RtlProcessHeap (), 0, CtxCompatInfo);
CtxCompatInfo = NULL;
}
Configuration requise
Client minimal pris en charge | Windows 7 [applications de bureau uniquement] |
Serveur minimal pris en charge | Windows Server 2008 R2 [applications de bureau uniquement] |
En-tête | winnt.h (inclure Windows.h) |