comparison src/conversation.h @ 11921:8140885c022c

[gaim-migrate @ 14212] sf patch #1341917, from Evan Schoenberg "Allow sending with GaimMsgFlags in conversation.c" committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 31 Oct 2005 04:38:58 +0000
parents 3ba50c385299
children 4d3119205a33
comparison
equal deleted inserted replaced
11920:52f27ffe68a5 11921:8140885c022c
745 * @param message The message to send. 745 * @param message The message to send.
746 */ 746 */
747 void gaim_conv_im_send(GaimConvIm *im, const char *message); 747 void gaim_conv_im_send(GaimConvIm *im, const char *message);
748 748
749 /** 749 /**
750 * Sends a message to this IM conversation with specified flags.
751 *
752 * @param im The IM.
753 * @param message The message to send.
754 * @param flags The GaimMessageFlags flags to use in addition to GAIM_MESSAGE_SEND.
755 */
756 void gaim_conv_im_send_with_flags(GaimConvIm *im, const char *message, GaimMessageFlags flags);
757
758 /**
750 * Adds a smiley to the conversation's smiley tree. If this returns 759 * Adds a smiley to the conversation's smiley tree. If this returns
751 * @c TRUE you should call gaim_conv_custom_smiley_write() one or more 760 * @c TRUE you should call gaim_conv_custom_smiley_write() one or more
752 * times, and then gaim_conv_custom_smiley_close(). If this returns 761 * times, and then gaim_conv_custom_smiley_close(). If this returns
753 * @c FALSE, either the conv or smile were invalid, or the icon was 762 * @c FALSE, either the conv or smile were invalid, or the icon was
754 * found in the cache. In either case, calling write or close would 763 * found in the cache. In either case, calling write or close would
950 * 959 *
951 * @param chat The chat. 960 * @param chat The chat.
952 * @param message The message to send. 961 * @param message The message to send.
953 */ 962 */
954 void gaim_conv_chat_send(GaimConvChat *chat, const char *message); 963 void gaim_conv_chat_send(GaimConvChat *chat, const char *message);
964
965 /**
966 * Sends a message to this chat conversation with specified flags.
967 *
968 * @param chat The chat.
969 * @param message The message to send.
970 * @param flags The GaimMessageFlags flags to use.
971 */
972 void gaim_conv_chat_send_with_flags(GaimConvChat *chat, const char *message, GaimMessageFlags flags);
955 973
956 /** 974 /**
957 * Adds a user to a chat. 975 * Adds a user to a chat.
958 * 976 *
959 * @param chat The chat. 977 * @param chat The chat.