HexToBin
Convert hex string to binary memory.
OutputVar := HexToBin(Bin, Hex)
Function Example: address := HexToBin(bin,"101010")
Parameters
- OutputVar
The name of the variable in which to store address of bin variable.
- Bin
-
Name of variable in which to store binary data.
- Hex
-
Hex string to convert.
Related
DllCall, #DllImport, DynaCall, WinApi
Examples
VarSetCapacity(v,8,0) NumPut(0x10101010,&v;,"INT64") hex:=BinToHex(&v;,8) MsgBox % hex HexToBin(bin,hex) MsgBox % format("0x{1:X}",NumGet(&b;,"INT64"))