separated devices
[mTask.git] / client / interface.h
index 0982d4c..9e16292 100644 (file)
@@ -1,6 +1,10 @@
 #ifndef INTERFACE_H
 #define INTERFACE_H
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 #include <stdbool.h>
 #include <stdint.h>
 #include <stdarg.h>
@@ -59,13 +63,16 @@ void led_off(uint8_t i);
 #endif
 
 /* Delay and communication */
-long getmillis(void);
-void msdelay(long ms);
+unsigned long getmillis(void);
+void msdelay(unsigned long ms);
 
 /* Auxilliary */
-void setup(void);
+void real_setup(void);
 void debug(char *fmt, ...);
 void pdie(char *s);
 void die(char *fmt, ...);
 
+#ifdef __cplusplus
+}
+#endif
 #endif