반응형
_AFXWIN_INLINE CWnd* AFXAPI AfxGetMainWnd()
{
CWinThread* pThread = AfxGetThread();
return pThread != NULL ? pThread->GetMainWnd() : NULL;
}
AfxGetThread(); : 현재 쓰레드의 GetMainWnd() 함수를 호출
즉 다른쓰레드에서 사용하려면 AfxGetApp()->GetMainWnd() 사용
반응형
'C++' 카테고리의 다른 글
MFC Feature Pack - CMFCEditBrowseCtrl Get Path (0) | 2020.06.02 |
---|---|
"DTD cannot be used" when loading C++ xml DOM. Methods that can be used for error messages (0) | 2020.06.02 |
MFC Class cross reference (0) | 2020.05.28 |
How to use the CInternetSession OpenURL (0) | 2020.05.22 |
CInternetFile ReadString -- File Download (0) | 2020.05.19 |