comparison src/ft.h @ 5563:9eb5b13fd412

[gaim-migrate @ 5965] Just a taste of what's coming. Standard "This won't compile" thing. Plugin authors, you're going to hate me, but that's okay, because I have friends too! It's really late. My brain resembles that of fish swimming in jello pudding with neon lights flying around chanting musicals. I'm not on drugs. I'm just that tired. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Fri, 30 May 2003 09:38:29 +0000
parents c8afb821df3e
children 059d95c67cda
comparison
equal deleted inserted replaced
5562:3c8d34574601 5563:9eb5b13fd412
62 */ 62 */
63 struct gaim_xfer 63 struct gaim_xfer
64 { 64 {
65 GaimXferType type; /**< The type of transfer. */ 65 GaimXferType type; /**< The type of transfer. */
66 66
67 struct gaim_account *account; /**< The account. */ 67 GaimAccount *account; /**< The account. */
68 68
69 char *who; /**< The person on the other end of the 69 char *who; /**< The person on the other end of the
70 transfer. */ 70 transfer. */
71 71
72 char *filename; /**< The name sent over the network. */ 72 char *filename; /**< The name sent over the network. */
122 * @param type The type of file transfer. 122 * @param type The type of file transfer.
123 * @param who The name of the remote user. 123 * @param who The name of the remote user.
124 * 124 *
125 * @return A file transfer handle. 125 * @return A file transfer handle.
126 */ 126 */
127 struct gaim_xfer *gaim_xfer_new(struct gaim_account *account, 127 struct gaim_xfer *gaim_xfer_new(GaimAccount *account,
128 GaimXferType type, const char *who); 128 GaimXferType type, const char *who);
129 129
130 /** 130 /**
131 * Destroys a file transfer handle. 131 * Destroys a file transfer handle.
132 * 132 *
170 * 170 *
171 * @param xfer The file transfer. 171 * @param xfer The file transfer.
172 * 172 *
173 * @return The account. 173 * @return The account.
174 */ 174 */
175 struct gaim_account *gaim_xfer_get_account(const struct gaim_xfer *xfer); 175 GaimAccount *gaim_xfer_get_account(const struct gaim_xfer *xfer);
176 176
177 /** 177 /**
178 * Returns the completed state for a file transfer. 178 * Returns the completed state for a file transfer.
179 * 179 *
180 * @param xfer The file transfer. 180 * @param xfer The file transfer.