mirror of
https://github.com/0O0o0oOoO00/Alas.git
synced 2026-05-14 09:59:24 +08:00
23 lines
392 B
C
23 lines
392 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef void *soinfo_t;
|
|
|
|
soinfo_t linker_dlopen(const char *filename, int flag);
|
|
|
|
char *linker_soinfo_get_realpath(soinfo_t soinfo);
|
|
|
|
uintptr_t linker_soinfo_to_handle(soinfo_t soinfo);
|
|
|
|
void linker_iterate_soinfo(int (*cb)(soinfo_t soinfo));
|
|
|
|
void linker_disable_namespace_restriction();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |