comparison plugins/chatlist.c @ 3551:cd938f18f3f8

[gaim-migrate @ 3626] In the interest of continued progress, I pulled what's usable out of my development tree and am committing it. Here, we have gotten rid of the plugins dialog and perl menu under Tools and put them both in preferences. Perl scripts now work like plugins--you have to load them explicitly (it will probe $prefix/lib/gaim and $HOME/.gaim for them) and you can unload them (although right now, this is entirely unreliable) Oh, and I broke all your perl scripts. Sorry about that. Don't try fixing them yet, though--I'm gonna make unloading single scripts more reliable tommorow. I should also finish Phase Two tommorow as well. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Thu, 26 Sep 2002 07:37:52 +0000
parents ee79ca85fe0f
children 154c4a9d9b6d
comparison
equal deleted inserted replaced
3550:e9b2003ee562 3551:cd938f18f3f8
457 if (cp) 457 if (cp)
458 g_free(cp); 458 g_free(cp);
459 cp = NULL; 459 cp = NULL;
460 } 460 }
461 461
462 struct gaim_plugin_description desc;
463 struct gaim_plugin_description *gaim_plugin_desc() {
464 desc.api_version = PLUGIN_API_VERSION;
465 desc.name = g_strdup("Chat List");
466 desc.version = g_strdup(VERSION);
467 desc.description = g_strdup("Allows you to add chat rooms to your buddy list.");
468 desc.authors = g_strdup("Eric Warmenhoven &lt;eric@warmenhoven.org>");
469 desc.url = g_strdup(WEBSITE);
470 return &desc;
471 }
472
462 char *name() 473 char *name()
463 { 474 {
464 return "Chat List"; 475 return "Chat List";
465 } 476 }
466 477