mirror of
https://github.com/limine-bootloader/limine
synced 2024-11-24 17:39:40 +03:00
19 lines
337 B
C
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
|