Mercurial > pidgin
changeset 31399: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 | 85412e09b61b |
children | 0c981f2c169a |
files | libpurple/prpl.h |
diffstat | 1 files changed, 8 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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;