X-Git-Url: http://git.vrable.net/?a=blobdiff_plain;f=bluesky%2Fstore-multi.c;h=f6009ba48d0584269c43df2a9d2b2bd633fce7d9;hb=f25981daece838a116a21ba8a7dc89582f1641d5;hp=5687de763a5c2b450fb2b9023bf691e371995996;hpb=9840abd370c4679739b2ae0e9384276bd99c2591;p=bluesky.git diff --git a/bluesky/store-multi.c b/bluesky/store-multi.c index 5687de7..f6009ba 100644 --- a/bluesky/store-multi.c +++ b/bluesky/store-multi.c @@ -104,6 +104,12 @@ static void multistore_submit(gpointer store, BlueSkyStoreAsync *async) } } +static char *multistore_lookup_last(gpointer store, const char *prefix) +{ + BlueSkyStore *base = (BlueSkyStore *)store; + return bluesky_store_lookup_last(base, prefix); +} + static void multistore_cleanup(gpointer store, BlueSkyStoreAsync *async) { } @@ -113,6 +119,7 @@ static BlueSkyStoreImplementation store_impl = { .destroy = multistore_destroy, .submit = multistore_submit, .cleanup = multistore_cleanup, + .lookup_last = multistore_lookup_last, }; void bluesky_store_init_multi(void)