| 773 * Associates some data with the group in the xml buddy list |
773 * Associates some data with the group in the xml buddy list |
| 774 * |
774 * |
| 775 * @param g The group the data is associated with |
775 * @param g The group the data is associated with |
| 776 * @param key The key used to retrieve the data |
776 * @param key The key used to retrieve the data |
| 777 * @param value The data to set |
777 * @param value The data to set |
| |
778 * @deprecated Replaced by gaim_blist_node_set_bool(), gaim_blist_node_set_int() |
| |
779 * and gaim_blist_node_set_string() to enable types and consolidate functionality. |
| |
780 * This function is scheduled to be removed in the near future. |
| 778 */ |
781 */ |
| 779 void gaim_group_set_setting(GaimGroup *g, const char *key, const char *value); |
782 void gaim_group_set_setting(GaimGroup *g, const char *key, const char *value); |
| 780 |
783 |
| 781 /** |
784 /** |
| 782 * Retrieves data from the XML buddy list set by gaim_group_set_setting()) |
785 * Retrieves data from the XML buddy list set by gaim_group_set_setting()) |
| 783 * |
786 * |
| 784 * @param g The group to retrieve data from |
787 * @param g The group to retrieve data from |
| 785 * @param key The key to retrieve the data with |
788 * @param key The key to retrieve the data with |
| 786 * @return The associated data or NULL if no data is associated |
789 * @return The associated data or NULL if no data is associated |
| |
790 * @deprecated Replaced by gaim_blist_node_get_bool(), gaim_blist_node_get_int() |
| |
791 * and gaim_blist_node_get_string() to enable types and consolidate functionality. |
| |
792 * This function is scheduled to be removed in the near future. |
| 787 */ |
793 */ |
| 788 const char *gaim_group_get_setting(GaimGroup *g, const char *key); |
794 const char *gaim_group_get_setting(GaimGroup *g, const char *key); |
| 789 |
795 |
| 790 /** |
796 /** |
| 791 * Associates some data with the chat in the xml buddy list |
797 * Associates some data with the chat in the xml buddy list |
| 792 * |
798 * |
| 793 * @param c The chat the data is associated with |
799 * @param c The chat the data is associated with |
| 794 * @param key The key used to retrieve the data |
800 * @param key The key used to retrieve the data |
| 795 * @param value The data to set |
801 * @param value The data to set |
| |
802 * @deprecated Replaced by gaim_blist_node_set_bool(), gaim_blist_node_set_int() |
| |
803 * and gaim_blist_node_set_string() to enable types and consolidate functionality. |
| |
804 * This function is scheduled to be removed in the near future. |
| 796 */ |
805 */ |
| 797 void gaim_chat_set_setting(GaimChat *c, const char *key, const char *value); |
806 void gaim_chat_set_setting(GaimChat *c, const char *key, const char *value); |
| 798 |
807 |
| 799 /** |
808 /** |
| 800 * Retrieves data from the XML buddy list set by gaim_chat_set_setting()) |
809 * Retrieves data from the XML buddy list set by gaim_chat_set_setting()) |
| 801 * |
810 * |
| 802 * @param c The chat to retrieve data from |
811 * @param c The chat to retrieve data from |
| 803 * @param key The key to retrieve the data with |
812 * @param key The key to retrieve the data with |
| 804 * |
813 * |
| 805 * @return The associated data or NULL if no data is associated |
814 * @return The associated data or NULL if no data is associated |
| |
815 * @deprecated Replaced by gaim_blist_node_get_bool(), gaim_blist_node_get_int() |
| |
816 * and gaim_blist_node_get_string() to enable types and consolidate functionality. |
| |
817 * This function is scheduled to be removed in the near future. |
| 806 */ |
818 */ |
| 807 const char *gaim_chat_get_setting(GaimChat *c, const char *key); |
819 const char *gaim_chat_get_setting(GaimChat *c, const char *key); |
| 808 |
820 |
| 809 /** |
821 /** |
| 810 * Associates some data with the buddy in the xml buddy list |
822 * Associates some data with the buddy in the xml buddy list |
| 811 * |
823 * |
| 812 * @param b The buddy the data is associated with |
824 * @param b The buddy the data is associated with |
| 813 * @param key The key used to retrieve the data |
825 * @param key The key used to retrieve the data |
| 814 * @param value The data to set |
826 * @param value The data to set |
| |
827 * @deprecated Replaced by gaim_blist_node_set_bool(), gaim_blist_node_set_int() |
| |
828 * and gaim_blist_node_set_string() to enable types and consolidate functionality. |
| |
829 * This function is scheduled to be removed in the near future. |
| 815 */ |
830 */ |
| 816 void gaim_buddy_set_setting(GaimBuddy *b, const char *key, const char *value); |
831 void gaim_buddy_set_setting(GaimBuddy *b, const char *key, const char *value); |
| 817 |
832 |
| 818 /** |
833 /** |
| 819 * Retrieves data from the XML buddy list set by gaim_buddy_set_setting()) |
834 * Retrieves data from the XML buddy list set by gaim_buddy_set_setting()) |
| 820 * |
835 * |
| 821 * @param b The buddy to retrieve data from |
836 * @param b The buddy to retrieve data from |
| 822 * @param key The key to retrieve the data with |
837 * @param key The key to retrieve the data with |
| 823 * @return The associated data or NULL if no data is associated |
838 * @return The associated data or NULL if no data is associated |
| |
839 * @deprecated Replaced by gaim_blist_node_get_bool(), gaim_blist_node_get_int() |
| |
840 * and gaim_blist_node_get_string() to enable types and consolidate functionality. |
| |
841 * This function is scheduled to be removed in the near future. |
| 824 */ |
842 */ |
| 825 const char *gaim_buddy_get_setting(GaimBuddy *b, const char *key); |
843 const char *gaim_buddy_get_setting(GaimBuddy *b, const char *key); |
| 826 |
844 |
| 827 /*@}*/ |
845 /*@}*/ |
| 828 |
846 |