diff options
author | Guido Günther <agx@sigxcpu.org> | 2011-03-09 10:55:17 +0100 |
---|---|---|
committer | Guido Günther <agx@sigxcpu.org> | 2011-03-09 10:55:17 +0100 |
commit | b05bdc2712e5f3e0dd1df73f7675462012538a3e (patch) | |
tree | d76971cbfd67b2833693d2c985bdb74c0f882704 /src/ka-pwdialog.h | |
parent | Document changes and release 2.91.90-1 (diff) | |
parent | New upstream version 2.91.91 (diff) | |
download | krb5-auth-dialog-b05bdc2712e5f3e0dd1df73f7675462012538a3e.tar.gz krb5-auth-dialog-b05bdc2712e5f3e0dd1df73f7675462012538a3e.tar.bz2 krb5-auth-dialog-b05bdc2712e5f3e0dd1df73f7675462012538a3e.zip |
Merge commit 'upstream/2.91.91'
Diffstat (limited to 'src/ka-pwdialog.h')
-rw-r--r-- | src/ka-pwdialog.h | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/src/ka-pwdialog.h b/src/ka-pwdialog.h index 1c244f8..ff518dc 100644 --- a/src/ka-pwdialog.h +++ b/src/ka-pwdialog.h @@ -28,7 +28,6 @@ #include "config.h" G_BEGIN_DECLS - #define KA_TYPE_PWDIALOG (ka_pwdialog_get_type ()) #define KA_PWDIALOG(obj) \ (G_TYPE_CHECK_INSTANCE_CAST ((obj), KA_TYPE_PWDIALOG, KaPwDialog)) @@ -40,26 +39,26 @@ G_BEGIN_DECLS (G_TYPE_CHECK_CLASS_TYPE ((klass), KA_TYPE_PWDIALOG)) #define KA_PWDIALOG_GET_CLASS(obj) \ (G_TYPE_INSTANCE_GET_CLASS ((obj), KA_TYPE_PWDIALOG, KaPwDialogClass)) - -typedef struct _KaPwDialog KaPwDialog; -typedef struct _KaPwDialogClass KaPwDialogClass; + typedef struct _KaPwDialog KaPwDialog; +typedef struct _KaPwDialogClass KaPwDialogClass; typedef struct _KaPwDialogPrivate KaPwDialogPrivate; GType ka_pwdialog_get_type (void); /* public functions */ -KaPwDialog* ka_pwdialog_create(GtkBuilder *xml); +KaPwDialog *ka_pwdialog_create (GtkBuilder *xml); + /* setup everything for the next prompting */ -void ka_pwdialog_setup (KaPwDialog* pwdialog, const gchar *krb5prompt, +void ka_pwdialog_setup (KaPwDialog *pwdialog, const gchar *krb5prompt, gboolean invalid_auth); -gint ka_pwdialog_run(KaPwDialog *pwdialog); -void ka_pwdialog_hide(const KaPwDialog *pwdialog, gboolean force); -void ka_pwdialog_set_persist(KaPwDialog *pwdialog, gboolean persist); +gint ka_pwdialog_run (KaPwDialog *pwdialog); +void ka_pwdialog_hide (const KaPwDialog *pwdialog, gboolean force); +void ka_pwdialog_set_persist (KaPwDialog *pwdialog, gboolean persist); void ka_pwdialog_error (KaPwDialog *pwdialog, const char *msg); + /* update the expiry information in the status entry */ gboolean ka_pwdialog_status_update (KaPwDialog *pwdialog); -const gchar* ka_pwdialog_get_password(KaPwDialog *dialog); +const gchar *ka_pwdialog_get_password (KaPwDialog *dialog); G_END_DECLS - #endif |