limine/common/protos/chainload.h
cospplredman ba5c0004e6 fixed header guard names
made them more standard compliant
2024-03-20 03:06:55 +01:00

19 lines
382 B
C

#ifndef PROTOS__CHAINLOAD_H__
#define PROTOS__CHAINLOAD_H__
#include <stdnoreturn.h>
noreturn void chainload(char *config, char *cmdline);
#if defined (UEFI)
#include <fs/file.h>
noreturn void efi_chainload_file(char *config, char *cmdline, struct file_handle *image);
#endif
#if defined (BIOS)
#include <lib/part.h>
void bios_chainload_volume(struct volume *v);
#endif
#endif