зеркало из https://github.com/microsoft/winsdkfb.git
Using TryGetItemAsync when Win10
This commit is contained in:
Родитель
eb8d93da52
Коммит
7fed1bcc96
|
@ -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^
|
||||
{
|
||||
|
|
Загрузка…
Ссылка в новой задаче