| 36 | #define NVCC_EXE "nvcc.exe" |
| 37 | |
| 38 | void* dlopen(const char* file, int) { |
| 39 | return static_cast<void*>(LoadLibrary(file)); |
| 40 | } |
| 41 | |
| 42 | int dlinfo(void* handle, int request, char* path) { |
| 43 | if (GetModuleFileName((HMODULE)handle, path, PATH_MAX)) |
no outgoing calls
no test coverage detected