Mercurial > pidgin
view libpurple/plugins/mono/api/Event.cs @ 26179:413b445a6018
Is there any reason this is an int instead of PurplePrivacyType? I
believe this is safe to do without breaking binary or API compatibility,
but someone please yell at me if not
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Fri, 13 Mar 2009 02:21:27 +0000 |
| parents | 93bfbda79bf6 |
| children |
line wrap: on
line source
using System; namespace Purple { 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); } } }
