summaryrefslogtreecommitdiffstats
path: root/src/utils.h
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2009-11-11 21:26:33 +0100
committerGravatar Martin Szulecki2009-11-11 21:26:33 +0100
commitfea0152549d5e77f914f75c0ac315f30f9e26426 (patch)
tree4d7064468d46a4d4dfbae7dfa9b0e7d812aeecda /src/utils.h
parentd4bdab8bd7cc5030341d2bf13dbd006fc13a6a1c (diff)
parent28d1fcac0eda09e829ef8c8b46fad0e45590af16 (diff)
downloadlibimobiledevice-fea0152549d5e77f914f75c0ac315f30f9e26426.tar.gz
libimobiledevice-fea0152549d5e77f914f75c0ac315f30f9e26426.tar.bz2
Merge branch 'master' of git://github.com/MattColyer/libiphone into martin
Diffstat (limited to 'src/utils.h')
-rw-r--r--src/utils.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/utils.h b/src/utils.h
index 430e812..c99730a 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -22,10 +22,12 @@
#ifndef UTILS_H
#define UTILS_H
-inline void log_debug_msg(const char *format, ...);
-inline void log_dbg_msg(uint16_t id, const char *format, ...);
+#include <glib.h>
-inline void log_debug_buffer(const char *data, const int length);
-inline void dump_debug_buffer(const char *file, const char *data, const int length);
+G_GNUC_INTERNAL inline void log_debug_msg(const char *format, ...);
+G_GNUC_INTERNAL inline void log_dbg_msg(uint16_t id, const char *format, ...);
+
+G_GNUC_INTERNAL inline void log_debug_buffer(const char *data, const int length);
+G_GNUC_INTERNAL inline void dump_debug_buffer(const char *file, const char *data, const int length);
#endif