■ GetKeyState API 함수를 선언하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
using System.Runtime.InteropServices; #region 키 상태 구하기 - GetKeyState(keyCode) /// <summary> /// 키 상태 구하기 /// </summary> /// <param name="keyCode">키 코드</param> /// <returns>키 상태</returns> [DllImport("user32")] private static extern short GetKeyState(int keyCode); #endregion private const int VK_CAPITAL = 0x14; private const int VK_NUMLOCK = 0x90; private const int VK_SCROLL = 0x91; |