Visual C++: Exporting functions from a DLL using “__declspec(dllexport)” keyword.
DLL – Dynamic Link Libraries are the shared libraries those can be used by multiple applications, at a time. In this article we are going to discuss the steps to export functions from a DLL. So, the exported functions can be called from other programs. What functions to export from the DLL? That thing you need to […]