UnregisterHotKey

[DllImport("user32.dll", SetLastError = true)]
public static extern bool UnregisterHotKey(
   IntPtr hWnd,
   int id
);

Microsoft documentation: Linkarrow-up-right

Last updated