|
|
| version 1.6, 2006/12/23 12:49:22 | version 1.7, 2006/12/23 23:34:32 |
|---|---|
| Line 1 | Line 1 |
| #include "codecnv.h" | #ifndef __GNUC__ |
| #include <snanls.h> | #include <snanls.h> |
| #endif | |
| #include "codecnv.h" | |
| #ifdef __cplusplus | #ifdef __cplusplus |
| extern "C" { | extern "C" { |
| #endif | #endif |
| UINT oemtext_mbtoucs2(UINT cp, WCHAR *dst, UINT dcnt, const char *src, UINT scnt); | UINT oemtext_mbtoucs2(UINT cp, wchar_t *dst, UINT dcnt, const char *src, UINT scnt); |
| UINT oemtext_ucs2tomb(UINT cp, char *dst, UINT dcnt, const WCHAR *src, UINT scnt); | UINT oemtext_ucs2tomb(UINT cp, char *dst, UINT dcnt, const wchar_t *src, UINT scnt); |
| UINT oemtext_mbtoutf8(UINT cp, char *dst, UINT dcnt, const char *src, UINT scnt); | UINT oemtext_mbtoutf8(UINT cp, char *dst, UINT dcnt, const char *src, UINT scnt); |
| UINT oemtext_utf8tomb(UINT cp, char *dst, UINT dcnt, const char *src, UINT scnt); | UINT oemtext_utf8tomb(UINT cp, char *dst, UINT dcnt, const char *src, UINT scnt); |
| UINT oemtext_chartoucs2(WCHAR *dst, UINT dcnt, const char *src, UINT scnt); | UINT oemtext_chartoucs2(wchar_t *dst, UINT dcnt, const char *src, UINT scnt); |
| UINT oemtext_ucs2tochar(char *dst, UINT dcnt, const WCHAR *src, UINT scnt); | UINT oemtext_ucs2tochar(char *dst, UINT dcnt, const wchar_t *src, UINT scnt); |
| UINT oemtext_chartoutf8(char *dst, UINT dcnt, const char *src, UINT scnt); | UINT oemtext_chartoutf8(char *dst, UINT dcnt, const char *src, UINT scnt); |
| UINT oemtext_utf8tochar(char *dst, UINT dcnt, const char *src, UINT scnt); | UINT oemtext_utf8tochar(char *dst, UINT dcnt, const char *src, UINT scnt); |