diff options
Diffstat (limited to 'src/cmdline.h')
-rw-r--r-- | src/cmdline.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/cmdline.h b/src/cmdline.h index 22b24901b..295cdec81 100644 --- a/src/cmdline.h +++ b/src/cmdline.h @@ -19,12 +19,14 @@ #ifndef CMDLINE_H #define CMDLINE_H +#include <glib.h> + typedef struct _Options { - int kill; - int daemon; - int stdOutput; + gboolean kill; + gboolean daemon; + gboolean stdOutput; + gboolean verbose; int createDB; - int verbose; } Options; void parseOptions(int argc, char **argv, Options *options); |