3 * Purple is the legal property of its developers, whose names are too numerous
4 * to list here. Please refer to the COPYRIGHT file distributed with this
7 * Rewritten from scratch during Google Summer of Code 2012
8 * by Tomek Wasilczyk (http://www.wasilczyk.pl).
10 * Previously implemented by:
11 * - Arkadiusz Miskiewicz <misiek@pld.org.pl> - first implementation (2001);
12 * - Bartosz Oler <bartosz@bzimage.us> - reimplemented during GSoC 2005;
13 * - Krzysztof Klinikowski <grommasher@gmail.com> - some parts (2009-2011).
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
30 #ifndef PURPLE_GG_IMAGE_PRPL_H
31 #define PURPLE_GG_IMAGE_PRPL_H
36 #define GGP_IMAGE_SIZE_MAX 255000
37 #define GGP_IMAGE_ID_FORMAT "%016" G_GINT64_MODIFIER "x"
39 typedef struct _ggp_image_session_data ggp_image_session_data
;
43 GGP_IMAGE_PREPARE_OK
= 0,
44 GGP_IMAGE_PREPARE_FAILURE
,
45 GGP_IMAGE_PREPARE_TOO_BIG
46 } ggp_image_prepare_result
;
49 ggp_image_setup(PurpleConnection
*gc
);
52 ggp_image_cleanup(PurpleConnection
*gc
);
54 ggp_image_prepare_result
55 ggp_image_prepare(PurpleConversation
*conv
, PurpleImage
*image
, uint64_t *id
);
58 ggp_image_recv(PurpleConnection
*gc
,
59 const struct gg_event_image_reply
*image_reply
);
62 ggp_image_send(PurpleConnection
*gc
,
63 const struct gg_event_image_request
*image_request
);
66 ggp_image_request(PurpleConnection
*gc
, uin_t uin
, uint64_t id
);
68 #endif /* PURPLE_GG_IMAGE_PRPL_H */