Skip to content

Commit d233e3b

Browse files
committed
Update
1 parent ca3c3a8 commit d233e3b

File tree

4 files changed

+34
-36
lines changed

4 files changed

+34
-36
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
// Copyright (c) 2024 Files Community
2+
// Licensed under the MIT License. See the LICENSE.
3+
4+
using System;
5+
using System.Runtime.InteropServices;
6+
using Windows.Win32.Foundation;
7+
8+
namespace Windows.Win32
9+
{
10+
namespace Graphics.Gdi
11+
{
12+
[UnmanagedFunctionPointer(CallingConvention.Winapi)]
13+
public unsafe delegate BOOL MONITORENUMPROC([In] HMONITOR param0, [In] HDC param1, [In][Out] RECT* param2, [In] LPARAM param3);
14+
}
15+
16+
namespace UI.WindowsAndMessaging
17+
{
18+
[UnmanagedFunctionPointer(CallingConvention.Winapi)]
19+
public delegate LRESULT WNDPROC(HWND hWnd, uint msg, WPARAM wParam, LPARAM lParam);
20+
}
21+
22+
namespace UI.Shell
23+
{
24+
public static partial class FOLDERID
25+
{
26+
public readonly static Guid FOLDERID_RecycleBinFolder = new(0xB7534046, 0x3ECB, 0x4C18, 0xBE, 0x4E, 0x64, 0xCD, 0x4C, 0xB7, 0xD6, 0xAC);
27+
}
28+
29+
public static partial class BHID
30+
{
31+
public readonly static Guid BHID_EnumItems = new(0x94f60519, 0x2850, 0x4924, 0xaa, 0x5a, 0xd1, 0x5e, 0x84, 0x86, 0x80, 0x39);
32+
}
33+
}
34+
}

src/Files.App.CsWin32/Windows.Win32.KNOWNFOLDERID.cs

-16
This file was deleted.

src/Files.App.CsWin32/Windows.Win32.MONITORENUMPROC.cs

-10
This file was deleted.

src/Files.App.CsWin32/Windows.Win32.WNDPROC.cs

-10
This file was deleted.

0 commit comments

Comments
 (0)