diff options
Diffstat (limited to 'src/interface.h')
| -rw-r--r-- | src/interface.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/interface.h b/src/interface.h index f196a83..ace0e3d 100644 --- a/src/interface.h +++ b/src/interface.h @@ -51,19 +51,20 @@ extern teco_view_t *teco_interface_current_view; /** @pure */ -void teco_interface_init(void); +void teco_interface_init(gint argc, gchar **argv); /** @pure */ GOptionGroup *teco_interface_get_options(void); /** @pure makes sense only on Curses */ -void teco_interface_init_color(guint color, guint32 rgb); +void teco_interface_disable_palette(void); typedef enum { - TECO_MSG_USER, + TECO_MSG_USER = 0, TECO_MSG_INFO, TECO_MSG_WARNING, - TECO_MSG_ERROR + TECO_MSG_ERROR, + TECO_MSG_MAX = TECO_MSG_ERROR } teco_msg_t; extern teco_msg_t teco_interface_msg_level; |
