Previous Topic: authxapi_GetObjectListValue FunctionNext Topic: authxapi_GetUserInfo Function


authxapi_FreeListValues

Valid on UNIX

The authxapi_FreeListValues function frees the memory allocated when a list of values was retrieved during a previous call to the authxapi_GetObjectListValue function.

If the function succeeds, it returns 0. If it fails, it sets the global variable errno to EINVAL and returns an error code AUTHXAPI_E_EINVAL, indicating that one of the pointers passed in was NULL.

int authxapi_FreeListValues (void ***value, unsigned int *count);
value

A pointer to the list of values held in the memory. Set to NULL when memory is successfully freed.

count

Number of elements in the value list. May be 0 if no elements are found. Set to 0 when memory is successfully freed.

More information:

authxapi_GetObjectListValue Function