00001 00010 #ifndef _DEBUG_H_ 00011 #define _DEBUG_H_ 00012 00013 #include <gtk/gtk.h> 00014 00015 #define debug_append2(fmt, args...) \ 00016 {\ 00017 gchar *msg = g_strdup_printf(fmt, ##args);\ 00018 debug_append(msg);\ 00019 g_free(msg);\ 00020 } 00021 00022 #endif /* _DEBUG_H_ */