pidgin/pidgin

Create a glibcompat.h to define G_GNUC_(BEGIN,END)_IGNORE_DEPRECATIONS which was added in 2.32.0 but we only require 2.16.0
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();
}
}
}