RegisterHotKey function user32

int RegisterHotKey(
  1. int hWnd,
  2. int id,
  3. int fsModifiers,
  4. int vk
)

Defines a system-wide hot key.

BOOL RegisterHotKey(
  HWND hWnd,
  int  id,
  UINT fsModifiers,
  UINT vk
);

Implementation

int RegisterHotKey(int hWnd, int id, int fsModifiers, int vk) =>
    _RegisterHotKey(hWnd, id, fsModifiers, vk);