view libgaim/plugins/mono/api/BuddyList.cs @ 14665:a9cc230acf0a

[gaim-migrate @ 17411] SF Patch #1568503 from zdeqb Adds a perl binding for gaim_buddy_get_server_alias(). committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Sun, 01 Oct 2006 01:37:53 +0000
parents 60b1bc8dbf37
children 58849b67f00d
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 OnBuddyStatusChanged = new Event(handle, "buddy-status-changed");
		
		public static IntPtr GetHandle()
		{
			return _get_handle();
		}		
	}
}