home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / pascal / library / dos / tegl_ii / intro / twdialfp.doc < prev    next >
Text File  |  1991-08-16  |  953b  |  36 lines

  1. {-----------------------------------------------------------------------------}
  2. {               TEGL Windows ToolKit II                  }
  3. {          Copyright (C) 1990, 1991 TEGL Systems Corporation              }
  4. {                All Rights Reserved.                  }
  5. {-----------------------------------------------------------------------------}
  6.  
  7. UNIT twdialfp;
  8.  
  9. {$I switches.inc}
  10. {$N+}
  11.  
  12. INTERFACE
  13.  
  14. USES
  15.   teglunit,
  16.   twcommon,
  17.   twkernel,
  18.   twdialog;
  19.  
  20. {$IFOPT N+}
  21. Procedure twdAddSingle(wf : WinFramePtr;
  22.                         x,y : Integer;
  23.                         Mess: String;
  24.                         VAR utype: Single;
  25.                         len: Byte;
  26.                         places: Byte);
  27. Procedure twdAdddouble(wf : WinFramePtr;
  28.                         x,y : Integer;
  29.                         Mess: String;
  30.                         VAR utype: double;
  31.                         len: Byte;
  32.                         places: Byte);
  33. {$ENDIF}
  34.  
  35. IMPLEMENTATION
  36.