mirror of
https://github.com/rfc2822/GfxTablet
synced 2025-10-03 17:49:17 +02:00
17 lines
391 B
C#
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);
|
|
|
|
|
|
}
|
|
}
|