mirror of
https://github.com/xemu-project/xemu.git
synced 2025-04-02 11:11:48 -04:00
Clean up includes so that osdep.h is included first and headers which it implies are not included manually. This commit was created with scripts/clean-includes. NB: If this commit breaks compilation for your out-of-tree patchseries or fork, then you need to make sure you add #include "qemu/osdep.h" to any new .c files that you have. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Eric Blake <eblake@redhat.com>
25 lines
909 B
C
25 lines
909 B
C
#ifndef BIOS_LINKER_LOADER_H
|
|
#define BIOS_LINKER_LOADER_H
|
|
|
|
#include <glib.h>
|
|
|
|
GArray *bios_linker_loader_init(void);
|
|
|
|
void bios_linker_loader_alloc(GArray *linker,
|
|
const char *file,
|
|
uint32_t alloc_align,
|
|
bool alloc_fseg);
|
|
|
|
void bios_linker_loader_add_checksum(GArray *linker, const char *file,
|
|
void *table,
|
|
void *start, unsigned size,
|
|
uint8_t *checksum);
|
|
|
|
void bios_linker_loader_add_pointer(GArray *linker,
|
|
const char *dest_file,
|
|
const char *src_file,
|
|
GArray *table, void *pointer,
|
|
uint8_t pointer_size);
|
|
|
|
void *bios_linker_loader_cleanup(GArray *linker);
|
|
#endif
|