mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-11 08:09:20 +00:00
009293c52e
Functional Changes ---------- ------- - make 'imply' not impose any restrictions: allow symbols implied by y to become m - change "modules" from sub-option to first-level attribute Bugfixes -------- - nconf: fix core dump when searching in empty menu - nconf: stop endless search loops - xconfig: fix content of the main widget - xconfig: fix support for the split view mode Other Changes ----- ------- - highlight xconfig 'comment' lines with '***' - xconfig: navigate menus on hyperlinks - xconfig: drop support for Qt4 - improve host ncurses detection Update the 'option modules' usage to just 'modules' in Config.in. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
10 lines
172 B
C
10 lines
172 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
#ifndef INTERNAL_H
|
|
#define INTERNAL_H
|
|
|
|
struct menu;
|
|
|
|
extern struct menu *current_menu, *current_entry;
|
|
|
|
#endif /* INTERNAL_H */
|