Mercurial > pidgin
view plugins/mono/api/BuddyList.cs @ 12009:8a7553e149de
[gaim-migrate @ 14302]
This should fix a crash Ethan is seeing when his gg account fails to
sign on at startup.
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Tue, 08 Nov 2005 23:44:00 +0000 |
| parents | 67fbd2ff4c4e |
| children |
line wrap: on
line source
using System; using System.Runtime.CompilerServices; namespace Gaim { public class BuddyList { [MethodImplAttribute(MethodImplOptions.InternalCall)] extern private static IntPtr _get_handle(); private static IntPtr handle = _get_handle(); public static Event OnBuddyStatusChanged = new Event(handle, "buddy-status-changed"); public static IntPtr GetHandle() { return _get_handle(); } } }
