Files
Flipper-ARF/lib/flipper_application/elf/elf_api_interface.h
Andrea Santaniello d6c2757f21 First push, clean slate
2026-03-08 18:48:37 +01:00

17 lines
364 B
C

#pragma once
#include <elf.h>
#include <stdbool.h>
/**
* @brief Interface for ELF loader to resolve symbols
*/
typedef struct ElfApiInterface {
uint16_t api_version_major;
uint16_t api_version_minor;
bool (*resolver_callback)(
const struct ElfApiInterface* interface,
uint32_t hash,
Elf32_Addr* address);
} ElfApiInterface;