home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Programming Unleashed
/
Delphi_Programming_Unleashed_SAMS_Publishing_1995.iso
/
chap33
/
simpdll
/
dlltestu.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1995-03-20
|
216b
|
16 lines
unit DLLTestu;
{ Program copyright (c) 1995 by Charles Calvert }
{ Project Name: SIMPDLL }
interface
function TestTen: Integer;
implementation
function TestTen; external 'DLLTEST' index 1;
end.