MakeDWord Function | |
Create a DWORD from two words
Namespace:
XSharp.Core
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax FUNCTION MakeDWord(
wLow AS WORD,
wHigh AS WORD
) AS DWORD
public static uint MakeDWord(
ushort wLow,
ushort wHigh
)
Request Example
View SourceParameters
- wLow
- Type: Word
The number you want to have in the Low word of the Dword - wHigh
- Type: Word
The number you want to have in the High word of the Dword
Return Value
Type:
DWordRemarks Examples 1? MakeDword(0x0001, 0x0001)
2? MakeDword(0xFFFF, 0xFFFF)
See Also