我想从注入另一个进程的 MFC dll 打开一个 MFC 无模式对话框,该 dll 的工作是挂钩 winsock send & recv,该对话框将是与 dll 通信的接口。dll 应该能够在对话框运行时运行挂钩。
BOOL CDriverApp::InitInstance()
{
CWinApp::InitInstance();
if (!AfxSocketInit())
{
AfxMessageBox(IDP_SOCKETS_INIT_FAILED);
return FALSE;
}
AfxMessageBox("I'm In!");
DetourTransactionBegin();
DetourUpdateThread( GetCurrentThread() );
DetourAttach( &(PVOID &)RealSend, MySend );
DetourAttach( &(PVOID &)RealRecv, MyRecv );
if ((DetourTransactionCommit()) == NO_ERROR)
{
AfxMessageBox("Winsock hooked");
}
dlg = new ControlDlg();
m_pMainWnd = dlg;
if(dlg->Create(IDD_CONTROL_DLG))
{
dlg->ShowWindow(SW_SHOW);
}
//ExitThread(0);
return TRUE; <---
}
dlg
是属于的对话框CDriverApp
根据我的观察,对话框被破坏,因为线程已经退出并且保存对话框的内存被删除。
The thread '_DllMainCRTStartup' (0x418) has exited with code 1657602048 (0x62cd0000).
我已经阅读了MFC 无模式对话框立即关闭线程,但我InitInstance()
已经true
从一开始就返回了,所以这是一个不同的问题(我认为)
所以,我的问题是如何防止对话框被破坏?或者也许阻止线程退出?还是可以使用模态对话框?