LIRC libraries
LinuxInfraredRemoteControl
 All Classes Files Functions Variables Typedefs Enumerations Macros Modules Pages
config_flags.h
Go to the documentation of this file.
1 /****************************************************************************
2 ** config_flags.h ***********************************************************
3 ****************************************************************************
4 *
5 */
6 
12 #ifndef _CONFIG_FLAGS_H
13 #define _CONFIG_FLAGS_H
14 
16 struct flaglist {
17  char* name;
18  int flag;
19 };
20 
22 extern const struct flaglist all_flags[];
23 
24 #endif
const struct flaglist all_flags[]
All flags i config file: Their name and mask.
Definition: config_file.c:99
Description of flag to print.
Definition: config_flags.h:16
char * name
Name of flag.
Definition: config_flags.h:17
int flag
Flag bitmask.
Definition: config_flags.h:18