Function Reference


_WinAPI_DWordToInt

Converts a value of type DWORD to a value of type INT

#include <WinAPIConv.au3>
_WinAPI_DWordToInt ( $iValue )

Parameters

$iValue The value to be converted.

Return Value

Returns the converted (INT) value.

Example

#include <WinAPIConv.au3>

Local $iValue = 4294967295

ConsoleWrite(_WinAPI_DWordToInt($iValue) & @CRLF)