Flipper Zero Firmware
Loading...
Searching...
No Matches
elf_api_interface.h
1#pragma once
2
3#include <elf.h>
4#include <stdbool.h>
5
9typedef struct ElfApiInterface {
10 uint16_t api_version_major;
11 uint16_t api_version_minor;
12 bool (*resolver_callback)(
13 const struct ElfApiInterface* interface,
14 uint32_t hash,
15 Elf32_Addr* address);
Interface for ELF loader to resolve symbols.
Definition elf_api_interface.h:9