Bump identifier typo inspection and fix remaining identifier names

This commit is contained in:
Joseph Madamba
2021-12-28 11:21:59 -08:00
parent f78adbea36
commit c22a07d9fc
5 changed files with 23 additions and 2 deletions

View File

@ -14,6 +14,8 @@ namespace osu.Desktop.Windows
private const int wh_keyboard_ll = 13;
private const int wm_keydown = 256;
// ReSharper disable once IdentifierTypo
private const int wm_syskeyup = 261;
//Resharper disable once NotAccessedField.Local
@ -69,6 +71,7 @@ namespace osu.Desktop.Windows
}
[DllImport(@"user32.dll", EntryPoint = @"SetWindowsHookExA")]
// ReSharper disable once IdentifierTypo
private static extern IntPtr setWindowsHookEx(int idHook, LowLevelKeyboardProcDelegate lpfn, IntPtr hMod, int dwThreadId);
[DllImport(@"user32.dll", EntryPoint = @"UnhookWindowsHookEx")]