void store_get_price()

in WindowsStore/WindowsStore.cpp [82:89]


    void store_get_price(WindowsStorePtr storePtr, WindowsStoreCallback callback, void* userData)
    {
        if (storePtr)
        {
            WindowsStoreImpl* pImpl = (WindowsStoreImpl*)storePtr;
            pImpl->GetPrice(callback, userData);
        }
    }