Mercurial > pidgin
diff plugins/perl/common/Account.xs @ 10504:1a97d5e88d12
[gaim-migrate @ 11796]
Lots of things here:
- Several memory leak fixes
- A few invalid memory access fixes
- Fix a yahoo crash going idle when away
- Fix Add user in chats to actually fill in the screenname
- Add gaim_account_{get,set}_enabled to perl
- Fix command priorities (fixes /me in IRC)
- Fix MSN notification server transfer to be quiet about it
- Fix MSN blist sync if user has insane friendly name
- Make the docklet less crash-happy if it fails to embed in 3 seconds
- Only probe for native plugins with the correct file extension
- 1 typo fix :)
... and quite possibly something else I forgot.
committer: Tailor Script <tailor@pidgin.im>
| author | Stu Tomlinson <stu@nosnilmot.com> |
|---|---|
| date | Tue, 11 Jan 2005 17:25:06 +0000 |
| parents | 446f5f28e8d0 |
| children | 55af3fa46329 |
line wrap: on
line diff
--- a/plugins/perl/common/Account.xs Tue Jan 11 02:00:44 2005 +0000 +++ b/plugins/perl/common/Account.xs Tue Jan 11 17:25:06 2005 +0000 @@ -59,6 +59,12 @@ Gaim::Account account gboolean value +void +gaim_account_set_enabled(account, ui, value) + Gaim::Account account + const char *ui + gboolean value + gboolean gaim_account_is_connected(account) Gaim::Account account @@ -99,6 +105,11 @@ gaim_account_get_check_mail(account) Gaim::Account account +gboolean +gaim_account_get_enabled(account, ui) + Gaim::Account account + const char *ui + MODULE = Gaim::Account PACKAGE = Gaim::Accounts PREFIX = gaim_accounts_
