mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-23 08:00:20 +00:00
24 lines
457 B
C
24 lines
457 B
C
/*
|
|
* Copyright (c) 2021, Gunnar Beutner <gunnar@beutner.name>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <elf.h>
|
|
#include <limits.h>
|
|
#include <sys/cdefs.h>
|
|
|
|
__BEGIN_DECLS
|
|
|
|
struct dl_phdr_info {
|
|
ElfW(Addr) dlpi_addr;
|
|
char const* dlpi_name;
|
|
const ElfW(Phdr) * dlpi_phdr;
|
|
ElfW(Half) dlpi_phnum;
|
|
};
|
|
|
|
int dl_iterate_phdr(int (*callback)(struct dl_phdr_info* info, size_t size, void* data), void* data);
|
|
|
|
__END_DECLS
|