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