~ubuntu-branches/ubuntu/gutsy/lv/gutsy

« back to all changes in this revision

Viewing changes to src/unimap.h

  • Committer: Bazaar Package Importer
  • Author(s): GOTO Masanori
  • Date: 2003-11-16 01:21:59 UTC
  • Revision ID: james.westby@ubuntu.com-20031116012159-wpu27qhoxzskmjy0
Tags: upstream-4.50
ImportĀ upstreamĀ versionĀ 4.50

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * unimap.h
 
3
 *
 
4
 * All rights reserved. Copyright (C) 1996 by NARITA Tomio
 
5
 * $Id: unimap.h,v 1.4 2003/11/13 03:08:19 nrt Exp $
 
6
 */
 
7
 
 
8
#ifndef __UNIMAP_H__
 
9
#define __UNIMAP_H__
 
10
 
 
11
#include <ichar.h>
 
12
 
 
13
public boolean_t unimap_iso8859;
 
14
 
 
15
public ic_t UNItoISO8859( ic_t ic, byte *cset, byte codingSystem );
 
16
 
 
17
public ic_t UNItoBIG5( ic_t ic, byte *cset );
 
18
public ic_t UNItoCNS( ic_t ic, byte *cset );
 
19
public ic_t UNItoGB( ic_t ic, byte *cset );
 
20
public ic_t UNItoJIS( ic_t ic, byte *cset );
 
21
public ic_t UNItoKSC( ic_t ic, byte *cset );
 
22
 
 
23
public ic_t UNItoChinese( ic_t ic, byte *cset );
 
24
public ic_t UNItoJapanese( ic_t ic, byte *cset );
 
25
public ic_t UNItoKorean( ic_t ic, byte *cset );
 
26
 
 
27
public void ConvertFromUNI( i_str_t *istr, byte codingSystem );
 
28
 
 
29
#endif /* __UNIMAP_H__ */