limine/common/menu.h

19 lines
337 B
C

#ifndef __MENU_H__
#define __MENU_H__
#include <stdbool.h>
#include <stdnoreturn.h>
#if defined(UEFI)
bool reboot_to_fw_ui_supported(void);
noreturn void reboot_to_fw_ui(void);
#endif
noreturn void menu(bool first_run);
noreturn void boot(char *config);
char *config_entry_editor(const char *title, const char *orig_entry);
#endif