diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2010-11-26 15:24:56 +0000 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-05-09 12:14:08 +0200 |
commit | eefb6136fbd3abf5c0aebb9d6ad43e6351074bd4 (patch) | |
tree | 5109774383ba4e5362e70421e0b38f140b51344f /telepathy-glib/tls-certificate.h | |
parent | caeba3dc1d027a9c90d77ac5ac6d00e9997365af (diff) | |
download | telepathy-glib-eefb6136fbd3abf5c0aebb9d6ad43e6351074bd4.tar.gz |
TpTLSCertificate: have a CORE feature instead of our own prepare method
Diffstat (limited to 'telepathy-glib/tls-certificate.h')
-rw-r--r-- | telepathy-glib/tls-certificate.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/telepathy-glib/tls-certificate.h b/telepathy-glib/tls-certificate.h index 387ed4f24..4fc826e19 100644 --- a/telepathy-glib/tls-certificate.h +++ b/telepathy-glib/tls-certificate.h @@ -65,16 +65,15 @@ GType tp_tls_certificate_get_type (void); (G_TYPE_INSTANCE_GET_CLASS ((obj), TP_TYPE_TLS_CERTIFICATE, \ TpTLSCertificateClass)) +GQuark tp_tls_certificate_get_feature_quark_core (void); +#define TP_TLS_CERTIFICATE_FEATURE_CORE \ + (tp_tls_certificate_get_feature_quark_core ()) + TpTLSCertificate *tp_tls_certificate_new (TpDBusDaemon *dbus_daemon, const gchar *bus_name, const gchar *object_path, GError **error); -void tp_tls_certificate_prepare_async (TpTLSCertificate *self, - GAsyncReadyCallback callback, gpointer user_data); -gboolean tp_tls_certificate_prepare_finish (TpTLSCertificate *self, - GAsyncResult *result, GError **error); - void tp_tls_certificate_accept_async (TpTLSCertificate *self, GAsyncReadyCallback callback, gpointer user_data); |