1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-07 10:13:12 +02:00

Added macros for name/description/author/version/license of plugins

This commit is contained in:
Sebastien Helleu
2008-01-04 23:13:33 +01:00
parent fd7b2f4fab
commit 23273bf47a
16 changed files with 144 additions and 70 deletions
+5 -3
View File
@@ -39,9 +39,11 @@
#include "../../weechat-plugin.h"
#include "../weechat-script.h"
char plugin_name[] = "Perl";
char plugin_version[] = "0.1";
char plugin_description[] = "Perl scripts support";
WEECHAT_PLUGIN_NAME("perl");
WEECHAT_PLUGIN_DESCRIPTION("Perl plugin for WeeChat");
WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>");
WEECHAT_PLUGIN_VERSION("0.1");
WEECHAT_PLUGIN_LICENSE("GPL");
t_weechat_plugin *perl_plugin;