Mercurial > pidgin
view plugins/mono/api/Event.cs @ 11946:f87f50f57b0b
[gaim-migrate @ 14237]
<SimGuy2k> siege: then, it should probably be noted in the changelog along with the other new protocol support
committer: Tailor Script <tailor@pidgin.im>
| author | Christopher O'Brien <siege@pidgin.im> |
|---|---|
| date | Wed, 02 Nov 2005 03:57:38 +0000 |
| parents | a3302d271199 |
| children |
line wrap: on
line source
using System; namespace Gaim { public class Event { private IntPtr handle; private string signal; public Event(IntPtr h, string s) { handle = h; signal = s; } public void connect(object plugin, Signal.Handler handler) { Signal.connect(handle, plugin, signal, handler); } } }
