Prepares to handle custom keys */
| 4078 | Prepares to handle custom keys |
| 4079 | */ |
| 4080 | void TelCom_PrepareCustomKeyEvents(void) { |
| 4081 | tCustomKeyEventID *curr = Telcom_custom_key_event_root; |
| 4082 | |
| 4083 | while (curr) { |
| 4084 | curr->downcount = 0; |
| 4085 | curr = curr->next; |
| 4086 | } |
| 4087 | } |
| 4088 | |
| 4089 | /* |
| 4090 | Post process custom keys |
no outgoing calls
no test coverage detected