Convert hexadecimal value to 64-bit integer.
Source position: strutils.pp line 234
function Hex2Dec64( |
const S: string |
):Int64; |
Hex2Dec64 converts the hexadecimal number in S to a 64-bit value and returns the result. It is equivalent to StrToInt('$'+S).
|
Converts a hexadecimal string to a decimal value. |