comparison libpurple/conversation.h @ 18063:926ccb104da0

disapproval of revision '1411afd7660760db59966c3a9f18e2adab8eb27e'
author Richard Laager <rlaager@wiktel.com>
date Sat, 16 Jun 2007 19:00:35 +0000
parents 4ca97b26a8fb
children ab6d2763b8d8
comparison
equal deleted inserted replaced
18058:4ca97b26a8fb 18063:926ccb104da0
502 * 502 *
503 * This list includes both IMs and chats. 503 * This list includes both IMs and chats.
504 * 504 *
505 * @return A GList of all conversations. 505 * @return A GList of all conversations.
506 */ 506 */
507 const GList *purple_get_conversations(void); 507 GList *purple_get_conversations(void);
508 508
509 /** 509 /**
510 * Returns a list of all IMs. 510 * Returns a list of all IMs.
511 * 511 *
512 * @return A GList of all IMs. 512 * @return A GList of all IMs.
513 */ 513 */
514 const GList *purple_get_ims(void); 514 GList *purple_get_ims(void);
515 515
516 /** 516 /**
517 * Returns a list of all chats. 517 * Returns a list of all chats.
518 * 518 *
519 * @return A GList of all chats. 519 * @return A GList of all chats.
520 */ 520 */
521 const GList *purple_get_chats(void); 521 GList *purple_get_chats(void);
522 522
523 /** 523 /**
524 * Finds a conversation with the specified type, name, and Purple account. 524 * Finds a conversation with the specified type, name, and Purple account.
525 * 525 *
526 * @param type The type of the conversation. 526 * @param type The type of the conversation.
875 * 875 *
876 * @param chat The chat. 876 * @param chat The chat.
877 * 877 *
878 * @return The list of users. 878 * @return The list of users.
879 */ 879 */
880 const GList *purple_conv_chat_get_users(const PurpleConvChat *chat); 880 GList *purple_conv_chat_get_users(const PurpleConvChat *chat);
881 881
882 /** 882 /**
883 * Ignores a user in a chat room. 883 * Ignores a user in a chat room.
884 * 884 *
885 * @param chat The chat. 885 * @param chat The chat.
910 * 910 *
911 * @param chat The chat. 911 * @param chat The chat.
912 * 912 *
913 * @return The list of ignored users. 913 * @return The list of ignored users.
914 */ 914 */
915 const GList *purple_conv_chat_get_ignored(const PurpleConvChat *chat); 915 GList *purple_conv_chat_get_ignored(const PurpleConvChat *chat);
916 916
917 /** 917 /**
918 * Returns the actual name of the specified ignored user, if it exists in 918 * Returns the actual name of the specified ignored user, if it exists in
919 * the ignore list. 919 * the ignore list.
920 * 920 *