media: fix relay-info with Farstream 0.2
[siplcs.git] / src / telepathy / telepathy-stubs.c
blob66c8f44770c774b6abad77e6905ee7189ccfe777
1 /**
2 * @file telepathy-stubs.c
4 * pidgin-sipe
6 * Copyright (C) 2012-2013 SIPE Project <http://sipe.sourceforge.net/>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 * Stubs for all unimplemented backend functions, because
26 * - feature is not yet implemented, or
27 * - feature can't be implemented for telepathy backend
29 * Ordering copied from sipe-backend.h
32 #ifdef HAVE_CONFIG_H
33 #include "config.h"
34 #endif
36 #include <glib.h>
38 #include "sipe-backend.h"
39 #include "sipe-common.h"
40 #include "sipe-core.h"
42 /** BUDDIES ******************************************************************/
44 void sipe_backend_buddy_list_processing_start(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public) {}
45 void sipe_backend_buddy_request_add(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public,
46 SIPE_UNUSED_PARAMETER const gchar *who,
47 SIPE_UNUSED_PARAMETER const gchar *alias) {}
48 void sipe_backend_buddy_request_authorization(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public,
49 SIPE_UNUSED_PARAMETER const gchar *who,
50 SIPE_UNUSED_PARAMETER const gchar *alias,
51 SIPE_UNUSED_PARAMETER gboolean on_list,
52 SIPE_UNUSED_PARAMETER sipe_backend_buddy_request_authorization_cb auth_cb,
53 SIPE_UNUSED_PARAMETER sipe_backend_buddy_request_authorization_cb deny_cb,
54 SIPE_UNUSED_PARAMETER gpointer data) {}
55 gboolean sipe_backend_buddy_is_blocked(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public,
56 SIPE_UNUSED_PARAMETER const gchar *who) { return(FALSE); }
57 void sipe_backend_buddy_set_blocked_status(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public,
58 SIPE_UNUSED_PARAMETER const gchar *who,
59 SIPE_UNUSED_PARAMETER gboolean blocked) {}
60 gboolean sipe_backend_buddy_group_rename(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public,
61 SIPE_UNUSED_PARAMETER const gchar *old_name,
62 SIPE_UNUSED_PARAMETER const gchar *new_name) { return(FALSE); }
63 struct sipe_backend_buddy_info *sipe_backend_buddy_info_start(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public) { return(NULL); }
64 void sipe_backend_buddy_info_add(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public,
65 SIPE_UNUSED_PARAMETER struct sipe_backend_buddy_info *info,
66 SIPE_UNUSED_PARAMETER sipe_buddy_info_fields key,
67 SIPE_UNUSED_PARAMETER const gchar *value) {}
68 void sipe_backend_buddy_info_break(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public,
69 SIPE_UNUSED_PARAMETER struct sipe_backend_buddy_info *info) {}
70 void sipe_backend_buddy_info_finalize(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public,
71 SIPE_UNUSED_PARAMETER struct sipe_backend_buddy_info *info,
72 SIPE_UNUSED_PARAMETER const gchar *uri) {}
73 void sipe_backend_buddy_tooltip_add(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public,
74 SIPE_UNUSED_PARAMETER struct sipe_backend_buddy_tooltip *tooltip,
75 SIPE_UNUSED_PARAMETER const gchar *description,
76 SIPE_UNUSED_PARAMETER const gchar *value) {}
77 struct sipe_backend_buddy_menu *sipe_backend_buddy_menu_start(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public) { return(NULL); }
78 struct sipe_backend_buddy_menu *sipe_backend_buddy_menu_add(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public,
79 SIPE_UNUSED_PARAMETER struct sipe_backend_buddy_menu *menu,
80 SIPE_UNUSED_PARAMETER const gchar *label,
81 SIPE_UNUSED_PARAMETER enum sipe_buddy_menu_type type,
82 SIPE_UNUSED_PARAMETER gpointer parameter) { return(NULL); }
83 struct sipe_backend_buddy_menu *sipe_backend_buddy_menu_separator(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public,
84 SIPE_UNUSED_PARAMETER struct sipe_backend_buddy_menu *menu,
85 SIPE_UNUSED_PARAMETER const gchar *label) { return(NULL); }
86 struct sipe_backend_buddy_menu *sipe_backend_buddy_sub_menu_add(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public,
87 SIPE_UNUSED_PARAMETER struct sipe_backend_buddy_menu *menu,
88 SIPE_UNUSED_PARAMETER const gchar *label,
89 SIPE_UNUSED_PARAMETER struct sipe_backend_buddy_menu *sub) { return(NULL); }
91 /** CHAT *********************************************************************/
93 void sipe_backend_chat_session_destroy(SIPE_UNUSED_PARAMETER struct sipe_backend_chat_session *session) {}
94 void sipe_backend_chat_add(SIPE_UNUSED_PARAMETER struct sipe_backend_chat_session *backend_session,
95 SIPE_UNUSED_PARAMETER const gchar *uri,
96 SIPE_UNUSED_PARAMETER gboolean is_new) {}
97 void sipe_backend_chat_close(SIPE_UNUSED_PARAMETER struct sipe_backend_chat_session *backend_session) {}
98 struct sipe_backend_chat_session *sipe_backend_chat_create(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public,
99 SIPE_UNUSED_PARAMETER struct sipe_chat_session *session,
100 SIPE_UNUSED_PARAMETER const gchar *title,
101 SIPE_UNUSED_PARAMETER const gchar *nick) { return(NULL); }
102 gboolean sipe_backend_chat_find(SIPE_UNUSED_PARAMETER struct sipe_backend_chat_session *backend_session,
103 SIPE_UNUSED_PARAMETER const gchar *uri) { return(FALSE); }
104 gboolean sipe_backend_chat_is_operator(SIPE_UNUSED_PARAMETER struct sipe_backend_chat_session *backend_session,
105 SIPE_UNUSED_PARAMETER const gchar *uri) { return(FALSE); }
106 void sipe_backend_chat_message(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public,
107 SIPE_UNUSED_PARAMETER struct sipe_backend_chat_session *backend_session,
108 SIPE_UNUSED_PARAMETER const gchar *from,
109 SIPE_UNUSED_PARAMETER time_t when,
110 SIPE_UNUSED_PARAMETER const gchar *html) {}
111 void sipe_backend_chat_operator(SIPE_UNUSED_PARAMETER struct sipe_backend_chat_session *backend_session,
112 SIPE_UNUSED_PARAMETER const gchar *uri) {}
113 void sipe_backend_chat_rejoin(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public,
114 SIPE_UNUSED_PARAMETER struct sipe_backend_chat_session *backend_session,
115 SIPE_UNUSED_PARAMETER const gchar *nick,
116 SIPE_UNUSED_PARAMETER const gchar *title) {}
117 void sipe_backend_chat_rejoin_all(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public) {}
118 void sipe_backend_chat_remove(SIPE_UNUSED_PARAMETER struct sipe_backend_chat_session *backend_session,
119 SIPE_UNUSED_PARAMETER const gchar *uri) {}
120 void sipe_backend_chat_show(SIPE_UNUSED_PARAMETER struct sipe_backend_chat_session *backend_session) {}
121 void sipe_backend_chat_topic(SIPE_UNUSED_PARAMETER struct sipe_backend_chat_session *backend_session,
122 SIPE_UNUSED_PARAMETER const gchar *topic) {}
124 /** FILE TRANSFER ************************************************************/
126 void sipe_backend_ft_error(SIPE_UNUSED_PARAMETER struct sipe_file_transfer *ft,
127 SIPE_UNUSED_PARAMETER const gchar *errmsg) {}
128 void sipe_backend_ft_deallocate(SIPE_UNUSED_PARAMETER struct sipe_file_transfer *ft) {}
129 void sipe_backend_ft_cancel_local(SIPE_UNUSED_PARAMETER struct sipe_file_transfer *ft) {}
130 void sipe_backend_ft_cancel_remote(SIPE_UNUSED_PARAMETER struct sipe_file_transfer *ft) {}
131 void sipe_backend_ft_incoming(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public,
132 SIPE_UNUSED_PARAMETER struct sipe_file_transfer *ft,
133 SIPE_UNUSED_PARAMETER const gchar *who,
134 SIPE_UNUSED_PARAMETER const gchar *file_name,
135 SIPE_UNUSED_PARAMETER gsize file_size) {}
136 void sipe_backend_ft_start(SIPE_UNUSED_PARAMETER struct sipe_file_transfer *ft,
137 SIPE_UNUSED_PARAMETER struct sipe_backend_fd *fd,
138 SIPE_UNUSED_PARAMETER const char* ip,
139 SIPE_UNUSED_PARAMETER unsigned port) {}
140 gboolean sipe_backend_ft_is_incoming(SIPE_UNUSED_PARAMETER struct sipe_file_transfer *ft) { return(FALSE); }
142 /** GROUP CHAT ***************************************************************/
144 void sipe_backend_groupchat_room_add(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public,
145 SIPE_UNUSED_PARAMETER const gchar *uri,
146 SIPE_UNUSED_PARAMETER const gchar *name,
147 SIPE_UNUSED_PARAMETER const gchar *description,
148 SIPE_UNUSED_PARAMETER guint users,
149 SIPE_UNUSED_PARAMETER guint32 flags) {}
150 void sipe_backend_groupchat_room_terminate(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public) {}
152 /** IM ***********************************************************************/
154 void sipe_backend_im_message(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public,
155 SIPE_UNUSED_PARAMETER const gchar *from,
156 SIPE_UNUSED_PARAMETER const gchar *html) {}
157 void sipe_backend_im_topic(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public,
158 SIPE_UNUSED_PARAMETER const gchar *with,
159 SIPE_UNUSED_PARAMETER const gchar *topic) {}
161 /** MARKUP *******************************************************************/
163 gchar *sipe_backend_markup_css_property(SIPE_UNUSED_PARAMETER SIPE_UNUSED_PARAMETER const gchar *style,
164 SIPE_UNUSED_PARAMETER const gchar *option) { return(g_strdup("")); }
165 gchar *sipe_backend_markup_strip_html(SIPE_UNUSED_PARAMETER SIPE_UNUSED_PARAMETER const gchar *html) { return(g_strdup("")); }
167 /** MEDIA ********************************************************************/
168 #ifdef HAVE_VV
169 struct sipe_backend_media *sipe_backend_media_new(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public,
170 SIPE_UNUSED_PARAMETER struct sipe_media_call *call,
171 SIPE_UNUSED_PARAMETER const gchar *participant,
172 SIPE_UNUSED_PARAMETER gboolean initiator) { return(NULL); }
173 void sipe_backend_media_free(SIPE_UNUSED_PARAMETER struct sipe_backend_media *media) {}
174 void sipe_backend_media_set_cname(SIPE_UNUSED_PARAMETER struct sipe_backend_media *media,
175 SIPE_UNUSED_PARAMETER gchar *cname) {}
176 struct sipe_backend_media_relays * sipe_backend_media_relays_convert(SIPE_UNUSED_PARAMETER GSList *media_relays,
177 SIPE_UNUSED_PARAMETER gchar *username,
178 SIPE_UNUSED_PARAMETER gchar *password) { return(NULL); }
179 void sipe_backend_media_relays_free(SIPE_UNUSED_PARAMETER struct sipe_backend_media_relays *media_relays) {}
180 struct sipe_backend_stream *sipe_backend_media_add_stream(SIPE_UNUSED_PARAMETER struct sipe_backend_media *media,
181 SIPE_UNUSED_PARAMETER const gchar *id,
182 SIPE_UNUSED_PARAMETER const gchar *participant,
183 SIPE_UNUSED_PARAMETER SipeMediaType type,
184 SIPE_UNUSED_PARAMETER SipeIceVersion ice_version,
185 SIPE_UNUSED_PARAMETER gboolean initiator,
186 SIPE_UNUSED_PARAMETER struct sipe_backend_media_relays *media_relays) { return(NULL); }
187 void sipe_backend_media_remove_stream(SIPE_UNUSED_PARAMETER struct sipe_backend_media *media,
188 SIPE_UNUSED_PARAMETER struct sipe_backend_stream *stream) {}
189 GSList *sipe_backend_media_get_streams(SIPE_UNUSED_PARAMETER struct sipe_backend_media *media) { return(NULL); }
190 struct sipe_backend_stream *sipe_backend_media_get_stream_by_id(SIPE_UNUSED_PARAMETER struct sipe_backend_media *media,
191 SIPE_UNUSED_PARAMETER const gchar *id) { return(NULL); }
192 void sipe_backend_media_add_remote_candidates(SIPE_UNUSED_PARAMETER struct sipe_backend_media *media,
193 SIPE_UNUSED_PARAMETER struct sipe_backend_stream *stream,
194 SIPE_UNUSED_PARAMETER GList *candidates) {}
195 gboolean sipe_backend_media_is_initiator(SIPE_UNUSED_PARAMETER struct sipe_backend_media *media,
196 SIPE_UNUSED_PARAMETER struct sipe_backend_stream *stream) { return(FALSE); }
197 gboolean sipe_backend_media_accepted(SIPE_UNUSED_PARAMETER struct sipe_backend_media *media) { return(FALSE); }
198 gboolean sipe_backend_stream_initialized(SIPE_UNUSED_PARAMETER struct sipe_backend_media *media,
199 SIPE_UNUSED_PARAMETER struct sipe_backend_stream *stream) { return(FALSE); }
200 GList *sipe_backend_media_get_active_local_candidates(SIPE_UNUSED_PARAMETER struct sipe_backend_media *media,
201 SIPE_UNUSED_PARAMETER struct sipe_backend_stream *stream) { return(NULL); }
202 GList *sipe_backend_media_get_active_remote_candidates(SIPE_UNUSED_PARAMETER struct sipe_backend_media *media,
203 SIPE_UNUSED_PARAMETER struct sipe_backend_stream *stream) { return(NULL); }
204 const gchar *sipe_backend_stream_get_id(SIPE_UNUSED_PARAMETER struct sipe_backend_stream *stream) { return(""); }
205 void sipe_backend_stream_hold(SIPE_UNUSED_PARAMETER struct sipe_backend_media *media,
206 SIPE_UNUSED_PARAMETER struct sipe_backend_stream *stream,
207 SIPE_UNUSED_PARAMETER gboolean local) {}
208 void sipe_backend_stream_unhold(SIPE_UNUSED_PARAMETER struct sipe_backend_media *media,
209 SIPE_UNUSED_PARAMETER struct sipe_backend_stream *stream,
210 SIPE_UNUSED_PARAMETER gboolean local) {}
211 gboolean sipe_backend_stream_is_held(SIPE_UNUSED_PARAMETER struct sipe_backend_stream *stream) { return(FALSE); }
212 struct sipe_backend_codec *sipe_backend_codec_new(SIPE_UNUSED_PARAMETER int id,
213 SIPE_UNUSED_PARAMETER const char *name,
214 SIPE_UNUSED_PARAMETER SipeMediaType type,
215 SIPE_UNUSED_PARAMETER guint clock_rate) { return(NULL); }
216 void sipe_backend_codec_free(SIPE_UNUSED_PARAMETER struct sipe_backend_codec *codec) {}
217 int sipe_backend_codec_get_id(SIPE_UNUSED_PARAMETER struct sipe_backend_codec *codec) { return(0); }
218 gchar *sipe_backend_codec_get_name(SIPE_UNUSED_PARAMETER struct sipe_backend_codec *codec) { return(g_strdup("")); }
219 guint sipe_backend_codec_get_clock_rate(SIPE_UNUSED_PARAMETER struct sipe_backend_codec *codec) { return(0); }
220 void sipe_backend_codec_add_optional_parameter(SIPE_UNUSED_PARAMETER struct sipe_backend_codec *codec,
221 SIPE_UNUSED_PARAMETER const gchar *name,
222 SIPE_UNUSED_PARAMETER const gchar *value) {}
223 GList *sipe_backend_codec_get_optional_parameters(SIPE_UNUSED_PARAMETER struct sipe_backend_codec *codec) { return(NULL); }
224 gboolean sipe_backend_set_remote_codecs(SIPE_UNUSED_PARAMETER struct sipe_backend_media *media,
225 SIPE_UNUSED_PARAMETER struct sipe_backend_stream *stream,
226 SIPE_UNUSED_PARAMETER GList *codecs) { return(FALSE); }
227 GList* sipe_backend_get_local_codecs(SIPE_UNUSED_PARAMETER struct sipe_backend_media *media,
228 SIPE_UNUSED_PARAMETER struct sipe_backend_stream *stream) { return(NULL); }
229 struct sipe_backend_candidate * sipe_backend_candidate_new(SIPE_UNUSED_PARAMETER const gchar *foundation,
230 SIPE_UNUSED_PARAMETER SipeComponentType component,
231 SIPE_UNUSED_PARAMETER SipeCandidateType type,
232 SIPE_UNUSED_PARAMETER SipeNetworkProtocol proto,
233 SIPE_UNUSED_PARAMETER const gchar *ip,
234 SIPE_UNUSED_PARAMETER guint port,
235 SIPE_UNUSED_PARAMETER const gchar *username,
236 SIPE_UNUSED_PARAMETER const gchar *password) { return(NULL); }
237 void sipe_backend_candidate_free(SIPE_UNUSED_PARAMETER struct sipe_backend_candidate *candidate) {}
238 gchar *sipe_backend_candidate_get_username(SIPE_UNUSED_PARAMETER struct sipe_backend_candidate *candidate) { return(g_strdup("")); }
239 gchar *sipe_backend_candidate_get_password(SIPE_UNUSED_PARAMETER struct sipe_backend_candidate *candidate) { return(g_strdup("")); }
240 gchar *sipe_backend_candidate_get_foundation(SIPE_UNUSED_PARAMETER struct sipe_backend_candidate *candidate) { return(g_strdup("")); }
241 gchar *sipe_backend_candidate_get_ip(SIPE_UNUSED_PARAMETER struct sipe_backend_candidate *candidate) { return(g_strdup("127.0.0.1")); }
242 guint sipe_backend_candidate_get_port(SIPE_UNUSED_PARAMETER struct sipe_backend_candidate *candidate) { return(0); }
243 gchar *sipe_backend_candidate_get_base_ip(SIPE_UNUSED_PARAMETER struct sipe_backend_candidate *candidate) { return(g_strdup("127.0.0.1")); }
244 guint sipe_backend_candidate_get_base_port(SIPE_UNUSED_PARAMETER struct sipe_backend_candidate *candidate) { return(0); }
245 guint32 sipe_backend_candidate_get_priority(SIPE_UNUSED_PARAMETER struct sipe_backend_candidate *candidate) { return(0); }
246 void sipe_backend_candidate_set_priority(SIPE_UNUSED_PARAMETER struct sipe_backend_candidate *candidate,
247 SIPE_UNUSED_PARAMETER guint32 priority) {}
248 SipeComponentType sipe_backend_candidate_get_component_type(SIPE_UNUSED_PARAMETER struct sipe_backend_candidate *candidate) { return(SIPE_COMPONENT_NONE); }
249 SipeCandidateType sipe_backend_candidate_get_type(SIPE_UNUSED_PARAMETER struct sipe_backend_candidate *candidate) { return(SIPE_CANDIDATE_TYPE_ANY); }
250 SipeNetworkProtocol sipe_backend_candidate_get_protocol(SIPE_UNUSED_PARAMETER struct sipe_backend_candidate *candidate) { return(SIPE_NETWORK_PROTOCOL_TCP_ACTIVE); }
251 GList* sipe_backend_get_local_candidates(SIPE_UNUSED_PARAMETER struct sipe_backend_media *media,
252 SIPE_UNUSED_PARAMETER struct sipe_backend_stream *stream) { return(NULL); }
253 void sipe_backend_media_accept(SIPE_UNUSED_PARAMETER struct sipe_backend_media *media,
254 SIPE_UNUSED_PARAMETER gboolean local) {}
255 void sipe_backend_media_hangup(SIPE_UNUSED_PARAMETER struct sipe_backend_media *media,
256 SIPE_UNUSED_PARAMETER gboolean local) {}
257 void sipe_backend_media_reject(SIPE_UNUSED_PARAMETER struct sipe_backend_media *media,
258 SIPE_UNUSED_PARAMETER gboolean local) {}
259 #endif
261 /** NETWORK ******************************************************************/
263 struct sipe_backend_listendata *sipe_backend_network_listen_range(SIPE_UNUSED_PARAMETER unsigned short port_min,
264 SIPE_UNUSED_PARAMETER unsigned short port_max,
265 SIPE_UNUSED_PARAMETER sipe_listen_start_cb listen_cb,
266 SIPE_UNUSED_PARAMETER sipe_client_connected_cb connect_cb,
267 SIPE_UNUSED_PARAMETER gpointer data) { return(NULL); }
268 void sipe_backend_network_listen_cancel(SIPE_UNUSED_PARAMETER struct sipe_backend_listendata *ldata) {}
270 gboolean sipe_backend_fd_is_valid(SIPE_UNUSED_PARAMETER struct sipe_backend_fd *fd) { return(FALSE); }
271 void sipe_backend_fd_free(SIPE_UNUSED_PARAMETER struct sipe_backend_fd *fd) {}
273 /** NOTIFICATIONS *************************************************************/
275 void sipe_backend_notify_message_error(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public,
276 SIPE_UNUSED_PARAMETER struct sipe_backend_chat_session *backend_session,
277 SIPE_UNUSED_PARAMETER const gchar *who,
278 SIPE_UNUSED_PARAMETER const gchar *message) {}
279 void sipe_backend_notify_message_info(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public,
280 SIPE_UNUSED_PARAMETER struct sipe_backend_chat_session *backend_session,
281 SIPE_UNUSED_PARAMETER const gchar *who,
282 SIPE_UNUSED_PARAMETER const gchar *message) {}
283 void sipe_backend_notify_error(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public,
284 SIPE_UNUSED_PARAMETER const gchar *title,
285 SIPE_UNUSED_PARAMETER const gchar *msg) {}
287 /** USER *********************************************************************/
289 void sipe_backend_user_feedback_typing(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public,
290 SIPE_UNUSED_PARAMETER const gchar *from) {}
291 void sipe_backend_user_feedback_typing_stop(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public,
292 SIPE_UNUSED_PARAMETER const gchar *from) {}
293 void sipe_backend_user_ask(SIPE_UNUSED_PARAMETER struct sipe_core_public *sipe_public,
294 SIPE_UNUSED_PARAMETER const gchar *message,
295 SIPE_UNUSED_PARAMETER const gchar *accept_label,
296 SIPE_UNUSED_PARAMETER const gchar *decline_label,
297 SIPE_UNUSED_PARAMETER gpointer key) {}
298 void sipe_backend_user_close_ask(SIPE_UNUSED_PARAMETER gpointer key) {}
301 Local Variables:
302 mode: c
303 c-file-style: "bsd"
304 indent-tabs-mode: t
305 tab-width: 8
306 End: