共用方式為


EngMultiByteToWideChar 函式 (winddi.h)

EngMultiByteToWideChar 函式會使用指定的代碼頁,將 ANSI 來源字串轉換成寬字元字串。

語法

ENGAPI INT EngMultiByteToWideChar(
  [in]            UINT   CodePage,
  [out, optional] LPWSTR WideCharString,
  [in]            INT    BytesInWideCharString,
  [in, optional]  LPSTR  MultiByteString,
  [in]            INT    BytesInMultiByteString
);

參數

[in] CodePage

指定要用來執行翻譯的代碼頁。

[out, optional] WideCharString

複製已翻譯字元字串之緩衝區的指標。

[in] BytesInWideCharString

指定 WideCharString的大小,以位元組為單位。 如果 WideCharString 不足以包含翻譯, EngMultiByteToWideChar 會截斷字串,而且不會報告錯誤。

[in, optional] MultiByteString

緩衝區的指標,其中包含要翻譯的多位元組位元串。

[in] BytesInMultiByteString

指定 MultiByteString 中的位元元組數目。

傳回值

如果成功, EngMultiByteToWideChar 函 式會傳回轉換成寬字元格式的位元組數目。 否則,函式會傳回 -1。

規格需求

需求
最低支援的用戶端 適用於 Windows 2000 和更新版本的 Windows 作業系統。
目標平台 Universal
標頭 winddi.h (包含Winddi.h)
程式庫 Win32k.lib
Dll Win32k.sys

另請參閱

EngUnicodeToMultiByteN

EngWideCharToMultiByte