| 272 | } |
| 273 | |
| 274 | static 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 |
no outgoing calls
no test coverage detected