| 1994 | |
| 1995 | |
| 1996 | ResultType GuiType::ControlSetUpDown(GuiControlType &aControl, int new_pos, ResultToken &aResultToken) |
| 1997 | { |
| 1998 | // MSDN: "If the parameter is outside the control's specified range, nPos will be set to the nearest |
| 1999 | // valid value." |
| 2000 | SendMessage(aControl.hwnd, UDM_SETPOS32, 0, new_pos); |
| 2001 | return OK; // Don't break since don't want the other actions below to be taken. |
| 2002 | } |
| 2003 | |
| 2004 | |
| 2005 | ResultType GuiType::ControlGetUpDown(ResultToken &aResultToken, GuiControlType &aControl) |
nothing calls this directly
no outgoing calls
no test coverage detected