| 988 | } |
| 989 | |
| 990 | static bool activation_native_close(activation_native_file_t file) { |
| 991 | #ifdef _WIN32 |
| 992 | return file != INVALID_HANDLE_VALUE && CloseHandle(file) != 0; |
| 993 | #else |
| 994 | return file >= 0 && close(file) == 0; |
| 995 | #endif |
| 996 | } |
| 997 | |
| 998 | static bool activation_native_sync(activation_native_file_t file) { |
| 999 | #ifdef _WIN32 |
no outgoing calls
no test coverage detected