mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-19 03:11:52 +03:00
13 lines
287 B
C
13 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;
|