]> git.0d.be Git - empathy.git/blobdiff - libempathy/empathy-auth-factory.h
Updated Greek translation
[empathy.git] / libempathy / empathy-auth-factory.h
index 6f62a7a86af27ec2ee786a2596a007825ff3dca8..73e90578202505fc14ca0bfacdf916b4101485f2 100644 (file)
 #define __EMPATHY_AUTH_FACTORY_H__
 
 #include <glib-object.h>
-
-#include <telepathy-glib/base-client.h>
+#include <telepathy-glib/telepathy-glib.h>
 
 G_BEGIN_DECLS
 
 typedef struct _EmpathyAuthFactory EmpathyAuthFactory;
 typedef struct _EmpathyAuthFactoryClass EmpathyAuthFactoryClass;
+typedef struct _EmpathyAuthFactoryPriv EmpathyAuthFactoryPriv;
 
 struct _EmpathyAuthFactoryClass {
     TpBaseClientClass parent_class;
@@ -36,7 +36,7 @@ struct _EmpathyAuthFactoryClass {
 
 struct _EmpathyAuthFactory {
     TpBaseClient parent;
-    gpointer priv;
+    EmpathyAuthFactoryPriv *priv;
 };
 
 GType empathy_auth_factory_get_type (void);
@@ -58,11 +58,15 @@ GType empathy_auth_factory_get_type (void);
   (G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_AUTH_FACTORY, \
     EmpathyAuthFactoryClass))
 
-EmpathyAuthFactory * empathy_auth_factory_dup_singleton (void);
+EmpathyAuthFactory * empathy_auth_factory_new (TpSimpleClientFactory *factory);
 
 gboolean empathy_auth_factory_register (EmpathyAuthFactory *self,
     GError **error);
 
+void empathy_auth_factory_save_retry_password (EmpathyAuthFactory *self,
+    TpAccount *account,
+    const gchar *password);
+
 G_END_DECLS
 
 #endif /* #ifndef __EMPATHY_AUTH_FACTORY_H__*/