| 77 } |
77 } |
| 78 |
78 |
| 79 struct gaim_plugin_description desc; |
79 struct gaim_plugin_description desc; |
| 80 struct gaim_plugin_description *gaim_plugin_desc() { |
80 struct gaim_plugin_description *gaim_plugin_desc() { |
| 81 desc.api_version = PLUGIN_API_VERSION; |
81 desc.api_version = PLUGIN_API_VERSION; |
| 82 desc.name = g_strdup("I'dle Mak'er"); |
82 desc.name = g_strdup("Idle Maker"); |
| 83 desc.version = g_strdup(VERSION); |
83 desc.version = g_strdup(VERSION); |
| 84 desc.description = g_strdup("Allows you to hand-configure how long you've been idle for"); |
84 desc.description = g_strdup("Allows you to hand-configure how long you've been idle for"); |
| 85 desc.authors = g_strdup("Eric Warmenhoven <eric@warmenhoven.org>"); |
85 desc.authors = g_strdup("Eric Warmenhoven <eric@warmenhoven.org>"); |
| 86 desc.url = g_strdup(WEBSITE); |
86 desc.url = g_strdup(WEBSITE); |
| 87 return &desc; |
87 return &desc; |