XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

HaloPixelToolBox

【WinUI3】基于USB HID通讯的花再音响工具箱

公开
关注 0 Fork 0 Star 0
返回提交历史

XFEstudio/HaloPixelToolBox

完善部分内容

1eec1b6
XFE工作室室长 <mail@xfegzs.com>
提交于

代码差异

3 个文件 +41 -0
Added HaloPixelToolBox/HaloPixelToolBox/Utilities/Helpers/Win32/MSLLHOOKSTRUCT.cs +16 -0
@@ -0,0 +1,16 @@
1 using System.Runtime.InteropServices;
2
3 namespace HaloPixelToolBox.Utilities.Helpers;
4
5 public static partial class Win32Helper
6 {
7 [StructLayout(LayoutKind.Sequential)]
8 public struct MSLLHOOKSTRUCT
9 {
10 public POINT pt;
11 public uint mouseData;
12 public uint flags;
13 public uint time;
14 public IntPtr dwExtraInfo;
15 }
16 }
Added HaloPixelToolBox/HaloPixelToolBox/Utilities/Helpers/Win32/POINT.cs +13 -0
@@ -0,0 +1,13 @@
1 using System.Runtime.InteropServices;
2
3 namespace HaloPixelToolBox.Utilities.Helpers.Win32;
4
5 public static partial class Win32Helper
6 {
7 [StructLayout(LayoutKind.Sequential)]
8 public struct POINT
9 {
10 public int x;
11 public int y;
12 }
13 }
Added HaloPixelToolBox/HaloPixelToolBox/Utilities/Helpers/Win32/RECT.cs +12 -0
@@ -0,0 +1,12 @@
1 using System.Runtime.InteropServices;
2
3 namespace HaloPixelToolBox.Utilities.Helpers.Win32;
4
5 public static partial class Win32Helper
6 {
7 [StructLayout(LayoutKind.Sequential)]
8 public struct RECT
9 {
10 public int Left, Top, Right, Bottom;
11 }
12 }