函数参考


_WinAPI_MultiByteToWideCharEx

映射字符串到宽字符(Unicode)字符串

#Include <WinAPI.au3>
_WinAPI_MultiByteToWideCharEx($sText, $pText [, $iCodePage = 0 [, $iFlags = 0]])

参数

$sText 转换的文本
$pText 字节结构指针,存储转换的字符串
$iCodePage [可选参数] 执行转换的代码页:
0 - ANSI 代码页
1 - OEM 代码页
2 - Macintosh 代码页
$iFlags [可选参数] 是否转化为预构成或合成的宽字符:
$MB_PRECOMPOSED - 预构成字符
$MB_COMPOSITE - 合成宽字符
$MB_USEGLYPHCHARS - 标志符号字符代替控制字符

返回值

成功: 返回 True
失败: 返回 False

注意/说明

The byte structure must be at least twice the length of $sText

相关

_WinAPI_MultiByteToWideChar