#include <sent/stddefs.h>
#include <windows.h>
#include <winnls.h>
#include <jlib.h>
charconv_win32.cのインクルード依存関係図

マクロ定義 | |
| #define | UNICODE_BUFFER_SIZE 4096 |
| Buffer length to use for unicode conversion. | |
関数 | |
| boolean | charconv_win32_setup (char *fromcode, char *tocode, boolean *enable_conv) |
| char * | charconv_win32 (char *instr, char *outstr, int maxoutlen) |
変数 | |
| static boolean | euctosjis = FALSE |
| TRUE if use libjcode for euc->sjis conv. | |
| static boolean | only_euc_conv = FALSE |
| Perform only euc->sjis. | |
| static unsigned int | from_cp |
| Source codepage. | |
| static unsigned int | to_cp |
| Target codepage. | |
| static wchar_t | unibuf [UNICODE_BUFFER_SIZE] |
| Local work area for unicode conversion. | |
Windows では EUC のコードページに対応していないので,変換元の文字コードが euc-jp のときは,libjcode で SJIS に変換してからunicodeへ変換する.
charconv_win32.c で定義されています。
|
||||||||||||||||
|
Setup charset conversion for win32.
charconv_win32.c の 67 行で定義されています。 |
|
||||||||||||||||
|
Apply charset conversion to a string using win32 functions
charconv_win32.c の 203 行で定義されています。 参照元 charconv(). |
1.4.2