Wed, 23 May 2007 03:59:19 +0000
Fix file transfers aborting and mistakenly being marked as cancelled when they are actually complete. Fixes #814
namespace Purple { using System; using System.Runtime.CompilerServices; public class BuddyList { [MethodImplAttribute(MethodImplOptions.InternalCall)] extern private static IntPtr _get_handle(); private static IntPtr handle = _get_handle(); public static Event OnBuddyStatusChanged = new Event(handle, "buddy-status-changed"); public static IntPtr GetHandle() { return _get_handle(); } } }