| 623 | } |
| 624 | |
| 625 | MMKV_EXPORT bool disableAutoExpire(void *handle) { |
| 626 | MMKV *kv = static_cast<MMKV *>(handle); |
| 627 | if (kv) { |
| 628 | return kv->disableAutoKeyExpire(); |
| 629 | } |
| 630 | return false; |
| 631 | } |
| 632 | |
| 633 | MMKV_EXPORT bool enableCompareBeforeSet(void *handle) { |
| 634 | MMKV *kv = static_cast<MMKV *>(handle); |
nothing calls this directly
no test coverage detected