summaryrefslogtreecommitdiff
path: root/src/ui.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui.h')
-rw-r--r--src/ui.h14
1 files changed, 11 insertions, 3 deletions
diff --git a/src/ui.h b/src/ui.h
index 3e2bd00..191cc8f 100644
--- a/src/ui.h
+++ b/src/ui.h
@@ -14,7 +14,15 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-void ui_cursor_move (int x, int y);
-void ui_alternate_buffer_enable (void);
-void ui_alternate_buffer_disable (void);
+#ifndef UI_H
+#define UI_H
+
+/* TODO: Select this with IFDEFS */
+#include "tui.h"
+#define ui tui
+#define ui_create tui_create
+#define ui_destroy tui_destroy
+#define ui_loop tui_loop
+
+#endif /* UI_H */