comparison libpurple/conversation.h @ 19114:6de2e9ba0930

merge of '2970edca111b3535ae0703e3c866ad1c3b87df94' and 'a2b508e8680ac3f20965226a5dd83f7e2a3b15bb'
author Eric Polino <aluink@pidgin.im>
date Sun, 24 Jun 2007 02:56:09 +0000
parents ab6d2763b8d8
children d57926990768
comparison
equal deleted inserted replaced
19102:7f26e5b98b15 19114:6de2e9ba0930
500 /** 500 /**
501 * Returns a list of all conversations. 501 * Returns a list of all conversations.
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 * @constreturn 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 * @constreturn 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 * @constreturn 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.
873 /** 873 /**
874 * Returns a list of users in the chat room. 874 * Returns a list of users in the chat room.
875 * 875 *
876 * @param chat The chat. 876 * @param chat The chat.
877 * 877 *
878 * @return The list of users. 878 * @constreturn 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 *