aboutsummaryrefslogtreecommitdiffstats
path: root/app.h
diff options
context:
space:
mode:
Diffstat (limited to 'app.h')
-rw-r--r--app.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/app.h b/app.h
index 2f65579..1f66bec 100644
--- a/app.h
+++ b/app.h
@@ -23,11 +23,15 @@
#include "window.h"
typedef struct app_s {
- const char **filenames;
+ char **filenames;
unsigned int filecnt;
unsigned int fileidx;
img_t img;
win_t win;
} app_t;
+void app_init(app_t*);
+void app_run(app_t*);
+void app_quit(app_t*);
+
#endif /* APP_H */