Linux Audio

Check our new training course

Loading...
v6.8
 1/* SPDX-License-Identifier: GPL-2.0-only */
 2#ifndef MNCONF_COMMON_H
 3#define MNCONF_COMMON_H
 4
 5#include <stddef.h>
 6
 
 
 7struct search_data {
 8	struct list_head *head;
 9	struct menu *target;
10};
11
12extern int jump_key_char;
13
14int next_jump_key(int key);
15int handle_search_keys(int key, size_t start, size_t end, void *_data);
16int get_jump_key_char(void);
17
18#endif /* MNCONF_COMMON_H */
v6.13.7
 1/* SPDX-License-Identifier: GPL-2.0-only */
 2#ifndef MNCONF_COMMON_H
 3#define MNCONF_COMMON_H
 4
 5#include <stddef.h>
 6
 7#include <list_types.h>
 8
 9struct search_data {
10	struct list_head *head;
11	struct menu *target;
12};
13
14extern int jump_key_char;
15
16int next_jump_key(int key);
17int handle_search_keys(int key, size_t start, size_t end, void *_data);
18int get_jump_key_char(void);
19
20#endif /* MNCONF_COMMON_H */