~ubuntu-branches/ubuntu/precise/telepathy-glib/precise-201111172307

« back to all changes in this revision

Viewing changes to telepathy-glib/connection-internal.h

  • Committer: Ken VanDine
  • Date: 2011-11-17 20:53:21 UTC
  • mfrom: (1.6.34 upstream)
  • Revision ID: ken.vandine@canonical.com-20111117205321-l704j7kr1zgw5v9h
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
92
92
    TpContactMetadataStorageType group_storage;
93
93
    GPtrArray *contact_groups;
94
94
    gboolean groups_fetched;
 
95
    /* Queue of owned BlockedChangedItem */
 
96
    GQueue *blocked_changed_queue;
 
97
 
 
98
    /* ContactBlocking properies */
 
99
    TpContactBlockingCapabilities contact_blocking_capabilities;
 
100
    GPtrArray *blocked_contacts;
 
101
    gboolean blocked_contacts_fetched;
95
102
 
96
103
    TpProxyPendingCall *introspection_call;
97
104
 
159
166
    const TpProxyFeature *feature,
160
167
    GAsyncReadyCallback callback,
161
168
    gpointer user_data);
 
169
void _tp_connection_prepare_contact_list_props_async (TpProxy *proxy,
 
170
    const TpProxyFeature *feature,
 
171
    GAsyncReadyCallback callback,
 
172
    gpointer user_data);
162
173
void _tp_connection_prepare_contact_groups_async (TpProxy *proxy,
163
174
    const TpProxyFeature *feature,
164
175
    GAsyncReadyCallback callback,
165
176
    gpointer user_data);
166
177
void _tp_connection_contacts_changed_queue_free (GQueue *queue);
 
178
void _tp_connection_blocked_changed_queue_free (GQueue *queue);
 
179
 
 
180
void _tp_connection_prepare_contact_blocking_async (TpProxy *proxy,
 
181
    const TpProxyFeature *feature,
 
182
    GAsyncReadyCallback callback,
 
183
    gpointer user_data);
 
184
 
 
185
void _tp_connection_set_contact_blocked (TpConnection *self,
 
186
    TpContact *contact);
167
187
 
168
188
G_END_DECLS
169
189