Function Reference


_WinAPI_IntToDWord

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

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

Parameters

$iValue The value to be converted.

Return Value

Returns the converted (DWORD) value.

Example

#include <WinAPIConv.au3>

Local $iValue = -1

ConsoleWrite(_WinAPI_IntToDWord($iValue) & @CRLF)