diff options
author | Ethan Yonker <dees_troy@teamw.in> | 2014-02-11 18:44:06 +0100 |
---|---|---|
committer | Gerrit Code Review <gerrit2@gerrit> | 2014-02-12 16:15:11 +0100 |
commit | 50381976ff146d25f71c800ebda18a02be456fa2 (patch) | |
tree | b064ea9396bf9df9e586509d8c25dcb4eeec7479 /twcommon.h | |
parent | Add rule to make libopenaes_static (diff) | |
download | android_bootable_recovery-50381976ff146d25f71c800ebda18a02be456fa2.tar android_bootable_recovery-50381976ff146d25f71c800ebda18a02be456fa2.tar.gz android_bootable_recovery-50381976ff146d25f71c800ebda18a02be456fa2.tar.bz2 android_bootable_recovery-50381976ff146d25f71c800ebda18a02be456fa2.tar.lz android_bootable_recovery-50381976ff146d25f71c800ebda18a02be456fa2.tar.xz android_bootable_recovery-50381976ff146d25f71c800ebda18a02be456fa2.tar.zst android_bootable_recovery-50381976ff146d25f71c800ebda18a02be456fa2.zip |
Diffstat (limited to 'twcommon.h')
-rw-r--r-- | twcommon.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/twcommon.h b/twcommon.h index 2c96d04e2..69cc7e676 100644 --- a/twcommon.h +++ b/twcommon.h @@ -5,9 +5,15 @@ extern "C" { #endif +#ifndef BUILD_TWRPTAR_MAIN #include "gui/gui.h" #define LOGERR(...) gui_print("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) |