view libpurple/plugins/mono/api/BuddyList.cs @ 20562:9d812753d26a

merge of 'a4f32100c6845e724cd5f43849ccc46daa0fd4c5' and 'd2df131a139849c82bd7c2356c76b75646355c40'
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Wed, 19 Sep 2007 21:40:02 +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();
		}		
	}
}