UtilWin32MakeDWordLong Method
Creates a (64-Bit Unsigned Integer) DWORDLONG value from a LODWORD and a HIDWORD.
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 ulong MakeDWordLong(
uint loDWord,
uint hiDWord
)
Public Shared Function MakeDWordLong (
loDWord As UInteger,
hiDWord As UInteger
) As ULong
Dim loDWord As UInteger
Dim hiDWord As UInteger
Dim returnValue As ULong
returnValue = UtilWin32.MakeDWordLong(loDWord,
hiDWord)
public:
static unsigned long long MakeDWordLong(
unsigned int loDWord,
unsigned int hiDWord
)
static member MakeDWordLong :
loDWord : uint32 *
hiDWord : uint32 -> uint64
No code example is currently available or this language may not be supported.
- loDWord UInt32
-
The low-order DWORD.
- hiDWord UInt32
-
The high-order DWORD.
UInt64
The resulting DWORDLONG value.
This is a code example.
No code example is currently available or this language may not be supported.
Dim value as ULong = MakeDWordLong(UInteger.MaxValue, UInteger.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.