From c1e6c1341ace1f61569e6d1d0dbfb36cb192113c Mon Sep 17 00:00:00 2001 From: FreeArtMan Date: Tue, 17 Feb 2015 15:15:26 +0900 Subject: Updated libterm. Updated config headers --- libterm/term_gui.c | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 libterm/term_gui.c (limited to 'libterm/term_gui.c') diff --git a/libterm/term_gui.c b/libterm/term_gui.c new file mode 100644 index 0000000..dcdc840 --- /dev/null +++ b/libterm/term_gui.c @@ -0,0 +1,31 @@ +#include "term_gui.h" + +int term_gui_init( term_gui *tg, term_screen *ts ) +{ + return 0; +} + + +int term_set_wh( term_screen *tg, int width, int height ) +{ + return 0; +} + + +int term_gui_input_box( term_gui *ts, int x, int y, int w, int h, char *prompt, + char *str, size_t sz ) +{ + return 0; +} + + +int term_gui_draw( term_gui *tg ) +{ + return 0; +} + + +int term_gui_destroy( term_gui *tg ) +{ + return 0; +} \ No newline at end of file -- cgit v1.2.3