aboutsummaryrefslogtreecommitdiffstats
path: root/app.c
diff options
context:
space:
mode:
Diffstat (limited to 'app.c')
-rw-r--r--app.c22
1 files changed, 22 insertions, 0 deletions
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 <X11/Xlib.h>
+
#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) {
+}