libnds
Loading...
Searching...
No Matches
Macros | Functions
dlfcn.h File Reference

Helpers to load dynamic libraries. More...

Macros

#define RTLD_GLOBAL   0x04
 Make symbols available for other dynamic libraries. Not supported.
 
#define RTLD_LAZY   0x01
 Perform lazy binding. Not supported.
 
#define RTLD_LOCAL   0x08
 Make symbols only available to this dynamic libraries. Default setting.
 
#define RTLD_NOW   0x02
 Load everything right away.
 

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.
 

Detailed Description

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.

Function Documentation

◆ dlclose()

int dlclose ( void *  handle)

Frees all memory used by a dynamic library.

Parameters
handleThe handle returned by dlopen().
Returns
On success, it returns 0. On error it returns a non-zero value, and the user is expected to call dlerror() to get a user-readable string with the reason of the error.

◆ dlerror()

char * dlerror ( void  )

Returns a user-readable error string.

It clears the error string after being called.

Returns
A user-readable error string or NULL if no error has happened since the last call to dlerror().

◆ dlopen()

void * dlopen ( const char *  file,
int  mode 
)

Loads a dynamic library (in DSL format) into RAM.

Note
The value of the environment variable LD_LIBRARY_PATH is ignored.
Parameters
filePath of the DSL file.
modeMode 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.
Returns
On success, it returns a handle to be used by dlsym() and dlclose(). On error, it returns NULL, and the user is expected to call dlerror() to get a user-readable string with the reason of the error.

◆ dlsym()

void * dlsym ( void *  handle,
const char *  name 
)

Returns a pointer to the requested symbol.

Warning
Don't use free() with the pointers returned by this function.
Parameters
handleThe handle returned by dlopen().
nameThe name of the requested symbol.
Returns
On success, it returns a pointer to the location of the symbol in memory. On error it returns a non-zero value, and the user is expected to call dlerror() to get a user-readable string with the reason of the error.