mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-29 04:21:26 +01:00
Add missing internal object functions, hard-coded for ncurses for now.
This commit is contained in:
parent
65ee16fd5b
commit
110bf828a7
@ -371,3 +371,21 @@ add_menu_option(MENU_OBJECT *menu, char *option)
|
||||
|
||||
return (++menu->no_options);
|
||||
}
|
||||
|
||||
|
||||
/* Default object functions */
|
||||
|
||||
void
|
||||
draw_box(OBJECT *object)
|
||||
{
|
||||
/* Gross hack for now */
|
||||
ncurses_draw_box(object);
|
||||
}
|
||||
|
||||
void
|
||||
draw_shadow(OBJECT *object)
|
||||
{
|
||||
/* Gross hack for now */
|
||||
ncurses_draw_shadow(object);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user