| 116 |
116 |
| 117 void gaim_plugin_remove() { |
117 void gaim_plugin_remove() { |
| 118 gtk_timeout_remove(check); |
118 gtk_timeout_remove(check); |
| 119 } |
119 } |
| 120 |
120 |
| |
121 struct gaim_plugin_description desc; |
| |
122 struct gaim_plugin_description *gaim_plugin_desc() { |
| |
123 desc.api_version = PLUGIN_API_VERSION; |
| |
124 desc.name = g_strdup("Gaim File Control"); |
| |
125 desc.version = g_strdup(VERSION); |
| |
126 desc.description = g_strdup("Allows you to control Gaim by entering commands in aa file."); |
| |
127 desc.authors = g_strdup("Eric Warmehoven <eric@warmenhoven.org>"); |
| |
128 desc.url = g_strdup(WEBSITE); |
| |
129 return &desc; |
| |
130 } |
| |
131 |
| 121 char *name() { |
132 char *name() { |
| 122 return "Gaim File Control"; |
133 return "Gaim File Control"; |
| 123 } |
134 } |
| 124 |
135 |
| 125 char *description() { |
136 char *description() { |