Directory listing management
|
TIEXPORT3 void TICALL ticalcs_dirlist_destroy(GNode** tree) |
tree : |
the tree to destroy.
|
Return value : |
none.
|
TIEXPORT3 void TICALL ticalcs_dirlist_display(GNode* tree) |
tree : |
the tree to display.
|
Return value : |
none.
|
TIEXPORT3 VarEntry *TICALL ticalcs_dirlist_ve_exist(GNode* tree, VarEntry *s) |
tree : |
the tree to parse.
|
s : |
the full name of the variable or application to search for.
|
Return value : |
a pointer on the #VarEntry found or NULL if not found.
|
TIEXPORT3 int TICALL ticalcs_dirlist_ve_count(GNode* tree) |
tree : |
a tree (var or app).
|
Return value : |
the number of entries.
|
TIEXPORT3 int TICALL ticalcs_dirlist_ram_used(GNode* tree) |
tree : |
a tree (var only).
|
Return value : |
size of all variables in bytes.
|
TIEXPORT3 int TICALL ticalcs_dirlist_flash_used(GNode* vars, GNode* apps) |
tree : |
a tree (app only).
|
Return value : |
size of all FLASH in bytes.
|
TIEXPORT3 void TICALL ticalcs_dirlist_ve_add(GNode* tree, VarEntry *entry) |
tree : |
source tree.
|
entry : |
entry to add.
|
Return value : |
none.
|
TIEXPORT3 void TICALL ticalcs_dirlist_ve_del(GNode* tree, VarEntry *entry) |
tree : |
source tree.
|
entry : |
entry to remove.
|
Return value : |
none.
|