InitPropVariantFromBooleanVector, fonction (propvarutil.h)
Initialise une structure PROPVARIANT à partir d’un vecteur booléen spécifié.
Syntaxe
PSSTDAPI InitPropVariantFromBooleanVector(
[in, optional] const BOOL *prgf,
[in] ULONG cElems,
[out] PROPVARIANT *ppropvar
);
Paramètres
[in, optional] prgf
Type : const BOOL*
Pointeur vers le vecteur booléen utilisé pour initialiser la structure. Si ce paramètre a la valeur NULL, les éléments pointés par le membre de structure cabool.pElems sont initialisés avec VARIANT_FALSE.
[in] cElems
Type : ULONG
Nombre d’éléments vectoriels.
[out] ppropvar
Type : PROPVARIANT*
Lorsque cette fonction est retournée, contient la structure PROPVARIANT initialisée.
Valeur retournée
Type : HRESULT
Si cette fonction réussit, elle retourne S_OK. Sinon, elle retourne un code d’erreur HRESULT.
Remarques
Cela crée un VT_BOOL | VT_VECTOR propvariant.
Exemples
L’exemple suivant, à inclure dans le cadre d’un programme plus large, montre comment utiliser InitPropVariantFromBooleanVector
PROPVARIANT propvar;
BOOL rgBool[2] = {TRUE, FALSE};
HRESULT hr = InitPropVariantFromBooleanVector(rgBool, ARRAYSIZE(rgBool), &propvar);
if (SUCCEEDED(hr))
{
// propvar now is valid and has type VT_VECTOR | VT_BOOL.
PropVariantClear(&propvar);
}
Configuration requise
Condition requise | Valeur |
---|---|
Client minimal pris en charge | Windows XP avec SP2, Windows Vista [applications de bureau uniquement] |
Serveur minimal pris en charge | Windows Server 2003 avec SP1 [applications de bureau uniquement] |
Plateforme cible | Windows |
En-tête | propvarutil.h |
Bibliothèque | Propsys.lib |
DLL | Propsys.dll (version 6.0 ou ultérieure) |
Composant redistribuable | Windows Desktop Search (WDS) 3.0 |