view plugins/mono/api/BuddyList.cs @ 11818:9d6e498fe402

[gaim-migrate @ 14109] Sadrul says in 1276849 that we don't need this. I believe him, as there's no point in setting the account on a conversation when you just found that conversation with gaim_conversation_find_with_account(). committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Tue, 25 Oct 2005 16:15:12 +0000
parents a3302d271199
children 67fbd2ff4c4e
line wrap: on
line source

using System;
using System.Runtime.CompilerServices;

namespace Gaim
{
	public class BuddyList
	{
		[MethodImplAttribute(MethodImplOptions.InternalCall)]
		extern private static IntPtr _get_handle();

		private static IntPtr handle = _get_handle();
		
		public static Event OnBuddyAway = new Event(handle, "buddy-away");
		public static Event OnBuddyBack = new Event(handle, "buddy-back");
		
		public static IntPtr GetHandle()
		{
			return _get_handle();
		}		
	}
}