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