Mercurial > pidgin
view plugins/mono/api/Event.cs @ 12716:c08fcbcc6a3e
[gaim-migrate @ 15060]
There is no stock ACCEPT item, so add the mnemonic here.
committer: Tailor Script <tailor@pidgin.im>
| author | Daniel Atallah <daniel.atallah@gmail.com> |
|---|---|
| date | Wed, 04 Jan 2006 17:36:42 +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); } } }
