UnregisterHotKey

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

Microsoft documentation: Link

Last updated