diff options
author | Martin Szulecki | 2010-05-28 18:18:00 +0200 |
---|---|---|
committer | Martin Szulecki | 2010-06-20 16:40:30 +0200 |
commit | 4114926901ac71274f39cec0dbf9199cfe6aa95a (patch) | |
tree | 3de0ddb40fcb0d1e8fa36f441537e1abfd453378 | |
parent | 4f2f9e477cdda4158957f251d129ef630e5333f6 (diff) | |
download | libimobiledevice-4114926901ac71274f39cec0dbf9199cfe6aa95a.tar.gz libimobiledevice-4114926901ac71274f39cec0dbf9199cfe6aa95a.tar.bz2 |
Expose more userpref functions for use in the new idevicepair tool
-rw-r--r-- | src/userpref.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/userpref.h b/src/userpref.h index d6952d3..f9d3913 100644 --- a/src/userpref.h +++ b/src/userpref.h @@ -38,9 +38,9 @@ G_GNUC_INTERNAL userpref_error_t userpref_get_keys_and_certs(gnutls_x509_privkey 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); G_GNUC_INTERNAL userpref_error_t userpref_get_certs_as_pem(gnutls_datum_t *pem_root_cert, gnutls_datum_t *pem_host_cert); G_GNUC_INTERNAL userpref_error_t userpref_set_device_public_key(const char *uuid, gnutls_datum_t public_key); -G_GNUC_INTERNAL userpref_error_t userpref_remove_device_public_key(const char *uuid); +userpref_error_t userpref_remove_device_public_key(const char *uuid); G_GNUC_INTERNAL int userpref_has_device_public_key(const char *uuid); userpref_error_t userpref_get_paired_uuids(char ***list, unsigned int *count); -G_GNUC_INTERNAL void userpref_get_host_id(char **host_id); +void userpref_get_host_id(char **host_id); #endif |