Mercurial > pidgin
comparison src/protocols/irc/irc.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 | 6690934e5ea6 |
comparison
equal
deleted
inserted
replaced
| 5919:889ccc2bef92 | 5920:7d385de2f9cd |
|---|---|
| 3017 NULL, /**< ui_info */ | 3017 NULL, /**< ui_info */ |
| 3018 &prpl_info /**< extra_info */ | 3018 &prpl_info /**< extra_info */ |
| 3019 }; | 3019 }; |
| 3020 | 3020 |
| 3021 static void | 3021 static void |
| 3022 __init_plugin(GaimPlugin *plugin) | 3022 init_plugin(GaimPlugin *plugin) |
| 3023 { | 3023 { |
| 3024 GaimAccountUserSplit *split; | 3024 GaimAccountUserSplit *split; |
| 3025 GaimAccountOption *option; | 3025 GaimAccountOption *option; |
| 3026 | 3026 |
| 3027 split = gaim_account_user_split_new(_("Server"), DEFAULT_SERVER, '@'); | 3027 split = gaim_account_user_split_new(_("Server"), DEFAULT_SERVER, '@'); |
| 3038 option); | 3038 option); |
| 3039 | 3039 |
| 3040 my_protocol = plugin; | 3040 my_protocol = plugin; |
| 3041 } | 3041 } |
| 3042 | 3042 |
| 3043 GAIM_INIT_PLUGIN(irc, __init_plugin, info); | 3043 GAIM_INIT_PLUGIN(irc, init_plugin, info); |
