Remotely/Remotely_ScreenCast.Core/Input/IKeyboardMouseInput.cs
2021-07-29 07:53:48 -07:00

21 lines
657 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Remotely_ScreenCast.Core.Input
{
public interface IKeyboardMouseInput
{
void SendKeyDown(string key);
void SendKeyUp(string key);
uint SendMouseMove(double percentX, double percentY);
uint SendLeftMouseDown(double percentX, double percentY);
uint SendLeftMouseUp(double percentX, double percentY);
uint SendRightMouseDown(double percentX, double percentY);
uint SendRightMouseUp(double percentX, double percentY);
uint SendMouseWheel(int deltaY);
}
}