InitPropVariantFromCLSID, fonction (propvarutil.h)
Initialise une structure PROPVARIANT basée sur un identificateur de classe (CLSID).
Syntaxe
PSSTDAPI InitPropVariantFromCLSID(
[in] REFCLSID clsid,
[out] PROPVARIANT *ppropvar
);
Paramètres
[in] clsid
Type : REFCLSID
Référence au CLSID.
[out] ppropvar
Type : PROPVARIANT*
Lorsque cette fonction est retournée, 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_CLSID.
Exemples
L’exemple suivant, à inclure dans le cadre d’un programme plus large, montre comment utiliser InitPropVariantFromCLSID.
PROPVARIANT propvar;
HRESULT hr = InitPropVariantFromCLSID(CLSID_PropertySystem, &propvar);
if (SUCCEEDED(hr))
{
// propvar now is valid and has type VT_CLSID.
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 |
Bibliothèque | Propsys.lib |
DLL | Propsys.dll (version 6.0 ou ultérieure) |
Composant redistribuable | Windows Desktop Search (WDS) 3.0 |