From 65251638ddea3310ed69534191198afa9e9d97ed Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Sat, 4 Oct 2008 18:42:12 +0200 Subject: Cleanup - Add more warning-flags to Makefile and fix warnings - Create config.h as a central place for paths/names - Add wmiistatus.h for definitions --- wmiistatus.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 wmiistatus.h (limited to 'wmiistatus.h') diff --git a/wmiistatus.h b/wmiistatus.h new file mode 100644 index 0000000..9556b4f --- /dev/null +++ b/wmiistatus.h @@ -0,0 +1,14 @@ +#define BEGINS_WITH(haystack, needle) (strncmp(haystack, needle, strlen(needle)) == 0) + +static char output[512]; +static bool first_push = true; + +typedef enum { CS_DISCHARGING, CS_CHARGING, CS_FULL } charging_status_t; + +static void write_to_statusbar(const char *message); +static void die(const char *message); +static char *skip_character(char *input, char character, int amount); +static void push_part(const char *input, const int n); +static char *get_battery_info(void); +static char *get_wireless_info(void); +static char *get_eth_info(void); -- cgit v1.2.3