-
-
- #ifndef APP_H
- #define APP_H
-
- #include "image.h"
- #include "window.h"
-
- typedef struct app_s {
- 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
|