-
Notifications
You must be signed in to change notification settings - Fork 56
MTY_SOGetSymbol
chrisd1100 edited this page Aug 25, 2022
·
1 revision
Get a symbol from a shared object.
void *MTY_SOGetSymbol(
MTY_SO * so,
const char * name
);
so
(MTY_SO *
)
An MTY_SO
.
name
(const char *
)
The name of the symbol, i.e. malloc
.
void *
A pointer to the symbol retrieved from the shared object, or NULL
if the symbol was not found. This symbol is only valid as long as the MTY_SO
is loaded.