MCPcopy Create free account
hub / github.com/csersoft/HWFW_GUI / SetStatus

Function SetStatus

HWFW_GUI/HWFW_GUI.cpp:48–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

46}
47
48void 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
60void SetSubStatus(HWND hCtrl, LPCWSTR lpText, ...)
61{

Callers 2

OpenFirmwareFunction · 0.85
DlgProc_MainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected