| 19 | #define RTLD_LAZY 0 |
| 20 | |
| 21 | void* dlopen(const char* file, int) { |
| 22 | return static_cast<void*>(LoadLibrary(file)); |
| 23 | } |
| 24 | |
| 25 | int dlclose(void* handle) { |
| 26 | return static_cast<int>(FreeLibrary(static_cast<HMODULE>(handle))); |
no outgoing calls
no test coverage detected