diff options
author | FreeArtMan <dos21h@gmail.com> | 2016-05-23 21:51:44 +0100 |
---|---|---|
committer | FreeArtMan <dos21h@gmail.com> | 2016-05-23 21:51:44 +0100 |
commit | cb141140579d796ae5cafe6da52b4f0b87be6a84 (patch) | |
tree | 61e0130a1581e1ba99dabed32c82782699db064c /libterm/term_gui.c | |
parent | 4baa01f8cd595cb0517d8f7f665d5be92528b6c2 (diff) | |
download | ihe-cb141140579d796ae5cafe6da52b4f0b87be6a84.tar.gz ihe-cb141140579d796ae5cafe6da52b4f0b87be6a84.zip |
Simplifying logic. Removing buffer features
Diffstat (limited to 'libterm/term_gui.c')
-rw-r--r-- | libterm/term_gui.c | 31 |
1 files changed, 31 insertions, 0 deletions
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 |