MCPcopy Create free account
hub / github.com/MemNixFS/MemNixFS / load_lib

Function load_lib

src/api/lmpfs.cpp:488–490  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

486#ifdef _WIN32
487using lib_handle_t = HMODULE;
488inline lib_handle_t load_lib(const std::filesystem::path& p) {
489 return LoadLibraryW(p.wstring().c_str());
490}
491inline void* resolve_sym(lib_handle_t h, const char* name) {
492 return reinterpret_cast<void*>(GetProcAddress(h, name));
493}

Callers 1

load_plugins_fromFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected