|
-
-
- #ifndef OPTIONS_H
- #define OPTIONS_H
-
- #include "image.h"
-
- typedef struct options_s {
- const char **filenames;
- int filecnt;
- unsigned char from_stdin;
-
- scalemode_t scalemode;
- float zoom;
- unsigned char aa;
- unsigned char thumbnails;
-
- unsigned char fixed;
- unsigned char fullscreen;
- char *geometry;
-
- unsigned char quiet;
- unsigned char recursive;
- } options_t;
-
- extern const options_t *options;
-
- void print_usage();
- void print_version();
-
- void parse_options(int, char**);
-
- #endif
|