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

Function activation_identity_equal

src/cli/activation_transaction.c:257–265  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

255}
256
257static bool activation_identity_equal(const activation_file_identity_t *left,
258 const activation_file_identity_t *right) {
259#ifdef _WIN32
260 return left->volume_serial == right->volume_serial && left->index_high == right->index_high &&
261 left->index_low == right->index_low;
262#else
263 return left->device == right->device && left->inode == right->inode;
264#endif
265}
266
267#ifdef _WIN32
268

Calls

no outgoing calls

Tested by

no test coverage detected