[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The core functions represent critical access points into the Libtui library. They are defined in `tui/core.h' and are included by `tui/tui.h'.
Each core function is usually paired with a "More" version. These "More" versions perform the necessary curses calls for Libtui to function properly. Non-"More" versions are provided for when finer tuning of curses is desired.
exitfunc
is a callback used when an error occurs in
Libtui or when tuiEnd
or tuiEndMore
is called.
exitfunc
may be NULL
. When exitfunc
is called
from Libtui, the integer passed is 0 on success (no error),
or the value of errno.
If error
is non-0, the callback set by tuiInitMore
or
tuiInit
is called with that value (provided that the callback
is not NULL
).
doupdate
function.
exitfunc
is a callback used when an error occurs in
Libtui or when tuiEnd
or tuiEndMore
is called.
exitfunc
may be NULL
. When exitfunc
is called
from Libtui, the integer passed is 0 on success (no error),
or the value of errno.
If error
is non-0, the callback set by tuiInitMore
or
tuiInit
is called with that value (provided that the callback
is not NULL
).
doupdate
function.
[ << ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |