blob: be243236fbdb69f44d9a1b18666912a2635f116e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#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
#include <stdio.h>
#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
|