Changeset 3fbce97 for protocols/purple/ft.c
- Timestamp:
- 2016-09-24T20:14:34Z (8 years ago)
- Children:
- ba52ac5
- Parents:
- 63cad66 (diff), 82cb190 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/purple/ft.c
r63cad66 r3fbce97 232 232 } 233 233 234 static void prplcb_xfer_dbg(PurpleXfer *xfer)235 {236 fprintf(stderr, "prplcb_xfer_dbg 0x%p\n", xfer);237 }238 239 234 240 235 /* Sending files (UI->IM): */ … … 337 332 PurpleXferUiOps bee_xfer_uiops = 338 333 { 339 prplcb_xfer_new, 340 prplcb_xfer_destroy, 341 NULL, /* prplcb_xfer_add,*/342 prplcb_xfer_progress, 343 prplcb_xfer_dbg,344 prplcb_xfer_cancel_remote, 345 NULL, 346 NULL, 347 prplcb_xfer_dbg,334 prplcb_xfer_new, /* new_xfer */ 335 prplcb_xfer_destroy, /* destroy */ 336 NULL, /* add_xfer */ 337 prplcb_xfer_progress, /* update_progress */ 338 NULL, /* cancel_local */ 339 prplcb_xfer_cancel_remote, /* cancel_remote */ 340 NULL, /* ui_write */ 341 NULL, /* ui_read */ 342 NULL, /* data_not_sent */ 348 343 };
Note: See TracChangeset
for help on using the changeset viewer.