Mercurial > pidgin
comparison src/protocols/toc/toc.c @ 5920:7d385de2f9cd
[gaim-migrate @ 6360]
Sean likes to make fun of me because I had static vars that had __
prepended, which is a violation of ANSI standards apparently. So, that's
fixed. Oh, and Sean.. *I* broke 0.64! Nyaa!
committer: Tailor Script <tailor@pidgin.im>
| author | Christian Hammond <chipx86@chipx86.com> |
|---|---|
| date | Wed, 18 Jun 2003 06:01:15 +0000 |
| parents | 059d95c67cda |
| children | fccc33d4b8fa |
comparison
equal
deleted
inserted
replaced
| 5919:889ccc2bef92 | 5920:7d385de2f9cd |
|---|---|
| 2053 NULL, /**< ui_info */ | 2053 NULL, /**< ui_info */ |
| 2054 &prpl_info /**< extra_info */ | 2054 &prpl_info /**< extra_info */ |
| 2055 }; | 2055 }; |
| 2056 | 2056 |
| 2057 static void | 2057 static void |
| 2058 __init_plugin(GaimPlugin *plugin) | 2058 init_plugin(GaimPlugin *plugin) |
| 2059 { | 2059 { |
| 2060 GaimAccountOption *option; | 2060 GaimAccountOption *option; |
| 2061 | 2061 |
| 2062 option = gaim_account_option_string_new(_("TOC host"), "server", TOC_HOST); | 2062 option = gaim_account_option_string_new(_("TOC host"), "server", TOC_HOST); |
| 2063 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, | 2063 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
| 2068 option); | 2068 option); |
| 2069 | 2069 |
| 2070 my_protocol = plugin; | 2070 my_protocol = plugin; |
| 2071 } | 2071 } |
| 2072 | 2072 |
| 2073 GAIM_INIT_PLUGIN(toc, __init_plugin, info); | 2073 GAIM_INIT_PLUGIN(toc, init_plugin, info); |
