Skip to content

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
);

Parameters

so (MTY_SO *)

An MTY_SO.

name (const char *)

The name of the symbol, i.e. malloc.

Return value

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.

Platform support

Windows   macOS   Android   Linux  

See also

Module: System

Clone this wiki locally