1 /*
2  * "streamable kanji code filter and converter"
3  * Copyright (c) 1998-2002 HappySize, Inc. All rights reserved.
4  *
5  * LICENSE NOTICES
6  *
7  * This file is part of "streamable kanji code filter and converter",
8  * which is distributed under the terms of GNU Lesser General Public
9  * License (version 2) as published by the Free Software Foundation.
10  *
11  * This software is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with "streamable kanji code filter and converter";
18  * if not, write to the Free Software Foundation, Inc., 59 Temple Place,
19  * Suite 330, Boston, MA  02111-1307  USA
20  *
21  * The author of this file: Moriyoshi Koizumi <koizumi@gree.co.jp>
22  *
23  */
24 
25 #ifndef TRANSLIT_KANA_JISX0201_JISX0208_H
26 #define TRANSLIT_KANA_JISX0201_JISX0208_H
27 
28 /* "Zen" is 全, or "full"; "Han" is 半, or "half"
29  * This refers to "fullwidth" or "halfwidth" variants of characters used for writing Japanese */
30 #define MBFL_HAN2ZEN_ALL       0x00001
31 #define MBFL_HAN2ZEN_ALPHA     0x00002
32 #define MBFL_HAN2ZEN_NUMERIC   0x00004
33 #define MBFL_HAN2ZEN_SPACE     0x00008
34 #define MBFL_HAN2ZEN_KATAKANA  0x00010
35 #define MBFL_HAN2ZEN_HIRAGANA  0x00020
36 #define MBFL_HAN2ZEN_SPECIAL   0x00040
37 #define MBFL_ZENKAKU_HIRA2KATA 0x00080
38 
39 #define MBFL_ZEN2HAN_ALL       0x00100
40 #define MBFL_ZEN2HAN_ALPHA     0x00200
41 #define MBFL_ZEN2HAN_NUMERIC   0x00400
42 #define MBFL_ZEN2HAN_SPACE     0x00800
43 #define MBFL_ZEN2HAN_KATAKANA  0x01000
44 #define MBFL_ZEN2HAN_HIRAGANA  0x02000
45 #define MBFL_ZEN2HAN_SPECIAL   0x04000
46 #define MBFL_ZENKAKU_KATA2HIRA 0x08000
47 
48 #define MBFL_HAN2ZEN_GLUE      0x10000
49 
50 #endif /* TRANSLIT_KANA_JISX0201_JISX0208_H */
51