This commit is contained in:
TheXamlGuy
2024-01-06 18:15:20 +00:00
parent 9fdb125c13
commit 66f65185c8
13 changed files with 883 additions and 33 deletions
@@ -0,0 +1,7 @@
namespace Hyperbar.Windows.Interop
{
public interface IVirtualKeyboard
{
void Send(int key, params int[] modifierKeys);
}
}