Skip to content

Instantly share code, notes, and snippets.

@kusa-mochi
Last active June 6, 2020 12:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kusa-mochi/be796540783142e775204bbd0605860b to your computer and use it in GitHub Desktop.
Save kusa-mochi/be796540783142e775204bbd0605860b to your computer and use it in GitHub Desktop.
// デリゲート
private static readonly NativeMethods.LowLevelMouseKeyboardProc _mouseProc = MouseInputCallback;
private static readonly NativeMethods.LowLevelMouseKeyboardProc _keyboardProc = KeyboardInputCallback;
// メソッドを識別するID
private static IntPtr _mouseHookId = IntPtr.Zero;
private static IntPtr _keyboardHookId = IntPtr.Zero;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment