diff options
| author | 2009-11-09 20:51:08 +0100 | |
|---|---|---|
| committer | 2009-11-10 06:56:21 -0800 | |
| commit | fdf94756f8f6a9fc9d218725f429d64fd91d7679 (patch) | |
| tree | 8bd343088ca1e4856861c87742ffa87dd9ae198a /src | |
| parent | 748167d15c7848ec1a814e3c4f429f3a05714918 (diff) | |
| download | libimobiledevice-fdf94756f8f6a9fc9d218725f429d64fd91d7679.tar.gz libimobiledevice-fdf94756f8f6a9fc9d218725f429d64fd91d7679.tar.bz2 | |
hide symbols that should not get exported
Diffstat (limited to 'src')
| -rw-r--r-- | src/userpref.h | 13 | ||||
| -rw-r--r-- | src/utils.h | 10 |
2 files changed, 13 insertions, 10 deletions
diff --git a/src/userpref.h b/src/userpref.h index fcb8b62..3540468 100644 --- a/src/userpref.h +++ b/src/userpref.h | |||
| @@ -23,6 +23,7 @@ | |||
| 23 | #define USERPREF_H | 23 | #define USERPREF_H |
| 24 | 24 | ||
| 25 | #include <gnutls/gnutls.h> | 25 | #include <gnutls/gnutls.h> |
| 26 | #include <glib.h> | ||
| 26 | 27 | ||
| 27 | #define USERPREF_E_SUCCESS 0 | 28 | #define USERPREF_E_SUCCESS 0 |
| 28 | #define USERPREF_E_INVALID_ARG -1 | 29 | #define USERPREF_E_INVALID_ARG -1 |
| @@ -33,11 +34,11 @@ | |||
| 33 | 34 | ||
| 34 | typedef int16_t userpref_error_t; | 35 | typedef int16_t userpref_error_t; |
| 35 | 36 | ||
| 36 | userpref_error_t userpref_get_keys_and_certs(gnutls_x509_privkey_t root_privkey, gnutls_x509_crt_t root_crt, gnutls_x509_privkey_t host_privkey, gnutls_x509_crt_t host_crt); | 37 | G_GNUC_INTERNAL userpref_error_t userpref_get_keys_and_certs(gnutls_x509_privkey_t root_privkey, gnutls_x509_crt_t root_crt, gnutls_x509_privkey_t host_privkey, gnutls_x509_crt_t host_crt); |
| 37 | userpref_error_t userpref_set_keys_and_certs(gnutls_datum_t * root_key, gnutls_datum_t * root_cert, gnutls_datum_t * host_key, gnutls_datum_t * host_cert); | 38 | G_GNUC_INTERNAL userpref_error_t userpref_set_keys_and_certs(gnutls_datum_t * root_key, gnutls_datum_t * root_cert, gnutls_datum_t * host_key, gnutls_datum_t * host_cert); |
| 38 | userpref_error_t userpref_get_certs_as_pem(gnutls_datum_t *pem_root_cert, gnutls_datum_t *pem_host_cert); | 39 | G_GNUC_INTERNAL userpref_error_t userpref_get_certs_as_pem(gnutls_datum_t *pem_root_cert, gnutls_datum_t *pem_host_cert); |
| 39 | userpref_error_t userpref_set_device_public_key(const char *uuid, gnutls_datum_t public_key); | 40 | G_GNUC_INTERNAL userpref_error_t userpref_set_device_public_key(const char *uuid, gnutls_datum_t public_key); |
| 40 | int userpref_has_device_public_key(const char *uuid); | 41 | G_GNUC_INTERNAL int userpref_has_device_public_key(const char *uuid); |
| 41 | void userpref_get_host_id(char **host_id); | 42 | G_GNUC_INTERNAL void userpref_get_host_id(char **host_id); |
| 42 | 43 | ||
| 43 | #endif | 44 | #endif |
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 @@ | |||
| 22 | #ifndef UTILS_H | 22 | #ifndef UTILS_H |
| 23 | #define UTILS_H | 23 | #define UTILS_H |
| 24 | 24 | ||
| 25 | inline void log_debug_msg(const char *format, ...); | 25 | #include <glib.h> |
| 26 | inline void log_dbg_msg(uint16_t id, const char *format, ...); | ||
| 27 | 26 | ||
| 28 | inline void log_debug_buffer(const char *data, const int length); | 27 | G_GNUC_INTERNAL inline void log_debug_msg(const char *format, ...); |
| 29 | inline void dump_debug_buffer(const char *file, const char *data, const int length); | 28 | G_GNUC_INTERNAL inline void log_dbg_msg(uint16_t id, const char *format, ...); |
| 29 | |||
| 30 | G_GNUC_INTERNAL inline void log_debug_buffer(const char *data, const int length); | ||
| 31 | G_GNUC_INTERNAL inline void dump_debug_buffer(const char *file, const char *data, const int length); | ||
| 30 | 32 | ||
| 31 | #endif | 33 | #endif |
