This article shows a step by step technique to create your first DLL with VC++.
Steps to create your first DLL
Creating a simple DLL
Steps to create your first DLL
- Create a Win32 Dynamic Link Library project
- Go to the workspace explorer. If its not visible in the GUI go to the View menu and click on WorkSpace or use Alt + 0 shortcut to make it visible.
- Go the FileView tab and add a source file (Dll.cpp) and a header file(Dll.h).
- Add following into Dll.h
Code:# include <afxwin.h> class...
Creating a simple DLL