VC++ (Unicodeよ.勘弁してくれ!)[edit]

sjis -> unicode[edit]

コンパイラ[edit]

MFC ライブラリ[edit]

文字コード変換[edit]

いろいろ面倒(何が何だか さっぱりさっぱり)[edit]
変換関数[edit]
Buffer  tc2Buffer(TCHAR*  tchar, int size=-1);
Buffer  ts2Buffer(LPCTSTR str,   int size=-1);

CString      mbs2ts(char*   str);
inline char* ts2mbs(LPCTSTR str)  // 要 free. NULL は絶対に返ってこない
{
   Buffer buf = ts2Buffer(str);
   return (char*)buf.buf;
}
//
int     copy_ts2Buffer(LPCTSTR str, Buffer* buf);
int     cat_ts2Buffer (LPCTSTR str, Buffer* buf);

トップ   新規 ページ一覧 検索 最終更新   ヘルプ   最終更新のRSS