Files
twrp_multirom_m86/twcommon.h
Ethan Yonker 068c76888b Fix up twrpTar
Change-Id: I11a8f77b39a6f12aca6157c9aa76c34ef48c4b9f
2015-10-15 16:15:09 +02:00

27 lines
527 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
#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