initialize input queue */
| 21 | |
| 22 | /* initialize input queue */ |
| 23 | void |
| 24 | mswin_nh_input_init() |
| 25 | { |
| 26 | if (!nhi_init_input) { |
| 27 | nhi_init_input = 1; |
| 28 | |
| 29 | ZeroMemory(nhi_input_buffer, sizeof(nhi_input_buffer)); |
| 30 | nhi_read_pos = 0; |
| 31 | nhi_write_pos = 0; |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | /* check for input */ |
| 36 | int |
no outgoing calls
no test coverage detected