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