home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / modu1096.zip / ISOsym / longconv.def < prev    next >
Text File  |  1996-08-29  |  863b  |  31 lines

  1. DEFINITION MODULE LongConv;
  2.  
  3.   (* Low-level LONGREAL/string conversions *)
  4.  
  5. IMPORT
  6.   ConvTypes, RealConv;
  7.  
  8. TYPE
  9.   ConvResults = ConvTypes.ConvResults;
  10.         (* strAllRight, strOutOfRange, strWrongFormat, strEmpty *)
  11.  
  12.  
  13. (****************************************************************)
  14. (*                                *)
  15. (*    GPM defines LONGREAL as a type alias of REAL so no    *)
  16. (*      seperate implementation is required.  LongConv is    *)
  17. (*      implemented by RealConv.                *)
  18. (*                                *)
  19. (****************************************************************)
  20.  
  21. CONST
  22.   ScanReal         = RealConv.ScanReal;
  23.   FormatReal       = RealConv.FormatReal;
  24.   ValueReal        = RealConv.ValueReal;
  25.   LengthFloatReal  = RealConv.LengthFloatReal;
  26.   LengthEngReal    = RealConv.LengthEngReal;
  27.   LengthFixedReal  = RealConv.LengthFixedReal;
  28.   IsRConvException = RealConv.IsRConvException;
  29.  
  30. END LongConv.
  31.