Using TryGetItemAsync when Win10

This commit is contained in:
Johan Lindfors 2017-02-15 11:46:22 +01:00
Родитель eb8d93da52
Коммит 7fed1bcc96
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -231,7 +231,11 @@ IAsyncOperation<IStorageItem^>^ FBSession::MyTryGetItemAsync(
{
return create_task([=]() -> task<IStorageItem^>
{
#if defined(_WIN32_WINNT_WIN10)
return create_task(folder->TryGetItemAsync(itemName));
#else
return create_task(folder->GetItemAsync(itemName));
#endif
})
.then([=](task<IStorageItem^> folderTask) -> IStorageItem^
{