Frees any data returned by any call that returns member information, including EssGGetMemberInfo, and EssGGetDataPointResults.
Syntax
ESSG_FUNC_M EssGFreeMemberInfo (hGrid, ulMembers, pszMembers);
Parameter | Data Type | Description |
---|---|---|
hGrid | ESSG_HGRID_T | Handle passed back from EssGNewGrid. |
ulMembers | ESSG_ULONG_T | Describes the number of elements in the ppszMembers array to be freed. |
pszMembers | ESSG_PSTR_T | Pointer to a one-dimensional array of member names to be freed. |
Notes
The parameters to this function include the number of elements in the one-dimensional array, and the one-dimensional array of member names itself.
Return Value
If successful, returns ESSG_STS_NOERR.
Access
None.
Example
EssGFreeMemberInfo(hGrid, ulMembers, pszMembers);
See an example that uses this code in EssGGetMemberInfo.
See Also