comparison libpurple/protocols/gg/lib/obsolete.c @ 29938:6359fde67f4c

Update our internal libgadu to 1.9.0-rc2. This does not yet build on Windows. Refs #10542. The Windows build errors are the only reason this isn't on `im.pidgin.pidgin` already.
author John Bailey <rekkanoryo@rekkanoryo.org>
date Sun, 21 Feb 2010 16:52:42 +0000
parents 44b4e8bd759b
children 93b08d43f684
comparison
equal deleted inserted replaced
29868:551253814063 29938:6359fde67f4c
1 /* $Id: obsolete.c 16856 2006-08-19 01:13:25Z evands $ */ 1 /* $Id: obsolete.c 854 2009-10-12 21:06:28Z wojtekka $ */
2 2
3 /* 3 /*
4 * (C) Copyright 2001-2003 Wojtek Kaniewski <wojtekka@irc.pl> 4 * (C) Copyright 2001-2003 Wojtek Kaniewski <wojtekka@irc.pl>
5 * 5 *
6 * This program is free software; you can redistribute it and/or modify 6 * This program is free software; you can redistribute it and/or modify
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU Lesser General Public License for more details. 13 * GNU Lesser General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU Lesser General Public 15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this program; if not, write to the Free Software 16 * License along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301, 17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307,
18 * USA. 18 * USA.
19 */ 19 */
20 20
21 /* 21 /**
22 * Plik zawiera deklaracje funkcji, które s± ju¿ nieaktualne ze wzglêdu 22 * \file obsolete.c
23 * na zmiany w protokole, ale s± wymagane przez aplikacje linkowane ze 23 *
24 * starszymi wersjami bibliotek. 24 * \brief Nieaktualne funkcje
25 *
26 * Plik zawiera definicje funkcji, które są już nieaktualne ze względu
27 * na zmiany w protokole. Programy konsolidowane ze starszych wersjami
28 * bibliotek powinny nadal mieć możliwość działania, mimo ograniczonej
29 * funkcjonalności.
25 */ 30 */
26 31
32 /** \cond obsolete */
33
27 #include <errno.h> 34 #include <errno.h>
28 35
29 #include "libgadu.h" 36 #include "libgadu.h"
30 37
31 struct gg_http *gg_userlist_get(uin_t uin, const char *passwd, int async) 38 struct gg_http *gg_userlist_get(uin_t uin, const char *passwd, int async)
203 210
204 void gg_change_info_request_free(struct gg_change_info_request *r) 211 void gg_change_info_request_free(struct gg_change_info_request *r)
205 { 212 {
206 213
207 } 214 }
215
216 int gg_resolve(int *fd, int *pid, const char *hostname)
217 {
218 return -1;
219 }
220
221 void gg_resolve_pthread_cleanup(void *arg, int kill)
222 {
223
224 }
225
226 int gg_resolve_pthread(int *fd, void **resolver, const char *hostname)
227 {
228 return -1;
229 }
230
231 int gg_pubdir50_handle_reply(struct gg_event *e, const char *packet, int length)
232 {
233 return -1;
234 }
235
236 /** \endcond */