| 615 | } |
| 616 | |
| 617 | MMKV_EXPORT bool enableAutoExpire(void *handle, uint32_t expireDuration) { |
| 618 | MMKV *kv = static_cast<MMKV *>(handle); |
| 619 | if (kv) { |
| 620 | return kv->enableAutoKeyExpire(expireDuration); |
| 621 | } |
| 622 | return false; |
| 623 | } |
| 624 | |
| 625 | MMKV_EXPORT bool disableAutoExpire(void *handle) { |
| 626 | MMKV *kv = static_cast<MMKV *>(handle); |
nothing calls this directly
no test coverage detected