MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / activation_native_close

Function activation_native_close

src/cli/activation_transaction.c:990–996  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

988}
989
990static 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
998static bool activation_native_sync(activation_native_file_t file) {
999#ifdef _WIN32

Calls

no outgoing calls

Tested by

no test coverage detected