返回提交历史
Added
HaloPixelToolBox/HaloPixelToolBox/Utilities/Helpers/Win32/MSLLHOOKSTRUCT.cs
+16
-0
Added
HaloPixelToolBox/HaloPixelToolBox/Utilities/Helpers/Win32/POINT.cs
+13
-0
Added
HaloPixelToolBox/HaloPixelToolBox/Utilities/Helpers/Win32/RECT.cs
+12
-0
XFEstudio/HaloPixelToolBox
完善部分内容
1eec1b6
代码差异
3 个文件
+41
-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
}
@@ -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
}
@@ -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
}