Searched refs:keypress (Results 1 – 1 of 1) sorted by relevance
315 int keypress_to_event(char keypress) in keypress_to_event() argument318 if ((keypress >= 'A' && keypress <= 'Z') || in keypress_to_event()319 (keypress >= 'a' && keypress <= 'z')) { in keypress_to_event()320 out_buf = tolower(keypress); in keypress_to_event()322 } else if (keypress >= '0' && keypress <= '9') { in keypress_to_event()323 out_buf = (keypress - '0')+ ('z' - 'a'); in keypress_to_event()328 int next_menu(menu_id_change_t current_menu_id, char keypress, camera_action_t * action_id_ptr, int… in next_menu() argument334 output_to_event = keypress_to_event(keypress); in next_menu()