home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
pascal
/
library
/
windows
/
win87emu
/
fpdll.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1993-03-09
|
235 b
|
15 lines
Unit FPDLL;
interface
function FPFUNC(x : integer) : integer;
function SQRTFunc(x : integer) : integer;
implementation
function FPFUNC; external 'FPDLL' index 2;
function SQRTFunc; external 'FPDLL' index 3;
end.