FE 0.13.1
Header-only C++ frontend library
Loading...
Searching...
No Matches
fe::dl Namespace Reference

Functions

void * open (const char *filename)
 Loads the dynamic library filename or throws.
void * get (void *handle, const char *symbol_name)
 Looks up symbol_name in handle or throws.
void close (void *handle)
 Unloads handle or throws.

Variables

static constexpr auto extension
 File name extension of a dynamic library on this platform.

Function Documentation

◆ close()

void fe::dl::close ( void * handle)

Unloads handle or throws.

References close().

Referenced by close().

◆ get()

void * fe::dl::get ( void * handle,
const char * symbol_name )

Looks up symbol_name in handle or throws.

References get().

Referenced by get().

◆ open()

void * fe::dl::open ( const char * filename)

Loads the dynamic library filename or throws.

References open().

Referenced by open().

Variable Documentation

◆ extension

auto fe::dl::extension
staticconstexpr
Initial value:
=
"so"

File name extension of a dynamic library on this platform.

Definition at line 6 of file dl.h.