# HG changeset patch # User Elliott Sales de Andrade # Date 1300650196 0 # Node ID 96e66fbe2881abb78b5c75a31ea2fcd25842d74b # Parent 85412e09b61b77b917b1c390f3cb70b99544a017 Add a flag indicating that a prpl allows specifying an invite message. diff -r 85412e09b61b -r 96e66fbe2881 libpurple/prpl.h --- a/libpurple/prpl.h Sun Mar 20 19:29:31 2011 +0000 +++ b/libpurple/prpl.h Sun Mar 20 19:43:16 2011 +0000 @@ -202,7 +202,14 @@ * Used as a hint that unknown commands should not be sent as messages. * @since 2.1.0 */ - OPT_PROTO_SLASH_COMMANDS_NATIVE = 0x00000400 + OPT_PROTO_SLASH_COMMANDS_NATIVE = 0x00000400, + + /** + * Indicates that this protocol supports sending a user-supplied message + * along with an invitation. + * @since 2.8.0 + */ + OPT_PROTO_INVITE_MESSAGE = 0x00000800 } PurpleProtocolOptions;