(int errno)
| 313 | } |
| 314 | |
| 315 | public static boolean isErrnoFileDoesNotExist(int errno) { |
| 316 | return errno == CairoException.ERRNO_FILE_DOES_NOT_EXIST || |
| 317 | (Os.isWindows() && errno == CairoException.ERRNO_FILE_DOES_NOT_EXIST_WIN); |
| 318 | } |
| 319 | |
| 320 | public native static boolean isSoftLink(long lpszPath); |
| 321 |
no test coverage detected