view plugins/perl/common/typemap @ 9167:10bdd25f367f

[gaim-migrate @ 9952] This adds a /me command, which just sends its argument with /me prepended. Certain protocols have their own /me commands registered, which take priorty over this /me command. There's still two problems. 1. W and S aren't implemented yet, so /me's and anything else using W or S behave as though w or s were used. I.e. /me sends with no formatting. 2. Commands aren't added to the ctrl-up send_history. They should be. We also still need /help. And the bad command error messages like "Syntax Error" need to be made more clear. committer: Tailor Script <tailor@pidgin.im>
author Tim Ringenbach <marv@pidgin.im>
date Wed, 02 Jun 2004 05:38:56 +0000
parents eb95f31fa4eb
children ecb2384d4bab
line wrap: on
line source

TYPEMAP
gboolean                 T_BOOL
const char *             T_PV
Gaim::Account            T_GaimObj
Gaim::BuddyList::Group   T_GaimObj
Gaim::BuddyList::Buddy   T_GaimObj
Gaim::BuddyList::Chat    T_GaimObj
Gaim::Chat               T_GaimObj
Gaim::Connection         T_GaimObj
Gaim::Conversation       T_GaimObj
Gaim::Conversation::Chat T_GaimObj
Gaim::Conversation::IM   T_GaimObj
Gaim::ConvWindow         T_GaimObj
Gaim::DebugLevel         T_IV
Gaim::IM                 T_GaimObj
Gaim::Plugin             T_GaimObj

INPUT

T_GaimObj
	$var = gaim_perl_ref_object($arg)


OUTPUT

T_GaimObj
	$arg = gaim_perl_bless_object($var, \"$type\");