Fonction InitVariantFromUInt16Array (propvarutil.h)
Initialise une structure VARIANT avec un tableau de valeurs entières 16 bits non signées.
Syntaxe
PSSTDAPI InitVariantFromUInt16Array(
[in] const USHORT *prgn,
[in] ULONG cElems,
[out] VARIANT *pvar
);
Paramètres
[in] prgn
Type : const USHORT*
Pointeur vers le tableau source de valeurs USHORT .
[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.
Remarques
Crée un VT_ARRAY | VT_UI2 variante.
Exemples
L’exemple suivant, à inclure dans un programme plus grand, montre comment utiliser InitVariantFromUInt16Array.
USHORT rgShorts[] = {3, 1};
VARIANT var;
HRESULT hr = InitVariantFromUInt16Array(rgShorts, ARRAYSIZE(rgShorts), &var);
if (SUCCEEDED(hr))
{
// var now is valid and has type VT_ARRAY | VT_UI2.
VariantClear(&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 |