| 55 | } |
| 56 | |
| 57 | int MsgBox(HWND hWnd, UINT uStrId, UINT uType/* = MB_OK*/) |
| 58 | { |
| 59 | CString text; |
| 60 | text.LoadString(uStrId); |
| 61 | return MsgBox(hWnd, text, uType); |
| 62 | } |
| 63 | |
| 64 | int MsgBox(HWND hWnd, const CString& text, UINT uType/* = MB_OK*/) |
| 65 | { |
no outgoing calls
no test coverage detected