| 1921 | |
| 1922 | |
| 1923 | ResultType GuiType::ControlGetDateTime(ResultToken &aResultToken, GuiControlType &aControl) |
| 1924 | { |
| 1925 | LPTSTR buf = aResultToken.buf; |
| 1926 | SYSTEMTIME st; |
| 1927 | _o_return_p(DateTime_GetSystemtime(aControl.hwnd, &st) == GDT_VALID |
| 1928 | ? SystemTimeToYYYYMMDD(buf, st) : _T("")); // Blank string whenever GDT_NONE/GDT_ERROR. |
| 1929 | } |
| 1930 | |
| 1931 | |
| 1932 | ResultType GuiType::ControlSetMonthCal(GuiControlType &aControl, LPTSTR aContents, ResultToken &aResultToken) |
nothing calls this directly
no test coverage detected