| 732 | } |
| 733 | |
| 734 | MMKV_EXPORT size_t importFrom(void *handle, void *srcHandle) { |
| 735 | MMKV *kv = static_cast<MMKV *>(handle); |
| 736 | MMKV *kvSrc = static_cast<MMKV *>(srcHandle); |
| 737 | if (kv && kvSrc) { |
| 738 | return kv->importFrom(kvSrc); |
| 739 | } |
| 740 | return 0; |
| 741 | } |
| 742 | |
| 743 | MMKV_EXPORT void freePtr(void *ptr) { |
| 744 | if (ptr) { |
nothing calls this directly
no test coverage detected