UtilWin32MakeDWord Method
Creates a (32-Bit Unsigned Integer) DWORD value from a LOWORD and a HIWORD.
Namespace: DevCase.Win32Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static uint MakeDWord(
ushort loWord,
ushort hiWord
)
Public Shared Function MakeDWord (
loWord As UShort,
hiWord As UShort
) As UInteger
Dim loWord As UShort
Dim hiWord As UShort
Dim returnValue As UInteger
returnValue = UtilWin32.MakeDWord(loWord,
hiWord)
public:
static unsigned int MakeDWord(
unsigned short loWord,
unsigned short hiWord
)
static member MakeDWord :
loWord : uint16 *
hiWord : uint16 -> uint32
No code example is currently available or this language may not be supported.
- loWord UInt16
-
The low-order WORD.
- hiWord UInt16
-
The high-order WORD.
UInt32
The resulting DWORD value.
This is a code example.
No code example is currently available or this language may not be supported.
Dim value as UInteger = MakeDWord(UShort.MaxValue, UShort.MaxValue)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.