8 lines
No EOL
182 B
C#
8 lines
No EOL
182 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Domain {
|
|
public static class Win32API {
|
|
[DllImport("User32.dll")]
|
|
public static extern short GetAsyncKeyState(int vKey);
|
|
}
|
|
} |