comparison libpurple/protocols/qq/send_file.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 44b4e8bd759b
comparison
equal deleted inserted replaced
15821:84b0f9b23ede 15822:32c366eeeb99
1 /** 1 /**
2 * @file send_file.h 2 * @file send_file.h
3 * 3 *
4 * gaim 4 * purple
5 * 5 *
6 * Gaim is the legal property of its developers, whose names are too numerous 6 * Purple is the legal property of its developers, whose names are too numerous
7 * to list here. Please refer to the COPYRIGHT file distributed with this 7 * to list here. Please refer to the COPYRIGHT file distributed with this
8 * source distribution. 8 * source distribution.
9 * 9 *
10 * This program is free software; you can redistribute it and/or modify 10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by 11 * it under the terms of the GNU General Public License as published by
65 /* guint8 *buffer; */ 65 /* guint8 *buffer; */
66 gboolean use_major; 66 gboolean use_major;
67 } ft_info; 67 } ft_info;
68 68
69 void qq_process_recv_file_accept(guint8 *data, guint8 **cursor, gint data_len, 69 void qq_process_recv_file_accept(guint8 *data, guint8 **cursor, gint data_len,
70 guint32 sender_uid, GaimConnection *gc); 70 guint32 sender_uid, PurpleConnection *gc);
71 void qq_process_recv_file_reject(guint8 *data, guint8 **cursor, gint data_len, 71 void qq_process_recv_file_reject(guint8 *data, guint8 **cursor, gint data_len,
72 guint32 sender_uid, GaimConnection *gc); 72 guint32 sender_uid, PurpleConnection *gc);
73 void qq_process_recv_file_cancel(guint8 *data, guint8 **cursor, gint data_len, 73 void qq_process_recv_file_cancel(guint8 *data, guint8 **cursor, gint data_len,
74 guint32 sender_uid, GaimConnection *gc); 74 guint32 sender_uid, PurpleConnection *gc);
75 void qq_process_recv_file_request(guint8 *data, guint8 **cursor, gint data_len, 75 void qq_process_recv_file_request(guint8 *data, guint8 **cursor, gint data_len,
76 guint32 sender_uid, GaimConnection *gc); 76 guint32 sender_uid, PurpleConnection *gc);
77 void qq_process_recv_file_notify(guint8 *data, guint8 **cursor, gint data_len, 77 void qq_process_recv_file_notify(guint8 *data, guint8 **cursor, gint data_len,
78 guint32 sender_uid, GaimConnection *gc); 78 guint32 sender_uid, PurpleConnection *gc);
79 gboolean qq_can_receive_file(GaimConnection *gc, const char *who); 79 gboolean qq_can_receive_file(PurpleConnection *gc, const char *who);
80 void qq_send_file(GaimConnection *gc, const char *who, const char *file); 80 void qq_send_file(PurpleConnection *gc, const char *who, const char *file);
81 void qq_get_conn_info(guint8 *data, guint8 **cursor, gint data_len, ft_info *info); 81 void qq_get_conn_info(guint8 *data, guint8 **cursor, gint data_len, ft_info *info);
82 gint qq_fill_conn_info(guint8 *data, guint8 **cursor, ft_info *info); 82 gint qq_fill_conn_info(guint8 *data, guint8 **cursor, ft_info *info);
83 gssize _qq_xfer_write(const guint8 *buf, size_t len, GaimXfer *xfer); 83 gssize _qq_xfer_write(const guint8 *buf, size_t len, PurpleXfer *xfer);
84 84
85 #endif 85 #endif