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