comparison plugins/history.c @ 5114:e245e686f62f

[gaim-migrate @ 5477] Amended patch from Justin Hench (thanks): - Removed the linefeeds from Makefile.mingw and plugins/Makefile.mingw - history plugin now building for win32 - Fixed the win32 drag convo tab to new window bug. committer: Tailor Script <tailor@pidgin.im>
author Herman Bloggs <hermanator12002@yahoo.com>
date Sat, 12 Apr 2003 00:19:50 +0000
parents 5fb47ec9bfe4
children fefad67de2c7
comparison
equal deleted inserted replaced
5113:bac62d8d386f 5114:e245e686f62f
60 g_free(userdir); 60 g_free(userdir);
61 g_free(logfile); 61 g_free(logfile);
62 g_free(path); 62 g_free(path);
63 } 63 }
64 64
65 char *gaim_plugin_init(GModule *h) { 65 G_MODULE_EXPORT char *gaim_plugin_init(GModule *h) {
66 handle = h; 66 handle = h;
67 67
68 gaim_signal_connect(handle, event_new_conversation, historize, NULL); 68 gaim_signal_connect(handle, event_new_conversation, historize, NULL);
69 69
70 return NULL; 70 return NULL;
71 } 71 }
72 72
73 struct gaim_plugin_description desc; 73 struct gaim_plugin_description desc;
74 struct gaim_plugin_description *gaim_plugin_desc() { 74 G_MODULE_EXPORT struct gaim_plugin_description *gaim_plugin_desc() {
75 desc.api_version = PLUGIN_API_VERSION; 75 desc.api_version = PLUGIN_API_VERSION;
76 desc.name = g_strdup(_("History")); 76 desc.name = g_strdup(_("History"));
77 desc.version = g_strdup(VERSION); 77 desc.version = g_strdup(VERSION);
78 desc.description = g_strdup(_("Shows recently logged conversations in new conversations ")); 78 desc.description = g_strdup(_("Shows recently logged conversations in new conversations "));
79 desc.authors = g_strdup("Sean Egan &lt;bj91704@binghamton.edu>"); 79 desc.authors = g_strdup("Sean Egan &lt;bj91704@binghamton.edu>");