Allow each gui_print command to specify a color Change LOGERR to use the error color Theme should specify colors for error, warning, and highlight Change-Id: Ie8ece34111f604e25fcb79e5b731cd4e61038ff9
26 lines
508 B
C
26 lines
508 B
C
#ifndef TWCOMMON_HPP
|
|
#define TWCOMMON_HPP
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifndef BUILD_TWRPTAR_MAIN
|
|
#include "gui/gui.h"
|
|
#define LOGERR(...) gui_print_color("error", "E:" __VA_ARGS__)
|
|
#define LOGINFO(...) fprintf(stdout, "I:" __VA_ARGS__)
|
|
#else
|
|
#define LOGERR(...) printf("E:" __VA_ARGS__)
|
|
#define LOGINFO(...) printf("I:" __VA_ARGS__)
|
|
#define gui_print(...) printf( __VA_ARGS__ )
|
|
#endif
|
|
|
|
#define STRINGIFY(x) #x
|
|
#define EXPAND(x) STRINGIFY(x)
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // TWCOMMON_HPP
|