函数参考


_WinAPI_LoWord

返回 longword 低位字

#Include <WinAPI.au3>
_WinAPI_LoWord($iLong)

参数

$iLong Longword 值

返回值

返回 Longword 低位字

注意/说明

None.

相关

_WinAPI_HiWord, _WinAPI_MakeLong

示例/演示


#include <WinAPI.au3>

_Main()

Func _Main()
    Local $iWord = 11 * 65535
    MsgBox(0, $iWord, "HiWord: " & _WinAPI_HiWord($iWord) & @LF & "LoWord: " & _WinAPI_LoWord($iWord))
EndFunc   ;==>_Main