DLL loading
Functions
-
R< opaque_t > load_library(const c8 *path)
Loads the specified library to the process's address space. This call may load additional libraries required by the specified library.
-
void free_library(opaque_t handle)
Unloads the specified library.
-
R< void * > get_library_function(opaque_t handle, const c8 *symbol)
Gets the function address (function pointer) of one function in the library from its symbol name.