Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. virtual /* [propget] */ HRESULT STDMETHODCALLTYPE get_Skus(
  2. /* [out][retval] */ __RPC__deref_out_opt IVectorView<ABI::Windows::Services::Store::StoreSku*> **value) = 0;
  3.  
  4. #include <Windows.Services.Store.h>
  5. #include <wrl.h>
  6.  
  7. using namespace ABI::Windows::Services::Store;
  8. using namespace ABI::Windows::Foundation::Collections;
  9.  
  10. IVectorView<StoreSku*> pStrSkus;
  11.  
  12. //IStoreProduct* pStorePrdct = ...;
  13. if (SUCCEEDED(pStorePrdct->get_Skus(&pStrSkus)))
  14. {
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement