comparison src/ft.c @ 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 5b678994929b
children 46d7ad0dfa26
comparison
equal deleted inserted replaced
5562:3c8d34574601 5563:9eb5b13fd412
40 #endif 40 #endif
41 41
42 static struct gaim_xfer_ui_ops *xfer_ui_ops = NULL; 42 static struct gaim_xfer_ui_ops *xfer_ui_ops = NULL;
43 43
44 struct gaim_xfer * 44 struct gaim_xfer *
45 gaim_xfer_new(struct gaim_account *account, GaimXferType type, 45 gaim_xfer_new(GaimAccount *account, GaimXferType type,
46 const char *who) 46 const char *who)
47 { 47 {
48 struct gaim_xfer *xfer; 48 struct gaim_xfer *xfer;
49 struct gaim_xfer_ui_ops *ui_ops; 49 struct gaim_xfer_ui_ops *ui_ops;
50 50
188 return GAIM_XFER_UNKNOWN; 188 return GAIM_XFER_UNKNOWN;
189 189
190 return xfer->type; 190 return xfer->type;
191 } 191 }
192 192
193 struct gaim_account * 193 GaimAccount *
194 gaim_xfer_get_account(const struct gaim_xfer *xfer) 194 gaim_xfer_get_account(const struct gaim_xfer *xfer)
195 { 195 {
196 if (xfer == NULL) 196 if (xfer == NULL)
197 return NULL; 197 return NULL;
198 198