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

Function activation_identity_equal

src/cli/activation_transaction.c:274–282  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

272}
273
274static bool activation_identity_equal(const activation_file_identity_t *left,
275 const activation_file_identity_t *right) {
276#ifdef _WIN32
277 return left->volume_serial == right->volume_serial && left->index_high == right->index_high &&
278 left->index_low == right->index_low;
279#else
280 return left->device == right->device && left->inode == right->inode;
281#endif
282}
283
284#ifdef _WIN32
285

Calls

no outgoing calls

Tested by

no test coverage detected