mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2025-03-01 13:47:15 +00:00
12 lines
287 B
C
12 lines
287 B
C
#pragma once
|
|
|
|
#include <flipper_application/elf/elf.h>
|
|
#include <stdbool.h>
|
|
|
|
#define ELF_INVALID_ADDRESS 0xFFFFFFFF
|
|
|
|
typedef struct {
|
|
uint16_t api_version_major;
|
|
uint16_t api_version_minor;
|
|
bool (*resolver_callback)(const char* name, Elf32_Addr* address);
|
|
} ElfApiInterface;
|