Mercurial > pidgin
view libgaim/plugins/mono/api/Signal.cs @ 14910:fdbf71ae8775
[gaim-migrate @ 17682]
sf patch #1591071, from Ari Pollak
"This patch disables the seemingly obsolete NAS and arts
sound options since they're not provided in gstreamer
0.10. It also falls back more gracefully if we can't
get a proper GStreamer audiosink."
We're currently only using gconfaudiosink if the user
is running within Gnome. Do we want to keep doing that?
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Mon, 06 Nov 2006 07:38:05 +0000 |
| parents | 60b1bc8dbf37 |
| children |
line wrap: on
line source
using System; using System.Runtime.CompilerServices; namespace Gaim { public class Signal { [MethodImplAttribute(MethodImplOptions.InternalCall)] extern private static int _connect(IntPtr handle, object plugin, string signal, object evnt); public delegate void Handler(object[] args); public static int connect(IntPtr handle, object plugin, string signal, object evnt) { return _connect(handle, plugin, signal, evnt); } } }
