aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/jni/utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/jni/utils.h')
-rw-r--r--src/main/jni/utils.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/main/jni/utils.h b/src/main/jni/utils.h
new file mode 100644
index 000000000..f17ae9025
--- /dev/null
+++ b/src/main/jni/utils.h
@@ -0,0 +1,29 @@
+#ifndef log_h
+#define log_h
+
+#include <android/log.h>
+#include <jni.h>
+
+#define LOG_TAG "tmessages"
+#ifndef LOG_DISABLED
+#define LOGI(...) __android_log_print(ANDROID_LOG_INFO, LOG_TAG, __VA_ARGS__)
+#define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__)
+#define LOGE(...) __android_log_print(ANDROID_LOG_ERROR, LOG_TAG, __VA_ARGS__)
+#define LOGV(...) __android_log_print(ANDROID_LOG_VERBOSE, LOG_TAG, __VA_ARGS__)
+#else
+#define LOGI(...)
+#define LOGD(...)
+#define LOGE(...)
+#define LOGV(...)
+#endif
+
+#ifndef max
+#define max(x, y) ((x) > (y)) ? (x) : (y)
+#endif
+#ifndef min
+#define min(x, y) ((x) < (y)) ? (x) : (y)
+#endif
+
+void throwException(JNIEnv *env, char *format, ...);
+
+#endif