00001 #ifndef GTASK_INTERNALS_H 00002 #define GTASK_INTERNALS_H 00003 00004 #ifdef G_HAVE_ISO_VARARGS 00005 #define g_debug(...) g_log( G_LOG_DOMAIN, \ 00006 G_LOG_LEVEL_DEBUG, \ 00007 __VA_ARGS__ ) 00008 00009 #define g_info(...) g_log( G_LOG_DOMAIN, \ 00010 G_LOG_LEVEL_INFO, \ 00011 __VA_ARGS__ ) 00012 #elif defined G_HAVE_GNUC_VARARGS 00013 #define g_debug(format...) g_log( G_LOG_DOMAIN, \ 00014 G_LOG_LEVEL_DEBUG, \ 00015 format ) 00016 00017 #define g_info(format...) g_log( G_LOG_DOMAIN, \ 00018 G_LOG_LEVEL_INFO, \ 00019 format ) 00020 #endif 00021 00022 #endif