summaryrefslogtreecommitdiffstats
path: root/options.h
diff options
context:
space:
mode:
authorBert <ber.t@gmx.com>2011-01-28 13:34:16 +0100
committerBert <ber.t@gmx.com>2011-01-28 13:34:16 +0100
commit8123d63c5b76909ce70f09614ac0e45760a69d71 (patch)
treed45e42d2b1879b88b94a03335998d6f5d9174449 /options.h
parent17e2a795bbcdbf9bc8eb07e2aaca0a494871b9e8 (diff)
downloadnsxiv-8123d63c5b76909ce70f09614ac0e45760a69d71.tar.zst
Added plenty lots of options
Diffstat (limited to 'options.h')
-rw-r--r--options.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/options.h b/options.h
index 03acf7c..707dd90 100644
--- a/options.h
+++ b/options.h
@@ -19,11 +19,19 @@
#ifndef OPTIONS_H
#define OPTIONS_H
+#include "image.h"
+
typedef struct options_s {
const char **filenames;
int filecnt;
+
+ scalemode_t scalemode;
+ float zoom;
+ unsigned char aa;
+
int winw;
int winh;
+ unsigned char fullscreen;
} options_t;
extern const options_t *options;