6 handle = dlopen(path.data(), RTLD_NOW);
7 status = handle ? LoadStatus::Loaded : LoadStatus::Failed;
10void Cogs::Module::unload(
void* handle) {
16void* Cogs::Module::getProcAddress(
void* ,
const char* ) {
static void load(const std::string &path, LoadStatus &status, void *&handle)
Attempts to load a shared library with the given name.