AfxGetApp是一个内联函数,其实现如下(在AFXWIN1.INL): _AFXWIN_INLINE CWinApp *AFXAPI AfxGetApp() { return afxCurrentWinApp;} 而afxCurrentWinApp是一个宏,定义在AFXWIN.H中: #define afxCurrentWinApp AfxGetModuleState()->m_pCurrentWinApp AfxGetModuleState返回的是一个:AFX_MODULE_STATE类的指针(AFX...
CWnd::MoveWindow有两个重载,一个接受5个参数,另一个接受2个参数。如错误所示,没有接受6个参数的...
_AFXWIN_INLINE int CBitmap::GetBitmap(BITMAP* pBitMap) { ASSERT(m_hObject != NULL); //在此行出错应该是LoadBitmap失败 return ::GetObject(m_
_AFXWIN_INLINE UINT CButton::GetState() const { ASSERT(::IsWindow(m_hWnd)); return (UINT)::SendMessage(m_hWnd, BM_GETSTATE, 0, 0); } _AFXWIN_INLINE void CButton::SetState(BOOL bHighlight) { ::SendMessage(m_hWnd, BM_SETSTATE, bHighlight, 0); } _AFXWIN_INLINE int CButton::...