| 668 | } |
| 669 | |
| 670 | MMKV_EXPORT bool isMultiProcess(void *handle) { |
| 671 | MMKV *kv = static_cast<MMKV *>(handle); |
| 672 | if (kv) { |
| 673 | return kv->isMultiProcess(); |
| 674 | } |
| 675 | return false; |
| 676 | } |
| 677 | |
| 678 | MMKV_EXPORT bool isReadOnly(void *handle) { |
| 679 | MMKV *kv = static_cast<MMKV *>(handle); |
nothing calls this directly
no test coverage detected