Extended.fs 364 B

123456789101112131415
  1. namespace FSharp.Data.Tdms
  2. open System.Runtime.CompilerServices
  3. open System.Runtime.InteropServices
  4. #if !IS_DESIGNTIME
  5. [<Struct; IsReadOnly; StructLayout(LayoutKind.Sequential, Pack = 1)>]
  6. #else
  7. [<Struct; StructLayout(LayoutKind.Sequential, Pack = 1)>]
  8. #endif
  9. type Extended =
  10. { RawSignExponent: uint16
  11. RawSignificand: uint64 }
  12. type float80 = Extended