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

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