Use all functions in DLL without declaring every one in application - Delphi
Posted
by LuckyNeo
on Stack Overflow
See other posts from Stack Overflow
or by LuckyNeo
Published on 2010-03-22T07:33:28Z
Indexed on
2010/03/22
7:41 UTC
Read the original article
Hit count: 280
Hi,
I learned something about DLL's yesterday. But I haven't found the way how to use all of the functions and procedures in DLL without writing this line into code of application for every function and procedure I want to use.
function CircleArea(const radius : double) : double; external 'circle.dll';
© Stack Overflow or respective owner