SetDlgItemInt function user32

int SetDlgItemInt(
  1. int hDlg,
  2. int nIDDlgItem,
  3. int uValue,
  4. int bSigned,
)

Sets the text of a control in a dialog box to the string representation of a specified integer value.

BOOL SetDlgItemInt(
  HWND hDlg,
  int  nIDDlgItem,
  UINT uValue,
  BOOL bSigned
);

Implementation

int SetDlgItemInt(int hDlg, int nIDDlgItem, int uValue, int bSigned) =>
    _SetDlgItemInt(hDlg, nIDDlgItem, uValue, bSigned);