 |
vldelete_volume, vldelete_variable
NAME
vldelete_volume - Delete the
volume data structure and free up all the memory
vldelete_variable - Delete a
specific variable from a given volume
SYNOPSIS
#include <parvox.h>
void vldelete_volume(vlvolume* vol)
void vldelete_variable(vlvolume* vol, int
index)
DESCRIPTION
vldelete_volume()
deletes the vlvolume data structure pointed by vol
and deallocates all the dynamic data structures within this volume, then
frees volume vol at last.
vldelete_variable() deletes a variable indexed
by index in volume vol.
Each volume may have multiple variables and each variable is numbered by
an index of range 0 to maximal number of variables. vldelete_variable()
deallocates all the data memory and resets all the pointers in this vlvariable
data structure. The variable of index
may be loaded with a new variable later.
SEE ALSO
vlcreate_volume,
vlcopy_volume, vlread_block
BACK TO INDEX
|
 |