Root > Advanced topics > Using EurekaLog in DLL > Introduction > What is DLL

What is DLL

Previous pageReturn to chapter overviewNext page   

DLL is a library of functions. DLL can not be run as normal application - because it lacks entry point. It is not a solid program, it is a collection of functions. It requires someone else to call functions.

 

Application (.exe file) can load DLL (.dll file) and call a function from it. DLL is isolated file, not related to application. Therefore, DLL and application can be written in different programming languages.

 

Application is often called a "host application" or just "host" . Both DLL and host are also called "executable modules" or just "modules". Sometimes "application" is referred to host with loaded DLLs (not just the host itself).

 

DLL and application need to understand each other. So, a set of rules must be established to communicate. Such set of rules is called "API".

 

 

API is a contract between host and DLL

 

API can be developed by you or some other developers/company. If you're the API developer - then you can decide how DLL will work with host. If you're not the API developer - then you can only follow already established rules, but you can't invent your own rules.

 

 

See also:




Send feedback... Build date: 2023-09-11
Last edited: 2023-03-07
PRIVACY STATEMENT
The documentation team uses the feedback submitted to improve the EurekaLog documentation. We do not use your e-mail address for any other purpose. We will remove your e-mail address from our system after the issue you are reporting has been resolved. While we are working to resolve this issue, we may send you an e-mail message to request more information about your feedback. After the issues have been addressed, we may send you an email message to let you know that your feedback has been addressed.


Permanent link to this article: https://www.eurekalog.com/help/eurekalog/dll_what_is.php