/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v4.2
src/Files.App.CsWin32/IDetectionAndSharing.cs
35 строк
696 B
yair100
Code Quality: Updated headers
01 июл 2026, 06:18
01 июл 2026, 06:18
c27305a
Код
Авторство
О чём код?
// Copyright (c) Files Community // SPDX-License-Identifier: MPL-2.0 using Files.Shared.Attributes; using System; using Windows.Win32.Foundation; namespace Windows.Win32.UI.Shell { public unsafe partial struct IDetectionAndSharing : IComIID { [GeneratedVTableFunction(Index = 3)] public partial HRESULT GetStatus(DTSH_TYPE type, DTSH_STATE* state, DTSH_ACTION* action); [GuidRVAGen.Guid("1FDA955C-61FF-11DA-978C-0008744FAAB7")] public static partial ref readonly Guid Guid { get; } } public enum DTSH_TYPE { DTSH_NETWORK_DISCOVERY = 0, DTSH_FILE_SHARING = 1, } public enum DTSH_STATE { DTSH_OFF = 0, DTSH_ON = 1, } public enum DTSH_ACTION { DTSH_NONE = 0, } }