Partager via


InitVariantFromInt64, fonction (propvarutil.h)

Initialise une structure VARIANT avec une valeur entière 64 bits.

Syntaxe

HRESULT InitVariantFromInt64(
  [in]  LONGLONG llVal,
  [out] VARIANT  *pvar
);

Paramètres

[in] llVal

Type : LONGLONG

Valeur LONGLONG source.

[out] pvar

Type : VARIANT*

Lorsque cette fonction est retournée, 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 une variante VT_I8.

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 le cadre d’un programme plus large, montre comment utiliser InitVariantFromInt64.

VARIANT var;

HRESULT hr = InitVariantFromInt64(3176, &var);

if (SUCCEEDED(hr))
{
    // var now is valid and has type VT_I8.
    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
Composant redistribuable Windows Desktop Search (WDS) 3.0

Voir aussi

InitPropVariantFromInt64

VariantToInt64

VariantToInt64WithDefault