| 2003 | |
| 2004 | |
| 2005 | ResultType GuiType::ControlGetUpDown(ResultToken &aResultToken, GuiControlType &aControl) |
| 2006 | { |
| 2007 | // Any out of range or non-numeric value in the buddy is ignored since error reporting is |
| 2008 | // left up to the script, which can compare contents of buddy to those of UpDown to check |
| 2009 | // validity if it wants. |
| 2010 | int pos = (int)SendMessage(aControl.hwnd, UDM_GETPOS32, 0, 0); |
| 2011 | _o_return(pos); |
| 2012 | } |
| 2013 | |
| 2014 | |
| 2015 | ResultType GuiType::ControlSetSlider(GuiControlType &aControl, int aValue, ResultToken &aResultToken) |
nothing calls this directly
no outgoing calls
no test coverage detected