add menu support to lcdproc client (currently hidden behind #ifdef LCDPROC_MENUS) -

patch provided by Andrew Foss
This commit is contained in:
marschap
2006-02-18 16:18:22 +00:00
parent dd66eac255
commit d77ada0bde
24 changed files with 619 additions and 238 deletions
+5
View File
@@ -1,7 +1,12 @@
#ifndef CPU_H
#define CPU_H
#ifdef LCDPROC_MENUS
int cpu_screen (int rep, int display, int * flags_ptr);
int cpu_graph_screen (int rep, int display, int * flags_ptr);
#else
int cpu_screen (int rep, int display);
int cpu_graph_screen (int rep, int display);
#endif
#endif