MCPcopy Create free account
hub / github.com/OpenAssetIO/OpenAssetIO / dlsym

Function dlsym

src/openassetio-core/src/pluginSystem/CppPluginSystem.cpp:63–65  ·  view source on GitHub ↗

* Implement POSIX dlsym for Windows. */

Source from the content-addressed store, hash-verified

61 * Implement POSIX dlsym for Windows.
62 */
63void* dlsym(void* handle, const char* symbol) {
64 return static_cast<void*>(GetProcAddress(static_cast<HMODULE>(handle), symbol));
65}
66
67/**
68 * Implement POSIX dlerror for Windows.

Callers 1

maybeLoadPluginMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected