Mercurial > pidgin
view plugins/mono/api/Event.cs @ 12534:bed2ca758451
[gaim-migrate @ 14847]
Update config.h.mingw to contain some new defines. Update the About dialog in win32 to remove unneeded information.
committer: Tailor Script <tailor@pidgin.im>
| author | Daniel Atallah <daniel.atallah@gmail.com> |
|---|---|
| date | Sat, 17 Dec 2005 20:36:32 +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); } } }
