Fonction InitVariantFromBuffer (propvarutil.h)
Initialise une structure VARIANT avec le contenu d’une mémoire tampon.
Syntaxe
PSSTDAPI InitVariantFromBuffer(
[in] const void *pv,
[in] UINT cb,
[out] VARIANT *pvar
);
Paramètres
[in] pv
Type : const VOID*
Pointeur vers la mémoire tampon source.
[in] cb
Type : UINT
Longueur de la mémoire tampon, en octets.
[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_UI1 variant..
Exemples
L’exemple suivant, à inclure dans un programme plus grand, montre comment utiliser InitVariantFromBuffer.
// void *pv;
// UINT cb;
// Assume variable pv and cb are initialized and valid. pv points to a
// buffer and cb contains the size of the buffer in bytes.
VARIANT var;
HRESULT hr = InitVariantFromBuffer(pv, cb, & var);
if (SUCCEEDED(hr))
{
// var now is valid and has type VT_ARRAY | VT_UI1.
VariantClear(&var);
}
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 |