/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/launcher/Wox.Infrastructure/IShellLinkHelper.cs
17 строк
441 B
gokcekantarci
[PTRun][Program]Fix crashes getting images for .lnk files (#29237)
09 ноя 2023, 17:18
Не верифицирован
09 ноя 2023, 17:18
912d7ec
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. namespace Wox.Infrastructure { public interface IShellLinkHelper { string RetrieveTargetPath(string path); string Description { get; set; } string Arguments { get; set; } bool HasArguments { get; set; } } }