Mercurial > pidgin
view plugins/mono/api/Signal.cs @ 13362:f33077f19b60
[gaim-migrate @ 15735]
TZ abbreviation mapping:
- Change a couple NULL returns to the empty string, so things don't blow up.
- Cache the lookup value for a standard comparison. By copying the value to the front of the array, we'll save a lot of unnecessary string comparisons.
- Add newlines to the end of all the debug statements
- Disable the debugging statements for normal cases, as this code is pretty solid
I'd love it if someone running Windows could verify their newly created log files still have a TZ abbreviation in the name after these changes.
committer: Tailor Script <tailor@pidgin.im>
| author | Richard Laager <rlaager@wiktel.com> |
|---|---|
| date | Wed, 01 Mar 2006 06:57:54 +0000 |
| parents | a3302d271199 |
| 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); } } }
