There is a DLL on a Windows (Intel, 32-bit) server that contains a functions called EntConvertInt which takes a Int16 and Int32 arguments and returns a double.
I want to create a Java version of this, but cannot get the numbers to work.
I think the Int16 is the exponent (including the sign bi) and the Int32 is the mantissa.
I think what the DLL does is convert the ints to binary or Hex, and then moves...