/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v3.8
src/Files.App.CsWin32/Windows.Win32.Extras.cs
20 строк
590 B
0x5BFA
Code Quality: Introduced IWindowsRecentItemsService (#16150)
13 ноя 2024, 17:47
Не верифицирован
13 ноя 2024, 17:47
8fac864
Код
Авторство
О чём код?
// Copyright (c) 2024 Files Community // Licensed under the MIT License. See the LICENSE. 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); } }