diff options
author | Martin Szulecki | 2009-11-11 21:26:33 +0100 |
---|---|---|
committer | Martin Szulecki | 2009-11-11 21:26:33 +0100 |
commit | fea0152549d5e77f914f75c0ac315f30f9e26426 (patch) | |
tree | 4d7064468d46a4d4dfbae7dfa9b0e7d812aeecda /src/utils.h | |
parent | d4bdab8bd7cc5030341d2bf13dbd006fc13a6a1c (diff) | |
parent | 28d1fcac0eda09e829ef8c8b46fad0e45590af16 (diff) | |
download | libimobiledevice-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.h | 10 |
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 |