diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2006-11-08 07:54:33 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2006-11-08 07:54:33 +0000 |
commit | c20ce83d20526e24601c6c8acabc7a61ab3c3a78 (patch) | |
tree | a8e1b79498ef7cd410176680d9bfb585270aa576 /src/plugins/charset/weechat-charset.h | |
parent | b5a7d8e99e372378cb47069a3d2ad0bf65ccc530 (diff) | |
download | weechat-c20ce83d20526e24601c6c8acabc7a61ab3c3a78.zip |
Added charset plugin (WeeChat is now full UTF-8 for internal data storage), fixed compilation problems with FreeBSD, fixed status bar display bug
Diffstat (limited to 'src/plugins/charset/weechat-charset.h')
-rw-r--r-- | src/plugins/charset/weechat-charset.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/plugins/charset/weechat-charset.h b/src/plugins/charset/weechat-charset.h new file mode 100644 index 000000000..2073198a0 --- /dev/null +++ b/src/plugins/charset/weechat-charset.h @@ -0,0 +1,33 @@ +/* + * Copyright (c) 2003-2006 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 2 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, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +/* weechat-charset.h: Charset plugin support for WeeChat */ + +#ifndef WEECHAT_CHARSET__H +#define WEECHAT_CHARSET__H 1 + +#define _PLUGIN_NAME "charset" +#define _PLUGIN_VERSION "0.1" +#define _PLUGIN_DESC "Charset plugin for WeeChat" + +char plugin_name[] = _PLUGIN_NAME; +char plugin_version[] = _PLUGIN_VERSION; +char plugin_description[] = _PLUGIN_DESC; + +#endif /* WEECHAT_CHARSET__H */ |