InitPropVariantFromUInt32, fonction (propvarutil.h)
Initialise une structure PROPVARIANT basée sur une valeur entière non signée 32 bits.
Syntaxe
HRESULT InitPropVariantFromUInt32(
[in] ULONG ulVal,
[out] PROPVARIANT *ppropvar
);
Paramètres
[in] ulVal
Type : ULONG
Valeur ULONG source.
[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 propvariant VT_UI4.
Il s’agit d’une fonction inline, avec son code source fourni dans l’en-tête. Il n’est inclus dans aucun fichier .dll ou .lib.
Exemples
L’exemple suivant, à inclure dans un programme plus grand, montre comment utiliser InitPropVariantFromUInt32.
PROPVARIANT propvar;
HRESULT hr = InitPropVariantFromUInt32(56, &propvar);
if (SUCCEEDED(hr))
{
// propvar now is valid and has type 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 |
DLL | Propsys.dll (version 6.0 ou ultérieure) |
Composant redistribuable | Windows Desktop Search (WDS) 3.0 |