aboutsummaryrefslogtreecommitdiff
path: root/ui_ani.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui_ani.h')
-rw-r--r--ui_ani.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/ui_ani.h b/ui_ani.h
deleted file mode 100644
index 15962ae..0000000
--- a/ui_ani.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef UI_ANIC_H
-#define UI_ANIC_H 1
-
-#include <ncurses.h>
-
-
-struct anic {
- unsigned int x;
- unsigned int y;
- char state;
- char *fmt;
- chtype attrs;
-};
-
-struct anic *
-init_anic(unsigned int x, unsigned int y, chtype attrs, char *fmt);
-
-void
-free_anic(struct anic *a);
-
-int
-anic_cb(WINDOW *win, void *data, bool timed_out);
-
-void
-register_anic(struct anic *a);
-
-#endif