#ifndef _DEMO_TYPEDEF_H_ #define _DEMO_TYPEDEF_H_ #include #include #include #include #include #include #define API_DEBUG 1 #define API_DEBUG_ERR 1 #define LOG(format, ...) \ if (API_DEBUG) \ printf("[DEBUG|%s@%s,%d] " format "\n", \ __FUNCTION__, __FILE__, __LINE__, ##__VA_ARGS__) #define LOG_MSG(format, ...) \ if (API_DEBUG_ERR) \ printf("[DEBUG|%s@%s,%d] " format "\n", \ __FUNCTION__, __FILE__, __LINE__, ##__VA_ARGS__) #endif