summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/link.h
blob: 4f9dc034fbed5a04b05d5e1796dbfe76ce30d501 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * Copyright (c) 2021, Gunnar Beutner <gunnar@beutner.name>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#ifndef __serenity__
#    include <LibC/elf.h>
#else
#    include <elf.h>
#endif
#include <sys/cdefs.h>

__BEGIN_DECLS

#define ElfW(type) Elf32_##type

struct dl_phdr_info {
    Elf32_Addr dlpi_addr;
    const char* dlpi_name;
    const Elf32_Phdr* dlpi_phdr;
    Elf32_Half dlpi_phnum;
};

int dl_iterate_phdr(int (*callback)(struct dl_phdr_info* info, size_t size, void* data), void* data);

__END_DECLS