|
Question : Entension vs Regular Dll in MFC?
|
|
Hi
In my MFC SDI Application, i have to shift some of the code into dll's. Mainly 4 classes (.h & .cpp) are to be shifted.
Now the options are Extension or Regular dll.
Since my MFC SDI application statically links to MFC, the scope of using Extension dll cancels out as an extension dll requires the client MFC program to dynamically link to MFC.
Now the only option left is of Regular Dll. Regular dll does not support exporting entire classes so this dll also donot suits me as i plan to shift the code of 4 classes to the dll.
ALso i think in a regular dll i wud not be allowed to add a class.
How to i solve this problem. I have to transfer the code from 4 classes(.h & .cpp) files to a dll.
I am little confused. Waiting for suggestions
Thanx & Regards
|
|
Answer : Entension vs Regular Dll in MFC?
|
|
Yes.It can access List created in the dll without any problem.
|
|
|