107 lines
3.1 KiB
C
107 lines
3.1 KiB
C
/*
|
|
Copyright (c) 2002 by Tomohiro KUBOTA
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
THE SOFTWARE.
|
|
*/
|
|
|
|
#ifndef LUIT_OTHER_H
|
|
#define LUIT_OTHER_H 1
|
|
|
|
#include "config.h" /* include this, for self-contained headers */
|
|
|
|
#ifndef GCC_UNUSED
|
|
#define GCC_UNUSED /* ARGSUSED */
|
|
#endif
|
|
|
|
#include <X11/fonts/fontenc.h>
|
|
|
|
#define UChar(n) ((unsigned char)(n))
|
|
|
|
typedef struct {
|
|
FontMapPtr mapping;
|
|
FontMapReversePtr reverse;
|
|
int buf;
|
|
} aux_gbk;
|
|
|
|
typedef struct {
|
|
unsigned char buf[4];
|
|
int buf_ptr, len;
|
|
} aux_utf8;
|
|
|
|
typedef struct {
|
|
FontMapPtr x0208mapping;
|
|
FontMapPtr x0201mapping;
|
|
FontMapReversePtr x0208reverse;
|
|
FontMapReversePtr x0201reverse;
|
|
int buf;
|
|
} aux_sjis;
|
|
|
|
typedef struct {
|
|
FontMapPtr mapping;
|
|
FontMapReversePtr reverse;
|
|
int buf;
|
|
} aux_hkscs;
|
|
|
|
typedef struct {
|
|
FontMapPtr cs0_mapping; /* gb18030.2000-0 */
|
|
FontMapReversePtr cs0_reverse;
|
|
|
|
FontMapPtr cs1_mapping; /* gb18030.2000-1 */
|
|
FontMapReversePtr cs1_reverse;
|
|
|
|
int linear; /* set to '1' if stack_gb18030 linearized a 4bytes seq */
|
|
int buf[3];
|
|
int buf_ptr;
|
|
} aux_gb18030;
|
|
|
|
typedef union {
|
|
aux_gbk gbk;
|
|
aux_utf8 utf8;
|
|
aux_sjis sjis;
|
|
aux_hkscs hkscs;
|
|
aux_gb18030 gb18030;
|
|
} OtherState, *OtherStatePtr;
|
|
|
|
int init_gbk(OtherStatePtr);
|
|
unsigned int mapping_gbk(unsigned int, OtherStatePtr);
|
|
unsigned int reverse_gbk(unsigned int, OtherStatePtr);
|
|
int stack_gbk(unsigned, OtherStatePtr);
|
|
|
|
int init_utf8(OtherStatePtr);
|
|
unsigned int mapping_utf8(unsigned int, OtherStatePtr);
|
|
unsigned int reverse_utf8(unsigned int, OtherStatePtr);
|
|
int stack_utf8(unsigned, OtherStatePtr);
|
|
|
|
int init_sjis(OtherStatePtr);
|
|
unsigned int mapping_sjis(unsigned int, OtherStatePtr);
|
|
unsigned int reverse_sjis(unsigned int, OtherStatePtr);
|
|
int stack_sjis(unsigned, OtherStatePtr);
|
|
|
|
int init_hkscs(OtherStatePtr);
|
|
unsigned int mapping_hkscs(unsigned int, OtherStatePtr);
|
|
unsigned int reverse_hkscs(unsigned int, OtherStatePtr);
|
|
int stack_hkscs(unsigned, OtherStatePtr);
|
|
|
|
int init_gb18030(OtherStatePtr);
|
|
unsigned int mapping_gb18030(unsigned int, OtherStatePtr);
|
|
unsigned int reverse_gb18030(unsigned int, OtherStatePtr);
|
|
int stack_gb18030(unsigned, OtherStatePtr);
|
|
|
|
#endif /* LUIT_OTHER_H */
|