comparison libpurple/conversation.h @ 31972:c0a423e7fea4

Add accessor functions purple_conversation_get_ui_data() and purple_conversation_set_ui_data().
author andrew.victor@mxit.com
date Fri, 26 Aug 2011 20:51:39 +0000
parents 4dabe4bdfb29
children e5e81ce9c564
comparison
equal deleted inserted replaced
31971:ecfbb3ba0135 31972:c0a423e7fea4
800 * 800 *
801 * @since 2.2.0 801 * @since 2.2.0
802 */ 802 */
803 time_t purple_conversation_message_get_timestamp(PurpleConvMessage *msg); 803 time_t purple_conversation_message_get_timestamp(PurpleConvMessage *msg);
804 804
805 /**
806 * Set the UI data associated with this conversation.
807 *
808 * @param conv The conversation.
809 * @param ui_data A pointer to associate with this conversation.
810 */
811 void purple_conversation_set_ui_data(PurpleConversation *conv, gpointer ui_data);
812
813 /**
814 * Get the UI data associated with this conversation.
815 *
816 * @param conv The conversation.
817 *
818 * @return The UI data associated with this conversation. This is a
819 * convenience field provided to the UIs--it is not
820 * used by the libpurple core.
821 */
822 gpointer purple_conversation_get_ui_data(PurpleConversation *conv);
823
805 /*@}*/ 824 /*@}*/
806 825
807 826
808 /**************************************************************************/ 827 /**************************************************************************/
809 /** @name IM Conversation API */ 828 /** @name IM Conversation API */