CSharp___DllImport.Phone.KeyboardHook.GetKeyState C# (CSharp) Method

GetKeyState() public static method

Not sure if those are used in WP7
public static GetKeyState ( WM nVirtKey ) : short
nVirtKey WM
return short
            public static short GetKeyState(WM nVirtKey)
            {
                int k = (int)nVirtKey;
                return (short)DllImportCaller.lib.IntCall("coredll", "GetKeyState", k);
            }