From 01121cea86aa9890b20ba48c674b8085ee799b5c Mon Sep 17 00:00:00 2001 From: Bert Date: Mon, 17 Jan 2011 16:40:54 +0100 Subject: Basic app_* stuff --- app.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'app.c') diff --git a/app.c b/app.c index 4c0fa32..4b8aebe 100644 --- a/app.c +++ b/app.c @@ -16,6 +16,28 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include + #include "sxiv.h" #include "app.h" +void app_init(app_t *app) { + if (app == NULL) + return; + + app->fileidx = 0; + + app->img.zoom = 100; + app->img.scalemode = SCALE_DOWN; + + app->win.w = WIN_WIDTH; + app->win.h = WIN_HEIGHT; + + win_open(&app->win); +} + +void app_run(app_t *app) { +} + +void app_quit(app_t *app) { +} -- cgit v1.2.3