Go to the documentation of this file.
21 #ifndef LIBVLC_CONFIGURATION_H
22 # define LIBVLC_CONFIGURATION_H 1
37 #define config_LoadCmdLine(a,b,c,d) config_LoadCmdLine(VLC_OBJECT(a),b,c,d)
38 #define config_LoadConfigFile(a) config_LoadConfigFile(VLC_OBJECT(a))
44 #define CONFIG_CLASS(x) ((x) & ~0x1F)
46 #define IsConfigStringType(type) \
47 (((type) & CONFIG_ITEM_STRING) != 0)
48 #define IsConfigIntegerType(type) \
49 (((type) & CONFIG_ITEM_INTEGER) != 0)
50 #define IsConfigFloatType(type) \
51 ((type) == CONFIG_ITEM_FLOAT)
59 #define CONFIG_FILE "vlcrc"