diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2006-06-10 18:07:57 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2006-06-10 18:07:57 +0000 |
commit | 4e434e4fb375ef3bce29b8ab51b3264ece399654 (patch) | |
tree | 81cf7aa74408d7442a9ef315524ff6c3889810ad /src/plugins/weechat-plugin.h | |
parent | 3b2e2ad006a4517ddd0641b9f12a1e6cc9d549c4 (diff) | |
download | weechat-4e434e4fb375ef3bce29b8ab51b3264ece399654.zip |
Added IRC colors list in plugin header, fixed get_info for channel info (now ok with pv/dcc chat)
Diffstat (limited to 'src/plugins/weechat-plugin.h')
-rw-r--r-- | src/plugins/weechat-plugin.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/plugins/weechat-plugin.h b/src/plugins/weechat-plugin.h index c0c70995d..b308636bd 100644 --- a/src/plugins/weechat-plugin.h +++ b/src/plugins/weechat-plugin.h @@ -36,6 +36,23 @@ | PLUGIN_RC_OK_IGNORE_PLUGINS) /* ignore WeeChat and other plugins */ +#define WEECHAT_IRC_COLOR_WHITE 0 +#define WEECHAT_IRC_COLOR_BLACK 1 +#define WEECHAT_IRC_COLOR_BLUE 2 +#define WEECHAT_IRC_COLOR_GREEN 3 +#define WEECHAT_IRC_COLOR_LIGHTRED 4 +#define WEECHAT_IRC_COLOR_RED 5 +#define WEECHAT_IRC_COLOR_MAGENTA 6 +#define WEECHAT_IRC_COLOR_BROWN 7 +#define WEECHAT_IRC_COLOR_YELLOW 8 +#define WEECHAT_IRC_COLOR_LIGHTGREEN 9 +#define WEECHAT_IRC_COLOR_CYAN 10 +#define WEECHAT_IRC_COLOR_LIGHTCYAN 11 +#define WEECHAT_IRC_COLOR_LIGHTBLUE 12 +#define WEECHAT_IRC_COLOR_LIGHTMAGENTA 13 +#define WEECHAT_IRC_COLOR_GRAY 14 +#define WEECHAT_IRC_COLOR_LIGHTGRAY 15 + typedef struct t_plugin_dcc_info t_plugin_dcc_info; struct t_plugin_dcc_info |