File:  [RetroPC.NET] / np2 / codecnv / codecnv.h
Revision 1.1: download - view: text, annotated - select for diffs
Sat Feb 12 21:13:56 2005 JST (20 years, 8 months ago) by yui
Branches: MAIN
CVS tags: HEAD
move codecnv (T.Yui)

#ifndef _CODECNV_H
#define	_CODECNV_H

#ifdef __cplusplus
extern "C" {
#endif

UINT codecnv_sjistoeuc(char *dst, UINT dcnt, const char *src, UINT scnt);
UINT codecnv_sjistoucs2(UINT16 *dst, UINT dcnt, const char *src, UINT scnt);

UINT codecnv_euctosjis(char *dst, UINT dcnt, const char *src, UINT scnt);
UINT codecnv_euctoucs2(UINT16 *dst, UINT dcnt, const char *src, UINT scnt);

UINT codecnv_utf8toucs2(UINT16 *dst, UINT dcnt, const char *src, UINT scnt);

UINT codecnv_ucs2toutf8(char *dst, UINT dcnt, const UINT16 *src, UINT scnt);

#ifdef __cplusplus
}
#endif

#endif


RetroPC.NET-CVS <cvs@retropc.net>