GetNextDlgTabItem function user32

int GetNextDlgTabItem(
  1. int hDlg,
  2. int hCtl,
  3. int bPrevious
)

Retrieves a handle to the first control that has the WS_TABSTOP style that precedes (or follows) the specified control.

HWND GetNextDlgTabItem(
  HWND hDlg,
  HWND hCtl,
  BOOL bPrevious
);

Implementation

int GetNextDlgTabItem(int hDlg, int hCtl, int bPrevious) =>
    _GetNextDlgTabItem(hDlg, hCtl, bPrevious);