mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
18 lines
760 B
C#
18 lines
760 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Remotely.Desktop.Linux.Native
|
|
{
|
|
public class LibXtst
|
|
{
|
|
[DllImport("libXtst")]
|
|
public static extern bool XTestQueryExtension(IntPtr display, out int event_base, out int error_base, out int major_version, out int minor_version);
|
|
[DllImport("libXtst")]
|
|
public static extern void XTestFakeKeyEvent(IntPtr display, uint keycode, bool is_press, ulong delay);
|
|
[DllImport("libXtst")]
|
|
public static extern void XTestFakeButtonEvent(IntPtr display, uint button, bool is_press, ulong delay);
|
|
[DllImport("libXtst")]
|
|
public static extern void XTestFakeMotionEvent(IntPtr display, int screen_number, int x, int y, ulong delay);
|
|
}
|
|
}
|