diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2008-09-21 19:32:41 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2008-09-21 19:32:41 +0200 |
commit | a8b12f25975568f3f4d6f8fc383d785bab9b24fa (patch) | |
tree | 327e3d89fcb4139199c9c0d2c47184201b69b0a5 /src/plugins/irc/irc-bar-item.h | |
parent | e1bb85457ada8a9df6dfe4cea88f1a502fb57418 (diff) | |
download | weechat-a8b12f25975568f3f4d6f8fc383d785bab9b24fa.zip |
Add IRC bar items (buffer name, lag indicator), use bar items from plugins with callback to core items if not found
Diffstat (limited to 'src/plugins/irc/irc-bar-item.h')
-rw-r--r-- | src/plugins/irc/irc-bar-item.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/plugins/irc/irc-bar-item.h b/src/plugins/irc/irc-bar-item.h new file mode 100644 index 000000000..749a27301 --- /dev/null +++ b/src/plugins/irc/irc-bar-item.h @@ -0,0 +1,25 @@ +/* + * Copyright (c) 2003-2008 by FlashCode <flashcode@flashtux.org> + * See README for License detail, AUTHORS for developers list. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + + +#ifndef __WEECHAT_IRC_BAR_ITEM_H +#define __WEECHAT_IRC_BAR_ITEM_H 1 + +extern void irc_bar_item_init (); + +#endif /* irc-bar_item.h */ |