GetDlgItemText function user32
Retrieves the title or text associated with a control in a dialog box.
UINT GetDlgItemTextW(
HWND hDlg,
int nIDDlgItem,
LPWSTR lpString,
int cchMax
);
Implementation
int GetDlgItemText(
int hDlg,
int nIDDlgItem,
Pointer<Utf16> lpString,
int cchMax,
) => _GetDlgItemText(hDlg, nIDDlgItem, lpString, cchMax);