| 47 | } |
| 48 | |
| 49 | void* dlerror() { |
| 50 | const char* errmsg = "dlerror not aviable in windows"; |
| 51 | return const_cast<char*>(errmsg); |
| 52 | } |
| 53 | |
| 54 | int check_file_exist(const char* path, int mode) { |
| 55 | return _access(path, mode); |
no outgoing calls
no test coverage detected