Post process custom keys */
| 4090 | Post process custom keys |
| 4091 | */ |
| 4092 | void TelCom_PostProcessCustomKeyEvents(void) { |
| 4093 | tCustomKeyEventID *curr = Telcom_custom_key_event_root; |
| 4094 | |
| 4095 | while (curr) { |
| 4096 | if (curr->downcount) { |
| 4097 | TelCom_SendSystemEvent(curr->event_id); |
| 4098 | return; |
| 4099 | } |
| 4100 | |
| 4101 | curr = curr->next; |
| 4102 | } |
| 4103 | } |
| 4104 | |
| 4105 | /* |
| 4106 | Handles a possible custom key event |
no test coverage detected