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