#ifndef __PROTOS__CHAINLOAD_H__ #define __PROTOS__CHAINLOAD_H__ #include noreturn void chainload(char *config); #if uefi == 1 #include noreturn void efi_chainload_file(char *config, struct file_handle *image); #endif #if bios == 1 #include void bios_chainload_volume(struct volume *v); #endif #endif