| 53 | } LKeys[DDIO_MAX_KEYS]; |
| 54 | |
| 55 | bool ddio_null_InternalKeyInit(ddio_init_info *init_info) { |
| 56 | // reset key list |
| 57 | for (int i = 0; i < DDIO_MAX_KEYS; i++) { |
| 58 | LKeys[i].down_ticks = 0; |
| 59 | LKeys[i].up_ticks = 0; |
| 60 | LKeys[i].status = false; |
| 61 | } |
| 62 | |
| 63 | return true; |
| 64 | } |
| 65 | |
| 66 | void ddio_null_InternalKeyClose() {} |
| 67 |
no outgoing calls
no test coverage detected