view libpurple/plugins/mono/api/BuddyList.cs @ 23544:3ca9800a9be3

merge of '1a465eae5dc1b7bfc09b0724788403c096f461ce' and '532937221446ba2643f5101c22ae58abc83fa1be'
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Mon, 14 Jul 2008 03:04:03 +0000
parents 93bfbda79bf6
children
line wrap: on
line source

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();
		}		
	}
}