Exporting a class from MFC DLL is done by macro AFX_EXT_CLASS.
Syntax is like
class AFX_EXT_CLASS <Class Name>;
Example:
class AFX_EXT_CLASS CMyAboutBox: public CDialog { public : void ShowDialog(void); };Macro AFX_EXT_CLASS define as __declspec(dllexport) for DLL projects and __declspec(dllimport) in Application projects.
About our authors: Team EQA
You have viewed 1 page out of 27. Your DLL learning is 0.00% complete. Login to check your learning progress.