comparison libpurple/prpl.h @ 31849:96e66fbe2881

Add a flag indicating that a prpl allows specifying an invite message.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Sun, 20 Mar 2011 19:43:16 +0000
parents 1bd617f2c46a
children 2c58de59bd57
comparison
equal deleted inserted replaced
31848:85412e09b61b 31849:96e66fbe2881
200 /** 200 /**
201 * Indicates that slash commands are native to this protocol. 201 * Indicates that slash commands are native to this protocol.
202 * Used as a hint that unknown commands should not be sent as messages. 202 * Used as a hint that unknown commands should not be sent as messages.
203 * @since 2.1.0 203 * @since 2.1.0
204 */ 204 */
205 OPT_PROTO_SLASH_COMMANDS_NATIVE = 0x00000400 205 OPT_PROTO_SLASH_COMMANDS_NATIVE = 0x00000400,
206
207 /**
208 * Indicates that this protocol supports sending a user-supplied message
209 * along with an invitation.
210 * @since 2.8.0
211 */
212 OPT_PROTO_INVITE_MESSAGE = 0x00000800
206 213
207 } PurpleProtocolOptions; 214 } PurpleProtocolOptions;
208 215
209 /** 216 /**
210 * A protocol plugin information structure. 217 * A protocol plugin information structure.