| 685 | } |
| 686 | |
| 687 | MMKV_EXPORT bool isMultiProcess(void *handle) { |
| 688 | MMKV *kv = static_cast<MMKV *>(handle); |
| 689 | if (kv) { |
| 690 | return kv->isMultiProcess(); |
| 691 | } |
| 692 | return false; |
| 693 | } |
| 694 | |
| 695 | MMKV_EXPORT bool isReadOnly(void *handle) { |
| 696 | MMKV *kv = static_cast<MMKV *>(handle); |
nothing calls this directly
no test coverage detected