libpurple/plugins/mono/api/BuddyList.cs

Mon, 16 Apr 2007 00:44:33 +0000

author
Richard Laager <rlaager@pidgin.im>
date
Mon, 16 Apr 2007 00:44:33 +0000
changeset 16238
33bf2fd32108
parent 11980
plugins/mono/api/BuddyList.cs@fe5c2c58508c
parent 15940
plugins/mono/api/BuddyList.cs@53d1e0af8279
permissions
-rw-r--r--

merge of 'b98e72d4089afb8a1879e5fe9627cfb132ee88de'
and '606a402fea87c797c4b751475228a6f6a5385122'

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

mercurial