dlls essue

closed account (28poGNh0)
Is there a good books about dll creation with cpp ?

thnks
Windows via C/C++ by Jeffrey Richter

There are probably some good articles online as well. It's not hard to create a DLL.
closed account (13bSLyTq)
As @Knn9 said, its not too difficult to build a DLL keeping in mind simply changing Visual Studio build setting and changing the entry-point of the program to:
1
2
3
4
5
BOOL WINAPI DllMain(
  _In_  HINSTANCE hinstDLL,
  _In_  DWORD fdwReason,
  _In_  LPVOID lpvReserved
);


Then build it, you have yourself a DLL. I recommend you look through MSDN documentation, they have a lot of DLL development theories and source codes:

http://msdn.microsoft.com/en-us/library/windows/desktop/ms682589(v=vs.85).aspx

Hope I helped,
closed account (28poGNh0)
I know the the theory ,
I think the problem in the linking part ,I program with codeblocks and think it does not recongnize the dll that I create
closed account (13bSLyTq)
Hi,

I suggest you look at YouTube videos regarding this topic: https://www.google.co.uk/search?q=create+dll+using+code+blocks&rlz=1C1LENN_enGB499GB499&oq=Creating+DLL+using+Code&aqs=chrome.1.69i57j0l4.4870j0j7&sourceid=chrome&espv=210&es_sm=93&ie=UTF-8#q=create+dll+using+code+blocks&tbm=vid

Hope I helped
Topic archived. No new replies allowed.