Fonction PropVariantGetInt32Elem (propvarutil.h)
Extrait un seul élément Int32 d’un PROPVARIANT de type VT_I4, VT_VECTOR | VT_I4 ou VT_ARRAY | VT_I4.
Syntaxe
PSSTDAPI PropVariantGetInt32Elem(
[in] REFPROPVARIANT propvar,
[in] ULONG iElem,
[out] LONG *pnVal
);
Paramètres
[in] propvar
Type : REFPROPVARIANT
Référence à la structure PROPVARIANT source.
[in] iElem
Type : ULONG
L’index vectoriel ou de tableau ; sinon, iElem doit être 0.
[out] pnVal
Type : LONG*
Lorsque cette fonction, contient la valeur Int32 extraite.
Valeur retournée
Type : HRESULT
Si cette fonction réussit, elle retourne S_OK. Sinon, elle retourne un code d’erreur HRESULT.
Notes
Cette fonction d’assistance fonctionne pour les structures PROPVARIANT des types suivants :
- VT_I4
- VT_VECTTOR | VT_I4
- VT_ARRAY | VT_I4
Exemples
L’exemple suivant utilise ce PropVariantGetInt32Elem avec une instruction d’itération pour accéder aux valeurs d’une structure PROPVARIANT .
// PROPVARIANT propvar;
// assume propvar is initialized and valid
if ((propvar.vt & VT_TYPEMASK) == VT_I4)
{
UINT cElem = PropVariantGetElementCount(propvar);
HRESULT hr = <mark type="const">S_OK</mark>;
for (UINT iElem = 0; SUCCEEDED(hr) && iElem < cElem; iElem ++)
{
LONG nValue;
hr = PropVariantGetInt32Elem(propvar, iElem, &nValue);
if (SUCCEEDED(hr))
{
// nValue is valid now
}
}
}
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 |