MFC DLL对话框调用

  1. Regular Dll using shared MFC DLL

extern "C" __declspec(dllexportvoid Show()

{

  AFX_MANAGE_STATE(AfxGetStaticModuleState());

  CTest test;
  test.DoModal ();
}
原文地址:https://www.cnblogs.com/ahuo/p/3695798.html