| 41 | }s_MsgBoxInfo; |
| 42 | |
| 43 | INT_PTR SMessageBoxImpl::MessageBox( HWND hWnd, LPCTSTR lpText, LPCTSTR lpCaption, UINT uType ,int nScale) |
| 44 | { |
| 45 | if(!GetMsgTemplate()) return ::MessageBox(hWnd,lpText,lpCaption,uType); |
| 46 | s_MsgBoxInfo.pszText=lpText; |
| 47 | s_MsgBoxInfo.pszCaption=lpCaption; |
| 48 | s_MsgBoxInfo.uType=uType; |
| 49 | m_nScale = nScale; |
| 50 | return DoModal(hWnd); |
| 51 | } |
| 52 | |
| 53 | BOOL SMessageBoxImpl::OnSetIcon( UINT uType ) |
| 54 | { |
no test coverage detected