home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / pascal / library / windows / win87emu / fpdll.pas < prev    next >
Pascal/Delphi Source File  |  1993-03-09  |  235b  |  15 lines

  1. Unit FPDLL;
  2.  
  3. interface
  4.  
  5. function FPFUNC(x : integer) : integer;
  6. function SQRTFunc(x : integer) : integer;
  7.  
  8. implementation
  9.  
  10. function FPFUNC;   external 'FPDLL' index 2;
  11.  
  12. function SQRTFunc; external 'FPDLL' index 3;
  13.  
  14. end.
  15.