/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v3.7
src/Files.App.CsWin32/Windows.Win32.Extras.cs
34 строки
991 B
0x5BFA
Code Quality: Introduced IStorageTrashBinService (#15773)
01 сен 2024, 17:50
Не верифицирован
01 сен 2024, 17:50
8d3f902
Код
Авторство
О чём код?
// Copyright (c) 2024 Files Community // Licensed under the MIT License. See the LICENSE. using System; using System.Runtime.InteropServices; using Windows.Win32.Foundation; namespace Windows.Win32 { namespace Graphics.Gdi { [UnmanagedFunctionPointer(CallingConvention.Winapi)] public unsafe delegate BOOL MONITORENUMPROC([In] HMONITOR param0, [In] HDC param1, [In][Out] RECT* param2, [In] LPARAM param3); } namespace UI.WindowsAndMessaging { [UnmanagedFunctionPointer(CallingConvention.Winapi)] public delegate LRESULT WNDPROC(HWND hWnd, uint msg, WPARAM wParam, LPARAM lParam); } namespace UI.Shell { public static partial class FOLDERID { public readonly static Guid FOLDERID_RecycleBinFolder = new(0xB7534046, 0x3ECB, 0x4C18, 0xBE, 0x4E, 0x64, 0xCD, 0x4C, 0xB7, 0xD6, 0xAC); } public static partial class BHID { public readonly static Guid BHID_EnumItems = new(0x94f60519, 0x2850, 0x4924, 0xaa, 0x5a, 0xd1, 0x5e, 0x84, 0x86, 0x80, 0x39); } } }