1
0
Fork 0
mirror of https://github.com/rfc2822/GfxTablet synced 2025-10-03 17:49:17 +02:00
GfxTablet/GfxTabletWinDotnet/Win32Interop.cs
2018-11-24 14:33:09 +01:00

29 lines
526 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
namespace GfxTabletWinDotnet
{
internal static class Win32Interop
{
[StructLayout(LayoutKind.Sequential, Pack = 1)]
internal struct POINT
{
public Int32 x;
public Int32 y;
}
[StructLayout(LayoutKind.Sequential, Pack = 1)]
internal struct RECT
{
public Int32 left;
public Int32 top;
public Int32 right;
public Int32 bottom;
}
}
}