aboutsummaryrefslogtreecommitdiff
path: root/ui_ani.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui_ani.h')
-rw-r--r--ui_ani.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/ui_ani.h b/ui_ani.h
index 43a98b3..9622885 100644
--- a/ui_ani.h
+++ b/ui_ani.h
@@ -8,18 +8,19 @@ struct anic {
unsigned int x;
unsigned int y;
char state;
+ chtype attrs;
};
struct anic *
-init_anic(unsigned int x, unsigned int y);
+init_anic(unsigned int x, unsigned int y, chtype attrs);
void
free_anic(struct anic *a);
int
-anic_cb(WINDOW *win, void *data, bool needs_update);
+anic_cb(WINDOW *win, void *data, bool needs_update, bool timed_out);
void
-register_anic(struct anic *a, chtype attr);
+register_anic(struct anic *a);
#endif