pidgin/pidgin

1966704b3e42
merge of '77693555855fe9cd3215414f79964dba346cc5fa'
and '19a87e98e5857ad0289f2c760d460f7f1dbbb42d'
namespace Gaim {
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();
}
}
}