/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App.Storage/Windows/IWindowsStorable.cs
14 строк
312 B
0x5bfa
Code Quality: Replace raw ABI pointers with ComObject instances for safer disposal (#18684)
16 июл 2026, 18:32
Не верифицирован
16 июл 2026, 18:32
93dfb04
Код
Авторство
О чём код?
// Copyright (c) Files Community // SPDX-License-Identifier: MPL-2.0 using Windows.Win32.UI.Shell; namespace Files.App.Storage { public interface IWindowsStorable : IStorableChild, IEquatable<IWindowsStorable>, IDisposable { IShellItem ThisPtr { get; set; } IContextMenu? ContextMenu { get; set; } } }