~ubuntu-branches/debian/sid/folks/sid

« back to all changes in this revision

Viewing changes to backends/telepathy/lib/tp-lowlevel.vapi

  • Committer: Bazaar Package Importer
  • Author(s): Laurent Bigonville, Laurent Bigonville, Sjoerd Simons
  • Date: 2010-11-04 15:37:37 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20101104153737-d6ystqvviify529o
Tags: 0.3.1-1
[ Laurent Bigonville ]
* New upstream release
  - debian/control:
    + Bump build-dependencies
    + Add minimal version for gobject-introspection build-dependency
    + Bump libtelepathy-glib-dev dependency against libfolks-telepathy-dev
* Adjust both .symbols files

[ Sjoerd Simons ]
* Don't run the tests for now

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
                public static void channel_group_change_membership (TelepathyGLib.Channel channel, uint handle, bool is_member) throws GLib.Error;
11
11
                public void connection_connect_to_new_group_channels (TelepathyGLib.Connection conn, [CCode (delegate_target_pos = 2.1)] Folks.TpLowlevelNewGroupChannelsCallback callback);
12
12
                public void connection_create_group_async (TelepathyGLib.Connection conn, string name);
13
 
                public async GLib.List<TelepathyGLib.Contact> connection_get_contacts_by_handle_async (TelepathyGLib.Connection conn, [CCode (array_length_pos = 2.5)] uint[] contact_handles, [CCode (array_length_pos = 3.1)] uint[] features) throws GLib.Error;
14
 
                public async GLib.List<TelepathyGLib.Contact> connection_get_contacts_by_id_async (TelepathyGLib.Connection conn, [CCode (array_length_pos = 2.5)] string[] contact_ids, [CCode (array_length_pos = 3.1)] uint[] features) throws GLib.Error;
15
 
                public async TelepathyGLib.Channel connection_open_contact_list_channel_async (TelepathyGLib.Connection conn, string name) throws GLib.Error;
 
13
                public async TelepathyGLib.ConnectionAliasFlags connection_get_alias_flags_async (TelepathyGLib.Connection conn) throws GLib.Error;
 
14
                public async GLib.List<TelepathyGLib.Contact> connection_get_contacts_by_handle_async (TelepathyGLib.Connection conn, [CCode (array_length_cname = "contact_handles_length", array_length_pos = 2.5)] uint[] contact_handles, [CCode (array_length_cname = "features_length", array_length_pos = 3.1)] uint[] features) throws GLib.Error;
 
15
                public async GLib.List<TelepathyGLib.Contact> connection_get_contacts_by_id_async (TelepathyGLib.Connection conn, [CCode (array_length_cname = "contact_ids_length", array_length_pos = 2.5)] string[] contact_ids, [CCode (array_length_cname = "features_length", array_length_pos = 3.1)] uint[] features) throws GLib.Error;
 
16
                public async GLib.GenericArray<weak void*> connection_get_requestable_channel_classes_async (TelepathyGLib.Connection conn) throws GLib.Error;
 
17
                public async unowned TelepathyGLib.Channel connection_open_contact_list_channel_async (TelepathyGLib.Connection conn, string name) throws GLib.Error;
16
18
                public void connection_set_contact_alias (TelepathyGLib.Connection conn, uint handle, string alias);
17
 
        }
18
 
        [CCode (cprefix = "TP_LOWLEVEL_ERROR_TP_LOWLEVEL_ERROR_INVALID_", cheader_filename = "tp-lowlevel.h")]
19
 
        public errordomain TpLowlevelError {
20
 
                TP_LOWLEVEL_ERROR_INVALID_ARGUMENT,
21
 
        }
22
 
        [CCode (cheader_filename = "tp-lowlevel.h", instance_pos = 1.9)]
23
 
        public delegate void TpLowlevelNewGroupChannelsCallback (TelepathyGLib.Channel channel);
 
19
                public static GLib.Quark error_quark ();
 
20
        }
 
21
        [CCode (cprefix = "FOLKS_TP_LOWLEVEL_ERROR_INVALID_", cheader_filename = "tp-lowlevel.h")]
 
22
        public enum TpLowlevelError {
 
23
                [CCode (cname = "FOLKS_TP_LOWLEVEL_ERROR_INVALID_ARGUMENT")]
 
24
                TP_LOWLEVEL_ERROR_INVALID_ARGUMENT
 
25
        }
 
26
        [CCode (cheader_filename = "tp-lowlevel.h", instance_pos = 2.9)]
 
27
        public delegate void TpLowlevelNewGroupChannelsCallback (TelepathyGLib.Channel? channel, GLib.AsyncResult result);
24
28
}