/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App.Storage/Windows/IWindowsFolder.cs
15 строк
376 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 IWindowsFolder : IWindowsStorable, IChildFolder { /// <summary> /// Gets or sets the cached <see cref="IContextMenu"/> for the ShellNew context menu. /// </summary> public IContextMenu? ShellNewMenu { get; set; } } }