InitVariantFromUInt16Array function (propvarutil.h)

Initializes a VARIANT structure with an array of unsigned 16-bit integer values.

Syntax

PSSTDAPI InitVariantFromUInt16Array(
  [in]  const USHORT *prgn,
  [in]  ULONG        cElems,
  [out] VARIANT      *pvar
);

Parameters

[in] prgn

Type: const USHORT*

Pointer to the source array of USHORT values.

[in] cElems

Type: ULONG

The number of elements in the array pointed to by prgn.

[out] pvar

Type: VARIANT*

When this function returns, contains the initialized VARIANT structure.

Return value

Type: HRESULT

If this function succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.

Remarks

Creates a VT_ARRAY | VT_UI2 variant.

Examples

The following example, to be included as part of a larger program, demonstrates how to use InitVariantFromUInt16Array.

USHORT rgShorts[] = {3, 1};
VARIANT var;

HRESULT hr = InitVariantFromUInt16Array(rgShorts, ARRAYSIZE(rgShorts), &var);

if (SUCCEEDED(hr))
{
    // var now is valid and has type VT_ARRAY | VT_UI2.
    VariantClear(&propvar);
}

Requirements

Requirement Value
Minimum supported client Windows XP with SP2, Windows Vista [desktop apps only]
Minimum supported server Windows Server 2003 with SP1 [desktop apps only]
Target Platform Windows
Header propvarutil.h
Library Propsys.lib
DLL Propsys.dll (version 6.0 or later)
Redistributable Windows Desktop Search (WDS) 3.0

See also

InitPropVariantFromUInt16Vector

InitVariantFromUInt16

VariantToUInt16Array