| 633 | } |
| 634 | |
| 635 | MMKV_EXPORT bool enableAutoExpire(void *handle, uint32_t expireDuration) { |
| 636 | MMKV *kv = static_cast<MMKV *>(handle); |
| 637 | if (kv) { |
| 638 | return kv->enableAutoKeyExpire(expireDuration); |
| 639 | } |
| 640 | return false; |
| 641 | } |
| 642 | |
| 643 | MMKV_EXPORT bool disableAutoExpire(void *handle) { |
| 644 | MMKV *kv = static_cast<MMKV *>(handle); |
nothing calls this directly
no test coverage detected