libpurple/protocols/myspace/myspace.c

branch
soc.2007.msimprpl
changeset 17968
c29352b95fa6
parent 17967
a16d7668ab43
child 17969
9a043ea6bc44
equal deleted inserted replaced
17967:a16d7668ab43 17968:c29352b95fa6
1534 } 1534 }
1535 1535
1536 /* TODO: update blocklist */ 1536 /* TODO: update blocklist */
1537 } 1537 }
1538 1538
1539 /** Return whether the buddy can be messaged while offline.
1540 *
1541 * I always return TRUE, to allow sending to buddies whose status has not yet
1542 * been received. The protocol _does_ support offline messages, but not this plugin.
1543 * TODO: Real offline message support.
1544 */
1545 gboolean msim_offline_message(const PurpleBuddy *buddy)
1546 {
1547 return TRUE;
1548 }
1539 1549
1540 1550
1541 /** 1551 /**
1542 * Callback when input available. 1552 * Callback when input available.
1543 * 1553 *
2059 NULL, /* roomlist_cancel */ 2069 NULL, /* roomlist_cancel */
2060 NULL, /* roomlist_expand_category */ 2070 NULL, /* roomlist_expand_category */
2061 NULL, /* can_receive_file */ 2071 NULL, /* can_receive_file */
2062 NULL, /* send_file */ 2072 NULL, /* send_file */
2063 NULL, /* new_xfer */ 2073 NULL, /* new_xfer */
2064 NULL, /* offline_message */ 2074 msim_offline_message, /* offline_message */
2065 NULL, /* whiteboard_prpl_ops */ 2075 NULL, /* whiteboard_prpl_ops */
2066 NULL, /* send_raw */ 2076 NULL, /* send_raw */
2067 NULL, /* roomlist_room_serialize */ 2077 NULL, /* roomlist_room_serialize */
2068 NULL, /* _purple_reserved1 */ 2078 NULL, /* _purple_reserved1 */
2069 NULL, /* _purple_reserved2 */ 2079 NULL, /* _purple_reserved2 */

mercurial