/** * Define some compiletime options here * There is usually no need to edit anything here */ #ifndef __DEFINES_H__ #define __DEFINES_H__ /** * How many mountpoint options are allowed in config file */ #define MOUNTPOINTS 3 /** * Name for back links (..) */ #define BACKLINK "<- back" /** * How long to wait before getting info (ms) */ #define INFOWAIT 1000 /** * Socket to connect to lircd */ #define LIRCD "/dev/lircd" /** * Not used by IRFC2 but needed by the lirc_client lib * just ignore it */ #define LIRCCFGFILE "$HOME/.lircrc" #endif