summaryrefslogtreecommitdiff
path: root/source4/gtk/common/select.h
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-03-23 01:02:29 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:11:12 -0500
commit9b48673ad9ed5cf2019df7111fe6ef89ad57573d (patch)
tree843cdf81bb15a79c9da532aea54f602bc7a59d54 /source4/gtk/common/select.h
parentdf8c102ec9c64a44ae4b7aa3a47bdf33178f2dcf (diff)
downloadsamba-9b48673ad9ed5cf2019df7111fe6ef89ad57573d.tar.gz
samba-9b48673ad9ed5cf2019df7111fe6ef89ad57573d.tar.bz2
samba-9b48673ad9ed5cf2019df7111fe6ef89ad57573d.zip
r5987: Add credentials callback for gtk+. The gtk+ apps now no longer
ask for a password when kerberos is being used. (This used to be commit 642ec7cbef6d392b49ed0fe86d1816d4953e30ad)
Diffstat (limited to 'source4/gtk/common/select.h')
-rw-r--r--source4/gtk/common/select.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/source4/gtk/common/select.h b/source4/gtk/common/select.h
index 336359c322..4cbeb09b0d 100644
--- a/source4/gtk/common/select.h
+++ b/source4/gtk/common/select.h
@@ -25,7 +25,6 @@
#ifdef HAVE_GTK
#define GTK_DISABLE_DEPRECATED
-
#include <gtk/gtk.h>
typedef struct _GtkSelectDomainDialog GtkSelectDomainDialog;
@@ -74,6 +73,14 @@ struct _GtkSelectHostDialogClass
#define GTK_SELECT_HOST_DIALOG_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, gtk_select_host_dialog_class_get_type (), GtkSelectHostDialogClass)
#define IS_GTK_SELECT_HOST_DIALOG(obj) GTK_CHECK_TYPE (obj, gtk_select_host_dialog_get_type ())
+GtkWidget *gtk_select_domain_dialog_new (struct dcerpc_pipe *sam_pipe);
+GType gtk_select_domain_dialog_get_type (void);
+struct policy_handle gtk_select_domain_dialog_get_handle(GtkSelectDomainDialog *d);
+GtkWidget *gtk_select_host_dialog_new (struct dcerpc_pipe *sam_pipe, BOOL nocredentials);
+const char *gtk_select_host_dialog_get_host (GtkSelectHostDialog *d);
+GType gtk_select_host_dialog_get_type (void);
+
+
#endif
#endif