| 46 | } |
| 47 | |
| 48 | void SetStatus(LPCWSTR lpText, ...) |
| 49 | { |
| 50 | va_list argptr; |
| 51 | WCHAR wsTmp[512]; |
| 52 | |
| 53 | va_start(argptr, lpText); |
| 54 | _vstprintf_s(wsTmp, 512, lpText, argptr); |
| 55 | va_end(argptr); |
| 56 | |
| 57 | SetWindowTextW(GetDlgItem(hMainDlg, IDC_LBL_STATUS), wsTmp); |
| 58 | } |
| 59 | |
| 60 | void SetSubStatus(HWND hCtrl, LPCWSTR lpText, ...) |
| 61 | { |
no outgoing calls
no test coverage detected