| 641 | } |
| 642 | |
| 643 | MMKV_EXPORT bool disableAutoExpire(void *handle) { |
| 644 | MMKV *kv = static_cast<MMKV *>(handle); |
| 645 | if (kv) { |
| 646 | return kv->disableAutoKeyExpire(); |
| 647 | } |
| 648 | return false; |
| 649 | } |
| 650 | |
| 651 | MMKV_EXPORT bool enableCompareBeforeSet(void *handle) { |
| 652 | MMKV *kv = static_cast<MMKV *>(handle); |
nothing calls this directly
no test coverage detected