DECEDI_FREE_TRACK_LIST(3) — Subroutines
Name
DECEDI_FREE_TRACK_LIST − enables the caller to free all memory associated with a dynamic list of objects returned from a call to DECEDI_TRACK.
C Binding
#include <decedi_api_def.h>
unsigned long int DECEDI_FREE_TRACK_LIST ( results )
decedi_t_track_list ∗results;
Arguments
results
Results structure to be freed.
Description
This routine frees all memory associated with a results list that was previously returned by DECEDI_TRACK.
Return Values
DECEDI_SUCCESSThe list was successfully released.
DECEDI_BADPARAM
The request was rejected because the call had invalid, or missing, parameters.
Example
#include <decedi_api_def.h>
unsigned long int status;
decedi_t_track_list ∗results;
status = DECEDI_FREE_TRACK_LIST(&results /∗ results list to be freed∗/);