Mercurial > pidgin
view libgaim/plugins/mono/api/Event.cs @ 14499:67a6716bf4a7
[gaim-migrate @ 17218]
this should fix file xfer for some folks
committer: Tailor Script <tailor@pidgin.im>
| author | Nathan Walp <nwalp@pidgin.im> |
|---|---|
| date | Sun, 10 Sep 2006 15:49:50 +0000 |
| parents | 60b1bc8dbf37 |
| 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); } } }
