aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/backend/pas/pas-backend-ldap.h
diff options
context:
space:
mode:
authorChris Toshok <toshok@src.gnome.org>2000-03-31 05:56:40 +0800
committerChris Toshok <toshok@src.gnome.org>2000-03-31 05:56:40 +0800
commitad702dd6acf216bbf3ea54ed6a14eccce9b359ea (patch)
tree43f15f0b910f1e4a7fc29a05b630a06011b16fe9 /addressbook/backend/pas/pas-backend-ldap.h
parent04b899a36eb4f2b7e8fca477f676186e94a192f4 (diff)
downloadgsoc2013-evolution-ad702dd6acf216bbf3ea54ed6a14eccce9b359ea.tar
gsoc2013-evolution-ad702dd6acf216bbf3ea54ed6a14eccce9b359ea.tar.gz
gsoc2013-evolution-ad702dd6acf216bbf3ea54ed6a14eccce9b359ea.tar.bz2
gsoc2013-evolution-ad702dd6acf216bbf3ea54ed6a14eccce9b359ea.tar.lz
gsoc2013-evolution-ad702dd6acf216bbf3ea54ed6a14eccce9b359ea.tar.xz
gsoc2013-evolution-ad702dd6acf216bbf3ea54ed6a14eccce9b359ea.tar.zst
gsoc2013-evolution-ad702dd6acf216bbf3ea54ed6a14eccce9b359ea.zip
new-file new file
* addressbook/backend/pas/pas-backend-ldap.h: new-file * addressbook/backend/pas/pas-backend-ldap.c: new file both still in the "do not enter" stage. svn path=/trunk/; revision=2263
Diffstat (limited to 'addressbook/backend/pas/pas-backend-ldap.h')
-rw-r--r--addressbook/backend/pas/pas-backend-ldap.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/addressbook/backend/pas/pas-backend-ldap.h b/addressbook/backend/pas/pas-backend-ldap.h
new file mode 100644
index 0000000000..fa6d2295d8
--- /dev/null
+++ b/addressbook/backend/pas/pas-backend-ldap.h
@@ -0,0 +1,32 @@
+/*
+ * Copyright 2000, Helix Code, Inc.
+ */
+
+#ifndef __PAS_BACKEND_LDAP_H__
+#define __PAS_BACKEND_LDAP_H__
+
+#include <libgnome/gnome-defs.h>
+#include <pas-backend.h>
+
+typedef struct _PASBackendLDAPPrivate PASBackendLDAPPrivate;
+
+typedef struct {
+ PASBackend parent_object;
+ PASBackendLDAPPrivate *priv;
+} PASBackendLDAP;
+
+typedef struct {
+ PASBackendClass parent_class;
+} PASBackendLDAPClass;
+
+PASBackend *pas_backend_ldap_new (void);
+GtkType pas_backend_ldap_get_type (void);
+
+#define PAS_BACKEND_LDAP_TYPE (pas_backend_ldap_get_type ())
+#define PAS_BACKEND_LDAP(o) (GTK_CHECK_CAST ((o), PAS_BACKEND_LDAP_TYPE, PASBackendLDAP))
+#define PAS_BACKEND_LDAP_CLASS(k) (GTK_CHECK_CLASS_CAST((k), PAS_BACKEND_TYPE, PASBackendLDAPClass))
+#define PAS_IS_BACKEND_LDAP(o) (GTK_CHECK_TYPE ((o), PAS_BACKEND_LDAP_TYPE))
+#define PAS_IS_BACKEND_LDAP_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), PAS_BACKEND_LDAP_TYPE))
+
+#endif /* ! __PAS_BACKEND_LDAP_H__ */
+