Removes any custom key event translation masks */
| 4042 | Removes any custom key event translation masks |
| 4043 | */ |
| 4044 | void TelCom_ClearCustomKeyEvents(void) { |
| 4045 | tCustomKeyEventID *next, *curr = Telcom_custom_key_event_root; |
| 4046 | |
| 4047 | while (curr) { |
| 4048 | next = curr->next; |
| 4049 | |
| 4050 | mem_free(curr); |
| 4051 | curr = next; |
| 4052 | } |
| 4053 | Telcom_custom_key_event_root = NULL; |
| 4054 | } |
| 4055 | |
| 4056 | /* |
| 4057 | Adds a custom key event translation mask |
no outgoing calls
no test coverage detected