credui: Use the ARRAY_SIZE() macro.

Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2018-07-09 20:59:18 +02:00 committed by Alexandre Julliard
parent 2f4f1399d1
commit 973ac43d65
1 changed files with 10 additions and 10 deletions

View File

@ -206,7 +206,7 @@ static void CredDialogCreateBalloonTip(HWND hwndDlg, struct cred_dialog_params *
SetWindowPos(params->hwndBalloonTip, HWND_TOPMOST, 0, 0, 0, 0, SetWindowPos(params->hwndBalloonTip, HWND_TOPMOST, 0, 0, 0, 0,
SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE); SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
if (!LoadStringW(hinstCredUI, IDS_INCORRECTPASSWORD, wszText, sizeof(wszText)/sizeof(wszText[0]))) if (!LoadStringW(hinstCredUI, IDS_INCORRECTPASSWORD, wszText, ARRAY_SIZE(wszText)))
{ {
ERR("failed to load IDS_INCORRECTPASSWORD\n"); ERR("failed to load IDS_INCORRECTPASSWORD\n");
return; return;
@ -223,7 +223,7 @@ static void CredDialogCreateBalloonTip(HWND hwndDlg, struct cred_dialog_params *
toolinfo.lpReserved = NULL; toolinfo.lpReserved = NULL;
SendMessageW(params->hwndBalloonTip, TTM_ADDTOOLW, 0, (LPARAM)&toolinfo); SendMessageW(params->hwndBalloonTip, TTM_ADDTOOLW, 0, (LPARAM)&toolinfo);
if (!LoadStringW(hinstCredUI, IDS_CAPSLOCKON, wszText, sizeof(wszText)/sizeof(wszText[0]))) if (!LoadStringW(hinstCredUI, IDS_CAPSLOCKON, wszText, ARRAY_SIZE(wszText)))
{ {
ERR("failed to load IDS_CAPSLOCKON\n"); ERR("failed to load IDS_CAPSLOCKON\n");
return; return;
@ -251,7 +251,7 @@ static void CredDialogShowIncorrectPasswordBalloon(HWND hwndDlg, struct cred_dia
if (params->fBalloonTipActive) if (params->fBalloonTipActive)
return; return;
if (!LoadStringW(hinstCredUI, IDS_INCORRECTPASSWORDTITLE, wszTitle, sizeof(wszTitle)/sizeof(wszTitle[0]))) if (!LoadStringW(hinstCredUI, IDS_INCORRECTPASSWORDTITLE, wszTitle, ARRAY_SIZE(wszTitle)))
{ {
ERR("failed to load IDS_INCORRECTPASSWORDTITLE\n"); ERR("failed to load IDS_INCORRECTPASSWORDTITLE\n");
return; return;
@ -289,7 +289,7 @@ static void CredDialogShowCapsLockBalloon(HWND hwndDlg, struct cred_dialog_param
if (params->fBalloonTipActive) if (params->fBalloonTipActive)
return; return;
if (!LoadStringW(hinstCredUI, IDS_CAPSLOCKONTITLE, wszTitle, sizeof(wszTitle)/sizeof(wszTitle[0]))) if (!LoadStringW(hinstCredUI, IDS_CAPSLOCKONTITLE, wszTitle, ARRAY_SIZE(wszTitle)))
{ {
ERR("failed to load IDS_IDSCAPSLOCKONTITLE\n"); ERR("failed to load IDS_IDSCAPSLOCKONTITLE\n");
return; return;
@ -383,8 +383,8 @@ static BOOL CredDialogInit(HWND hwndDlg, struct cred_dialog_params *params)
{ {
WCHAR format[256]; WCHAR format[256];
WCHAR message[256]; WCHAR message[256];
LoadStringW(hinstCredUI, IDS_MESSAGEFORMAT, format, sizeof(format)/sizeof(format[0])); LoadStringW(hinstCredUI, IDS_MESSAGEFORMAT, format, ARRAY_SIZE(format));
snprintfW(message, sizeof(message)/sizeof(message[0]), format, params->pszTargetName); snprintfW(message, ARRAY_SIZE(message), format, params->pszTargetName);
SetDlgItemTextW(hwndDlg, IDC_MESSAGE, message); SetDlgItemTextW(hwndDlg, IDC_MESSAGE, message);
} }
SetWindowTextW(hwndUsername, params->pszUsername); SetWindowTextW(hwndUsername, params->pszUsername);
@ -408,8 +408,8 @@ static BOOL CredDialogInit(HWND hwndDlg, struct cred_dialog_params *params)
{ {
WCHAR format[256]; WCHAR format[256];
WCHAR title[256]; WCHAR title[256];
LoadStringW(hinstCredUI, IDS_TITLEFORMAT, format, sizeof(format)/sizeof(format[0])); LoadStringW(hinstCredUI, IDS_TITLEFORMAT, format, ARRAY_SIZE(format));
snprintfW(title, sizeof(title)/sizeof(title[0]), format, params->pszTargetName); snprintfW(title, ARRAY_SIZE(title), format, params->pszTargetName);
SetWindowTextW(hwndDlg, title); SetWindowTextW(hwndDlg, title);
} }
@ -867,8 +867,8 @@ ULONG SEC_ENTRY SspiPromptForCredentialsW( PCWSTR target, void *info,
static const WCHAR negotiateW[] = {'N','e','g','o','t','i','a','t','e',0}; static const WCHAR negotiateW[] = {'N','e','g','o','t','i','a','t','e',0};
WCHAR username[CREDUI_MAX_USERNAME_LENGTH + 1] = {0}; WCHAR username[CREDUI_MAX_USERNAME_LENGTH + 1] = {0};
WCHAR password[CREDUI_MAX_PASSWORD_LENGTH + 1] = {0}; WCHAR password[CREDUI_MAX_PASSWORD_LENGTH + 1] = {0};
DWORD len_username = sizeof(username) / sizeof(username[0]); DWORD len_username = ARRAY_SIZE(username);
DWORD len_password = sizeof(password) / sizeof(password[0]); DWORD len_password = ARRAY_SIZE(password);
DWORD ret, flags; DWORD ret, flags;
CREDUI_INFOW *cred_info = info; CREDUI_INFOW *cred_info = info;
SEC_WINNT_AUTH_IDENTITY_W *id = input_id; SEC_WINNT_AUTH_IDENTITY_W *id = input_id;