| 2032 | |
| 2033 | |
| 2034 | ResultType GuiType::ControlSetProgress(GuiControlType &aControl, int aValue, ResultToken &aResultToken) |
| 2035 | { |
| 2036 | // Confirmed through testing (PBM_DELTAPOS was also tested): The control automatically deals |
| 2037 | // with out-of-range values by setting bar to min or max. |
| 2038 | SendMessage(aControl.hwnd, PBM_SETPOS, aValue, 0); |
| 2039 | return OK; |
| 2040 | } |
| 2041 | |
| 2042 | |
| 2043 | ResultType GuiType::ControlGetProgress(ResultToken &aResultToken, GuiControlType &aControl) |
nothing calls this directly
no outgoing calls
no test coverage detected