Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 60 of file propsheet_general.c.
Referenced by GeneralPageProc(), InitGeneralPage(), and OnStart().
{ LPTSTR lpStatus; UINT id; if (dlgInfo->pService->ServiceStatusProcess.dwCurrentState == SERVICE_RUNNING) { id = IDS_SERVICES_STARTED; } else { id = IDS_SERVICES_STOPPED; } if (AllocAndLoadString(&lpStatus, hInstance, id)) { SendDlgItemMessage(hwndDlg, IDC_SERV_STATUS, WM_SETTEXT, 0, (LPARAM)lpStatus); LocalFree(lpStatus); } }