diff libgaim/plugins/mono/api/BuddyList.cs @ 14192:60b1bc8dbf37

[gaim-migrate @ 16863] Renamed 'core' to 'libgaim' committer: Tailor Script <tailor@pidgin.im>
author Evan Schoenberg <evan.s@dreskin.net>
date Sat, 19 Aug 2006 01:50:10 +0000
parents
children 58849b67f00d
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/libgaim/plugins/mono/api/BuddyList.cs	Sat Aug 19 01:50:10 2006 +0000
@@ -0,0 +1,20 @@
+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();
+		}		
+	}
+}