2013-12-20 19:25:49 +00:00
|
|
|
#ifndef log_h
|
|
|
|
#define log_h
|
|
|
|
|
|
|
|
#include <android/log.h>
|
|
|
|
|
|
|
|
#define LOG_TAG "tmessages_native"
|
|
|
|
#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__)
|
|
|
|
|
2014-03-27 14:25:53 +00:00
|
|
|
#ifndef max
|
|
|
|
#define max(x, y) ((x) > (y)) ? (x) : (y)
|
|
|
|
#endif
|
|
|
|
#ifndef min
|
|
|
|
#define min(x, y) ((x) < (y)) ? (x) : (y)
|
|
|
|
#endif
|
|
|
|
|
2013-12-20 19:25:49 +00:00
|
|
|
#endif
|