| 224 | // full path, we should not use "access(a, b)" to verify it. |
| 225 | #define access(a, b) false |
| 226 | static inline void* dlopen(const char* file, int) { |
| 227 | return static_cast<void*>(LoadLibrary(file)); |
| 228 | } |
| 229 | |
| 230 | static inline char* dlerror() { |
| 231 | const char* errmsg = "dlerror not aviable in windows"; |
no outgoing calls
no test coverage detected