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