LIRC libraries
LinuxInfraredRemoteControl
 All Data Structures Files Functions Variables Typedefs Enumerations Macros Groups Pages
config_flags.h
1 /****************************************************************************
2 ** config_flags.h ***********************************************************
3 ****************************************************************************
4 *
5 * config_flags.h - Flags shared between config_file and dump_config.
6 *
7 */
8 
9 #ifndef _CONFIG_FLAGS_H
10 #define _CONFIG_FLAGS_H
11 
13 struct flaglist {
14  char* name;
15  int flag;
16 };
17 
19 extern const struct flaglist all_flags[];
20 
21 #endif
const struct flaglist all_flags[]
Definition: config_file.c:91
char * name
Definition: config_flags.h:14