Mercurial > pidgin
view plugins/mono/api/Event.cs @ 19832:ef06a1fb425e
[gaim-migrate @ 17100]
fix the bug of MSN picture
by processing ILN and NLN command
thanks for chris help!
committed by MaYuan<mayuan2006@gmail.com>
committer: Ethan Blanton <elb@pidgin.im>
| author | Ma Yuan <mayuan2006@gmail.com> |
|---|---|
| date | Thu, 31 Aug 2006 12:38:50 +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); } } }
