aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/backend/pas/pas-backend-sync.h
diff options
context:
space:
mode:
Diffstat (limited to 'addressbook/backend/pas/pas-backend-sync.h')
-rw-r--r--addressbook/backend/pas/pas-backend-sync.h81
1 files changed, 0 insertions, 81 deletions
diff --git a/addressbook/backend/pas/pas-backend-sync.h b/addressbook/backend/pas/pas-backend-sync.h
deleted file mode 100644
index 2e176d9f5d..0000000000
--- a/addressbook/backend/pas/pas-backend-sync.h
+++ /dev/null
@@ -1,81 +0,0 @@
-/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
-/*
- */
-
-#ifndef __PAS_BACKEND_SYNC_H__
-#define __PAS_BACKEND_SYNC_H__
-
-#include <glib.h>
-#include <pas/pas-types.h>
-#include <pas/pas-backend.h>
-#include <pas/addressbook.h>
-
-#define PAS_TYPE_BACKEND_SYNC (pas_backend_sync_get_type ())
-#define PAS_BACKEND_SYNC(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), PAS_TYPE_BACKEND_SYNC, PASBackendSync))
-#define PAS_BACKEND_SYNC_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), PAS_TYPE_BACKEND_SYNC, PASBackendSyncClass))
-#define PAS_IS_BACKEND_SYNC(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), PAS_TYPE_BACKEND_SYNC))
-#define PAS_IS_BACKEND_SYNC_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), PAS_TYPE_BACKEND_SYNC))
-#define PAS_BACKEND_SYNC_GET_CLASS(k) (G_TYPE_INSTANCE_GET_CLASS ((k), PAS_TYPE_BACKEND_SYNC, PASBackendSyncClass))
-
-typedef struct _PASBackendSyncPrivate PASBackendSyncPrivate;
-
-typedef GNOME_Evolution_Addressbook_CallStatus PASBackendSyncStatus;
-
-struct _PASBackendSync {
- PASBackend parent_object;
- PASBackendSyncPrivate *priv;
-};
-
-struct _PASBackendSyncClass {
- PASBackendClass parent_class;
-
- /* Virtual methods */
- PASBackendSyncStatus (*remove_sync) (PASBackendSync *backend, PASBook *book);
- PASBackendSyncStatus (*create_contact_sync) (PASBackendSync *backend, PASBook *book,
- const char *vcard, EContact **contact);
- PASBackendSyncStatus (*remove_contacts_sync) (PASBackendSync *backend, PASBook *book,
- GList *id_list, GList **removed_ids);
- PASBackendSyncStatus (*modify_contact_sync) (PASBackendSync *backend, PASBook *book,
- const char *vcard, EContact **contact);
- PASBackendSyncStatus (*get_contact_sync) (PASBackendSync *backend, PASBook *book,
- const char *id, char **vcard);
- PASBackendSyncStatus (*get_contact_list_sync) (PASBackendSync *backend, PASBook *book,
- const char *query, GList **contacts);
- PASBackendSyncStatus (*get_changes_sync) (PASBackendSync *backend, PASBook *book,
- const char *change_id, GList **changes);
- PASBackendSyncStatus (*authenticate_user_sync) (PASBackendSync *backend, PASBook *book,
- const char *user,
- const char *passwd,
- const char *auth_method);
- PASBackendSyncStatus (*get_supported_fields_sync) (PASBackendSync *backend, PASBook *book,
- GList **fields);
- PASBackendSyncStatus (*get_supported_auth_methods_sync) (PASBackendSync *backend, PASBook *book,
- GList **methods);
-
- /* Padding for future expansion */
- void (*_pas_reserved0) (void);
- void (*_pas_reserved1) (void);
- void (*_pas_reserved2) (void);
- void (*_pas_reserved3) (void);
- void (*_pas_reserved4) (void);
-
-};
-
-typedef PASBackendSync * (*PASBackendSyncFactoryFn) (void);
-
-gboolean pas_backend_sync_construct (PASBackendSync *backend);
-
-GType pas_backend_sync_get_type (void);
-
-PASBackendSyncStatus pas_backend_sync_remove (PASBackendSync *backend, PASBook *book);
-PASBackendSyncStatus pas_backend_sync_create_contact (PASBackendSync *backend, PASBook *book, const char *vcard, EContact **contact);
-PASBackendSyncStatus pas_backend_sync_remove_contacts (PASBackendSync *backend, PASBook *book, GList *id_list, GList **removed_ids);
-PASBackendSyncStatus pas_backend_sync_modify_contact (PASBackendSync *backend, PASBook *book, const char *vcard, EContact **contact);
-PASBackendSyncStatus pas_backend_sync_get_contact (PASBackendSync *backend, PASBook *book, const char *id, char **vcard);
-PASBackendSyncStatus pas_backend_sync_get_contact_list (PASBackendSync *backend, PASBook *book, const char *query, GList **contacts);
-PASBackendSyncStatus pas_backend_sync_get_changes (PASBackendSync *backend, PASBook *book, const char *change_id, GList **changes);
-PASBackendSyncStatus pas_backend_sync_authenticate_user (PASBackendSync *backend, PASBook *book, const char *user, const char *passwd, const char *auth_method);
-PASBackendSyncStatus pas_backend_sync_get_supported_fields (PASBackendSync *backend, PASBook *book, GList **fields);
-PASBackendSyncStatus pas_backend_sync_get_supported_auth_methods (PASBackendSync *backend, PASBook *book, GList **methods);
-
-#endif /* ! __PAS_BACKEND_SYNC_H__ */