comparison libpurple/protocols/silc/wb.h @ 15822:32c366eeeb99

sed -ie 's/gaim/purple/g'
author Sean Egan <seanegan@gmail.com>
date Mon, 19 Mar 2007 07:01:17 +0000
parents 5fe8042783c1
children cb1ea9f878f5
comparison
equal deleted inserted replaced
15821:84b0f9b23ede 15822:32c366eeeb99
1 /* 1 /*
2 2
3 silcgaim.h 3 silcpurple.h
4 4
5 Author: Pekka Riikonen <priikone@silcnet.org> 5 Author: Pekka Riikonen <priikone@silcnet.org>
6 6
7 Copyright (C) 2005 Pekka Riikonen 7 Copyright (C) 2005 Pekka Riikonen
8 8
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details. 16 GNU General Public License for more details.
17 17
18 */ 18 */
19 19
20 #ifndef SILCGAIM_WB_H 20 #ifndef SILCPURPLE_WB_H
21 #define SILCGAIM_WB_H 21 #define SILCPURPLE_WB_H
22 22
23 #include "silcgaim.h" 23 #include "silcpurple.h"
24 #include "whiteboard.h" 24 #include "whiteboard.h"
25 25
26 GaimWhiteboard * 26 PurpleWhiteboard *
27 silcgaim_wb_init(SilcGaim sg, SilcClientEntry client_entry); 27 silcpurple_wb_init(SilcPurple sg, SilcClientEntry client_entry);
28 GaimWhiteboard * 28 PurpleWhiteboard *
29 silcgaim_wb_init_ch(SilcGaim sg, SilcChannelEntry channel); 29 silcpurple_wb_init_ch(SilcPurple sg, SilcChannelEntry channel);
30 void silcgaim_wb_receive(SilcClient client, SilcClientConnection conn, 30 void silcpurple_wb_receive(SilcClient client, SilcClientConnection conn,
31 SilcClientEntry sender, SilcMessagePayload payload, 31 SilcClientEntry sender, SilcMessagePayload payload,
32 SilcMessageFlags flags, const unsigned char *message, 32 SilcMessageFlags flags, const unsigned char *message,
33 SilcUInt32 message_len); 33 SilcUInt32 message_len);
34 void silcgaim_wb_receive_ch(SilcClient client, SilcClientConnection conn, 34 void silcpurple_wb_receive_ch(SilcClient client, SilcClientConnection conn,
35 SilcClientEntry sender, SilcChannelEntry channel, 35 SilcClientEntry sender, SilcChannelEntry channel,
36 SilcMessagePayload payload, 36 SilcMessagePayload payload,
37 SilcMessageFlags flags, 37 SilcMessageFlags flags,
38 const unsigned char *message, 38 const unsigned char *message,
39 SilcUInt32 message_len); 39 SilcUInt32 message_len);
40 void silcgaim_wb_start(GaimWhiteboard *wb); 40 void silcpurple_wb_start(PurpleWhiteboard *wb);
41 void silcgaim_wb_end(GaimWhiteboard *wb); 41 void silcpurple_wb_end(PurpleWhiteboard *wb);
42 void silcgaim_wb_get_dimensions(GaimWhiteboard *wb, int *width, int *height); 42 void silcpurple_wb_get_dimensions(PurpleWhiteboard *wb, int *width, int *height);
43 void silcgaim_wb_set_dimensions(GaimWhiteboard *wb, int width, int height); 43 void silcpurple_wb_set_dimensions(PurpleWhiteboard *wb, int width, int height);
44 void silcgaim_wb_get_brush(GaimWhiteboard *wb, int *size, int *color); 44 void silcpurple_wb_get_brush(PurpleWhiteboard *wb, int *size, int *color);
45 void silcgaim_wb_set_brush(GaimWhiteboard *wb, int size, int color); 45 void silcpurple_wb_set_brush(PurpleWhiteboard *wb, int size, int color);
46 void silcgaim_wb_send(GaimWhiteboard *wb, GList *draw_list); 46 void silcpurple_wb_send(PurpleWhiteboard *wb, GList *draw_list);
47 void silcgaim_wb_clear(GaimWhiteboard *wb); 47 void silcpurple_wb_clear(PurpleWhiteboard *wb);
48 48
49 #endif /* SILCGAIM_WB_H */ 49 #endif /* SILCPURPLE_WB_H */