| 12345678910111213141516171819202122232425262728293031323334 |
- #ifndef TOOLBOX_TUI_H
- #define TOOLBOX_TUI_H
- #include "toolbox/vec2/vec2_uint16.h"
- #include <stdint.h>
- #include <sys/cdefs.h>
- #include <sys/types.h>
- #ifdef TOOLBOX_TYPEDEF
- typedef struct window window_st;
- #endif
- struct window;
- __attribute__((__deprecated__("This is trash")))
- struct window* win_create(void);
- __attribute__((__deprecated__("This is trash")))
- void win_destroy(struct window **self);
- __attribute__((__deprecated__("This is trash")))
- void tui_open(const struct window *self);
- __attribute__((__deprecated__("This is trash")))
- void tui_close(const struct window *self);
- __attribute__((__deprecated__("This is trash")))
- void tui_clear(const struct window *self);
- __attribute__((__deprecated__("This is trash")))
- void tui_print_rect(const struct window *self
- , const struct vec2_uint16 p_cord
- , const struct vec2_uint16 p_size);
- __attribute__((__deprecated__("This is trash")))
- void tui_mov_cursor(const struct window *self, const struct vec2_uint16 p_cord);
- #endif
|