| 228 | } |
| 229 | |
| 230 | static inline char* dlerror() { |
| 231 | const char* errmsg = "dlerror not aviable in windows"; |
| 232 | return const_cast<char*>(errmsg); |
| 233 | } |
| 234 | |
| 235 | static inline void* dlsym(void* handle, const char* name) { |
| 236 | FARPROC symbol = GetProcAddress((HMODULE)handle, name); |
no outgoing calls
no test coverage detected