aboutsummaryrefslogtreecommitdiffstats
path: root/gui.h
diff options
context:
space:
mode:
Diffstat (limited to 'gui.h')
-rw-r--r--gui.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/gui.h b/gui.h
index 488f1120..d0ec128a 100644
--- a/gui.h
+++ b/gui.h
@@ -25,6 +25,11 @@ struct bar_t {
enum {horizontal, vertical};
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
/*
* Description: starts main GUI thread which keeps X and Y coordinates of touchpad updated for guiDraw() threads
*
@@ -66,5 +71,9 @@ Thread *guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, unsign
*/
Thread *guiDrawBarGraph(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, uint16_t orientation, uint16_t frameColor, uint16_t bkColor, uint16_t valueColor, uint16_t interval, uint16_t *percent);
+#ifdef __cplusplus
+}
+#endif
+
#endif