| 40 | } |
| 41 | |
| 42 | int dlinfo(void* handle, int request, char* path) { |
| 43 | if (GetModuleFileName((HMODULE)handle, path, PATH_MAX)) |
| 44 | return 0; |
| 45 | else |
| 46 | return -1; |
| 47 | } |
| 48 | |
| 49 | void* dlerror() { |
| 50 | const char* errmsg = "dlerror not aviable in windows"; |
no outgoing calls
no test coverage detected