Fonction InitPropVariantFromInt32Vector (propvarutil.h)
Initialise une structure PROPVARIANT basée sur un vecteur de valeurs entières 32 bits.
Syntaxe
PSSTDAPI InitPropVariantFromInt32Vector(
[in] const LONG *prgn,
[in] ULONG cElems,
[out] PROPVARIANT *ppropvar
);
Paramètres
[in] prgn
Type : const LONG*
Pointeur vers un vecteur source de valeurs LONG . Si ce paramètre a la valeur NULL, le vecteur est initialisé avec des zéros.
[in] cElems
Type : ULONG
Nombre d’éléments vectoriels.
[out] ppropvar
Type : PROPVARIANT*
Lorsque cette fonction retourne, 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
Crée un VT_VECTOR | VT_I4 propvariant.
Exemples
L’exemple suivant, à inclure dans un programme plus grand, montre comment utiliser InitPropVariantFromInt32Vector.
LONG rgLongs[] = {1, 2, 7};
PROPVARIANT propvar;
HRESULT hr = InitPropVariantFromInt32Vector(rgLongs, ARRAYSIZE(rgLongs), &propvar);
if (SUCCEEDED(hr))
{
// propvar now is valid and has type VT_VECTOR | VT_I4.
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 |