FreePropVariantArray function
The FreePropVariantArray function calls PropVariantClear on each of the PROPVARIANT structures in the rgvars array to make the value zero for each of the members of the array.
Syntax
WINOLEAPI FreePropVariantArray( _In_ ULONG cVariants, _In_ PROPVARIANT *rgvars );
Parameters
- cVariants [in]
-
Count of elements in the PROPVARIANT array (rgvars).
- rgvars [in]
-
Pointer to an initialized array of PROPVARIANT structures for which any deallocatable elements are to be freed. On exit, all zeroes are written to the PROPVARIANT structure (thus tagging them as VT_EMPTY).
Return value
- S_OK
-
The variant types are recognized and all items that can be freed have been freed.
- STG_E_INVALID_PARAMETER
-
One or more PROPVARIANT structures has an unknown type.
Remarks
FreePropVariantArray calls PropVariantClear on an array of PROPVARIANT structures to clear all the valid members. All valid PROPVARIANT structures are freed. If any of the PROPVARIANT structures contain illegal VT types, valid members are freed and the function returns STG_E_INVALIDPARAMETER.
Passing NULL for rgvars is legal, and produces a return code of S_OK.
Requirements
|
Minimum supported client |
Windows 2000 Professional [desktop apps | Windows Store apps] |
|---|---|
|
Minimum supported server |
Windows 2000 Server [desktop apps | Windows Store apps] |
|
Minimum supported phone |
Windows Phone 8 |
|
Header |
|
|
Library |
|
|
DLL |
|
See also