Mercurial > pidgin
view libgaim/plugins/mono/api/Signal.cs @ 14645:01db45fdd9cb
[gaim-migrate @ 17391]
G_MAXUINT32 is used in libgaim/protocols/oscar/oft.c, but it is only defined
in glib 2.4 and higher
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Thu, 28 Sep 2006 08:33:58 +0000 |
| parents | 60b1bc8dbf37 |
| children |
line wrap: on
line source
using System; using System.Runtime.CompilerServices; namespace Gaim { public class Signal { [MethodImplAttribute(MethodImplOptions.InternalCall)] extern private static int _connect(IntPtr handle, object plugin, string signal, object evnt); public delegate void Handler(object[] args); public static int connect(IntPtr handle, object plugin, string signal, object evnt) { return _connect(handle, plugin, signal, evnt); } } }
