1
0
Fork 0
mirror of https://github.com/rfc2822/GfxTablet synced 2025-10-03 09:39:16 +02:00
This commit is contained in:
wech71 2018-11-24 14:29:13 +01:00
parent cc4ad72661
commit 82d25349d7
9 changed files with 835 additions and 460 deletions

View file

@ -0,0 +1,17 @@
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 Win32_MouseSimulator_Interop
{
[DllImport("user32.dll", SetLastError = true)]
internal static extern bool SendInput(Int32 maxCount, enInitTouchInjectionModes dwMode);
}
}