diff options
author | Chris Toshok <toshok@ximian.com> | 2001-02-18 11:24:33 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2001-02-18 11:24:33 +0800 |
commit | e6d81792c4c7950a5a897211ace6590d4ad458f6 (patch) | |
tree | 8e6419caba5dbda8c71fc24177218f23491f1679 /addressbook/backend/idl | |
parent | ec5d0a0fab3c33f68efe32decf6a55f0b174a796 (diff) | |
download | gsoc2013-evolution-e6d81792c4c7950a5a897211ace6590d4ad458f6.tar gsoc2013-evolution-e6d81792c4c7950a5a897211ace6590d4ad458f6.tar.gz gsoc2013-evolution-e6d81792c4c7950a5a897211ace6590d4ad458f6.tar.bz2 gsoc2013-evolution-e6d81792c4c7950a5a897211ace6590d4ad458f6.tar.lz gsoc2013-evolution-e6d81792c4c7950a5a897211ace6590d4ad458f6.tar.xz gsoc2013-evolution-e6d81792c4c7950a5a897211ace6590d4ad458f6.tar.zst gsoc2013-evolution-e6d81792c4c7950a5a897211ace6590d4ad458f6.zip |
add sequence<string> typedef, and add getSupportedFields method.
2001-02-17 Chris Toshok <toshok@ximian.com>
* backend/idl/addressbook.idl: add sequence<string> typedef, and
add getSupportedFields method.
* backend/pas/pas-book.c
(impl_GNOME_Evolution_Addressbook_Book_getSupportedFields): new
function.
* backend/pas/pas-backend.c (pas_backend_class_init): init
get_supported_fields = NULL.
(pas_backend_get_supported_fields): new function.
* backend/pas/pas-backend.h: add prototype for
pas_backend_get_supported_fields.
* backend/pas/pas-backend-file.c
(pas_backend_file_get_supported_fields): new function.
(pas_backend_file_class_init): fill in get_supported_fields.
* backend/pas/pas-backend-ldap.c
(pas_backend_ldap_get_supported_fields): new function.
(pas_backend_ldap_class_init): fill in get_supported_fields.
svn path=/trunk/; revision=8270
Diffstat (limited to 'addressbook/backend/idl')
-rw-r--r-- | addressbook/backend/idl/addressbook.idl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/addressbook/backend/idl/addressbook.idl b/addressbook/backend/idl/addressbook.idl index 14d35dc934..87a7992f7b 100644 --- a/addressbook/backend/idl/addressbook.idl +++ b/addressbook/backend/idl/addressbook.idl @@ -15,6 +15,7 @@ module Addressbook { typedef string CardId; typedef string VCard; typedef sequence<VCard> VCardList; + typedef sequence<string> stringlist; interface CardCursor : Bonobo::Unknown { long count (); @@ -90,6 +91,8 @@ module Addressbook { void checkConnection (); + stringlist getSupportedFields (); + string getStaticCapabilities (); string getName (); @@ -105,6 +108,7 @@ module Addressbook { ProtocolNotSupported, AuthenticationFailed, AuthenticationRequired, + UnsupportedField, OtherError }; |