diff options
author | Michael Stapelberg <michael+git@stapelberg.de> | 2009-01-25 23:18:25 +0100 |
---|---|---|
committer | Michael Stapelberg <michael+git@stapelberg.de> | 2009-01-25 23:18:25 +0100 |
commit | bbd9e7f85d2ac1d88ccb7e847c534abae36bc46a (patch) | |
tree | 63214d29a6b517505a23a6d1a98f3c4b8858b640 /config.h | |
parent | 2abe135288dfdd0de5bf0239005d5930f092feca (diff) |
Move configuration file parsing into wmiistatus.c, saves a lot of hassle/SLOC/files
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/config.h b/config.h deleted file mode 100644 index fdd95a2..0000000 --- a/config.h +++ /dev/null @@ -1,27 +0,0 @@ -#include <stdbool.h> - -#ifndef _CONFIG_H -#define _CONFIG_H - -enum { ORDER_RUN, ORDER_WLAN, ORDER_ETH, ORDER_BATTERY, ORDER_LOAD, ORDER_TIME, MAX_ORDER }; - -#ifndef _IS_CONFIG_C /* Definitions for everybody */ -extern const char *wlan_interface; -extern const char *eth_interface; -extern const char *wmii_path; -extern const char *time_format; -extern const char *battery_path; -extern const char **run_watches; -extern unsigned int num_run_watches; -extern const char *wmii_normcolors; -extern const char order[MAX_ORDER][2]; -extern unsigned int interval; - -extern bool use_colors; -extern bool get_ethspeed; -#endif - -char *glob_path(const char *path); -int load_configuration(const char *configfile); - -#endif |