| 255 | } |
| 256 | |
| 257 | static 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 |
no outgoing calls
no test coverage detected