Mercurial > pidgin
view libpurple/plugins/mono/api/Signal.cs @ 23969:4ecea8ae3d21
merge of '3c1dec61837db8f0f51fc35f7ca26ff948a4e4f4'
and 'd03f77d92751b3104fa7f211c86084c46a8679b7'
| author | Elliott Sales de Andrade <qulogic@pidgin.im> |
|---|---|
| date | Tue, 26 Aug 2008 04:08:22 +0000 |
| parents | 93bfbda79bf6 |
| children |
line wrap: on
line source
using System; using System.Runtime.CompilerServices; namespace Purple { 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); } } }
