summaryrefslogtreecommitdiffstats
path: root/options.h
diff options
context:
space:
mode:
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;