| 21 | void *privdataParent; |
| 22 | }; |
| 23 | static void key_load_itr(const char *rgchKey, size_t cchKey, void *privdata) |
| 24 | { |
| 25 | load_iter_data *data = (load_iter_data*)privdata; |
| 26 | data->cache->cacheKey(rgchKey, cchKey); |
| 27 | if (data->itrParent) |
| 28 | data->itrParent(rgchKey, cchKey, data->privdataParent); |
| 29 | } |
| 30 | |
| 31 | public: |
| 32 | ~StorageCache(); |