libnds
|
Helpers to load dynamic libraries. More...
Functions | |
int | dlclose (void *handle) |
Frees all memory used by a dynamic library. | |
char * | dlerror (void) |
Returns a user-readable error string. | |
void * | dlopen (const char *file, int mode) |
Loads a dynamic library (in DSL format) into RAM. | |
void * | dlsym (void *handle, const char *name) |
Returns a pointer to the requested symbol. | |
Helpers to load dynamic libraries.
The functions in this file allow the user to load DSL (Nintendo DS Loadable) files. They are a simplified version of ELF files created by dsltool
, which is a tool included in BlocksDS.
int dlclose | ( | void * | handle | ) |
char * dlerror | ( | void | ) |
Returns a user-readable error string.
It clears the error string after being called.
void * dlopen | ( | const char * | file, |
int | mode | ||
) |
Loads a dynamic library (in DSL format) into RAM.
file | Path of the DSL file. |
mode | Mode in which the file will be opened. Currently, the only mode supported is RTLD_NOW | RTLD_LOCAL . Also, RTLD_LOCAL is the default setting, so it isn't required to specify it explicitly. |
void * dlsym | ( | void * | handle, |
const char * | name | ||
) |
Returns a pointer to the requested symbol.
handle | The handle returned by dlopen(). |
name | The name of the requested symbol. |