diff options
Diffstat (limited to 'twcommon.h')
-rw-r--r-- | twcommon.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/twcommon.h b/twcommon.h new file mode 100644 index 000000000..2c96d04e2 --- /dev/null +++ b/twcommon.h @@ -0,0 +1,19 @@ +#ifndef TWCOMMON_HPP +#define TWCOMMON_HPP + +#ifdef __cplusplus +extern "C" { +#endif + +#include "gui/gui.h" +#define LOGERR(...) gui_print("E:" __VA_ARGS__) +#define LOGINFO(...) fprintf(stdout, "I:" __VA_ARGS__) + +#define STRINGIFY(x) #x +#define EXPAND(x) STRINGIFY(x) + +#ifdef __cplusplus +} +#endif + +#endif // TWCOMMON_HPP |