diff -r d10dda2777a9 -r b63ebf84c42b plugins/mono/api/Signal.cs --- a/plugins/mono/api/Signal.cs Sat Aug 19 00:24:14 2006 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,18 +0,0 @@ -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); - } - } -}