Museum

Home

Lab Overview

Retrotechnology Articles

⇒ Online Manual

Media Vault

Software Library

Restoration Projects

Artifacts Sought

DECEDI_FREE_ITEM_LIST(3)  —  Subroutines

 
 

Name

DECEDI_FREE_ITEM_LIST − enables the caller to free all memory associated with an item list and its associated values. 
 
 
 
 
 

C Binding

 #include    <decedi_api_def.h>
 unsigned long int DECEDI_FREE_ITEM_LIST ( item_list )
   decedi_t_item_list ∗item_list;

 
 
 
 
 

Arguments

 
 

item_list
The item list to remove from memory. You create the item list using DECEDI_ADD_ITEM_LIST.
 
 
 

Description

 
 
This routine deallocates all memory associated with an item list.
 
 

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_item_list ∗item_list;
 status = DECEDI_FREE_ITEM_LIST(&item_list /∗ item list to be freed∗/);
 

 
 
 
 
 

Typewritten Software • bear@typewritten.org • Edmonds, WA 98026