D 1.0   D 2.0
About Japanese Translation

Last update Sat Feb 14 12:00:12 2009

std.windows.charset

Windows 95, 98, ME システムでの UTF-8 サポートです

Source:
std/windows/charset.d

License:
Boost License 1.0.

Authors:
Walter Bright

const(char)* toMBSz(string s, uint codePage = 0);
UTF-8 文字列 snull 終端の Windows 8-bit 文字セットに変換します。

Params:
string s 変換元の UTF-8 文字列
uint codePage 変換先のコードページ番号か、 0 - ANSI, 1 - OEM, 2 - Mac



string fromMBSz(immutable(char)* s, int codePage = 0);
null 終端のWindows 8-bit 文字セットを、 UTF-8 文字配列に変換します。

Params:
immutable(char)* s 変換元の Windows 文字列
int codePage 変換元のコードページ番号か、 0 - ANSI, 1 - OEM, 2 - Mac

Authors:
Stewart Gordon, Walter Bright