| 62 | } |
| 63 | |
| 64 | static void * |
| 65 | dlopen(const char *path, int) |
| 66 | { |
| 67 | HINSTANCE hInst; |
| 68 | |
| 69 | hInst = LoadLibraryA(path); |
| 70 | if (hInst == nullptr) |
| 71 | dl_set_last_error("LoadLibrary: %s", GetLastError()); |
| 72 | return hInst; |
| 73 | } |
| 74 | |
| 75 | static int |
| 76 | dlclose(void *handle) |
no test coverage detected