comparison src/protocols/msn/msn.c @ 11256:bb0d7b719af2

[gaim-migrate @ 13430] I give you regex filtering in the debug window. We keep a buffer of all the text, so when unpausing all the messages that were output when paused will be displayed, as well as when you change the filter. This _should_ be alright on systems that don't have regex.h but I haven't gotten anyone to test it recently, if it's busted, just #ifdef HAVE_REGEX_H it. committer: Tailor Script <tailor@pidgin.im>
author Gary Kramlich <grim@reaperworld.com>
date Sat, 13 Aug 2005 22:09:34 +0000
parents f03dce7ea408
children 90be432e8385
comparison
equal deleted inserted replaced
11255:1b1d63602d77 11256:bb0d7b719af2
1802 g_free(url); 1802 g_free(url);
1803 } 1803 }
1804 1804
1805 static gboolean msn_load(GaimPlugin *plugin) 1805 static gboolean msn_load(GaimPlugin *plugin)
1806 { 1806 {
1807 gaim_debug_register_category("msn");
1808
1809 msn_notification_init(); 1807 msn_notification_init();
1810 msn_switchboard_init(); 1808 msn_switchboard_init();
1811 msn_sync_init(); 1809 msn_sync_init();
1812 1810
1813 return TRUE; 1811 return TRUE;
1816 static gboolean msn_unload(GaimPlugin *plugin) 1814 static gboolean msn_unload(GaimPlugin *plugin)
1817 { 1815 {
1818 msn_notification_end(); 1816 msn_notification_end();
1819 msn_switchboard_end(); 1817 msn_switchboard_end();
1820 msn_sync_end(); 1818 msn_sync_end();
1821
1822 gaim_debug_unregister_category("msn");
1823 1819
1824 return TRUE; 1820 return TRUE;
1825 } 1821 }
1826 1822
1827 static GaimPluginProtocolInfo prpl_info = 1823 static GaimPluginProtocolInfo prpl_info =