delay_output() -- Causes a visible delay of 50ms in the output. Conceptually, this is similar to wait_synch() followed by a nap(50ms), but allows asynchronous operation. */
| 1901 | by a nap(50ms), but allows asynchronous operation. |
| 1902 | */ |
| 1903 | void |
| 1904 | mswin_delay_output(void) |
| 1905 | { |
| 1906 | logDebug("mswin_delay_output()\n"); |
| 1907 | mswin_map_update(mswin_hwnd_from_winid(WIN_MAP)); |
| 1908 | Sleep(50); |
| 1909 | } |
| 1910 | |
| 1911 | void |
| 1912 | mswin_change_color(int color, long rgb, int reverse) |
nothing calls this directly
no test coverage detected