Partager via


Fonction InitVariantFromInt32Array (propvarutil.h)

Initialise une structure VARIANT avec un tableau de valeurs entières 32 bits.

Syntaxe

PSSTDAPI InitVariantFromInt32Array(
  [in]  const LONG *prgn,
  [in]  ULONG      cElems,
  [out] VARIANT    *pvar
);

Paramètres

[in] prgn

Type : const LONG*

Pointeur vers le tableau source de valeurs LONG .

[in] cElems

Type : ULONG

Nombre d’éléments dans le tableau pointé vers prgn.

[out] pvar

Type : VARIANT*

Lorsque cette fonction retourne, contient la structure VARIANT 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_ARRAY | VT_I4 variante.

Exemples

L’exemple suivant, à inclure dans un programme plus grand, montre comment utiliser InitVariantFromInt32Array.

LONG rgLongs[] = {4, 2};
VARIANT var;

HRESULT hr = InitVariantFromInt32Array(rgLongs, ARRAYSIZE(rgLongs), &var);

if (SUCCEEDED(hr))                            
{
    // var now is valid and has type VT_ARRAY | VT_I4.
    VariantClear(&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

Voir aussi

InitPropVariantFromInt32Vector

InitVariantFromInt32

VariantToInt32Array