view libgaim/plugins/mono/api/BuddyList.cs @ 14993:58849b67f00d

[gaim-migrate @ 17772] A bit of long overdue work on this. There is no functional changes here, just getting started on this again :) committer: Tailor Script <tailor@pidgin.im>
author Gary Kramlich <grim@reaperworld.com>
date Sat, 18 Nov 2006 04:03:48 +0000
parents 60b1bc8dbf37
children
line wrap: on
line source

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