Merge remote-tracking branch 'upstream/master'
[matches/MCTX3420.git] / server / options.h
1 /**
2  * @file options.h
3  * @purpose Define the Options structure and the g_options variable
4  */
5
6 #ifndef _OPTIONS_H
7 #define _OPTIONS_H
8
9
10 /** Store options passed or calculated from arguments to the program **/
11 typedef struct
12 {
13         /** Name of program **/
14         const char * program;
15         /** Determines at what level log messages are shown **/
16         int verbosity;
17
18 } Options;
19
20 /** The only instance of the Options struct **/
21 extern Options g_options;
22
23 #endif //_OPTIONS_H

UCC git Repository :: git.ucc.asn.au