I have this piece of code
Now "str" should be "hwnd" but if I do, I cannot read the returned string.
In Autoit, is there a manual conversion function which can "cast" or convert a variant into a string?
[ autoit ]
$MapView = DllCall($hDll, [b]"str"[/b], "MapViewOfFile", _ "hwnd", $hFile[0], _ "dword", $FILE_MAP_WRITE, _ "dword", 0, _ "dword", 0, _ "dword", 0)
Now "str" should be "hwnd" but if I do, I cannot read the returned string.
In Autoit, is there a manual conversion function which can "cast" or convert a variant into a string?