Index: users.c =================================================================== --- users.c (Revision 48568) +++ users.c (Arbeitskopie) @@ -44,8 +44,8 @@ if (uLen1 != uLen2 || _tcscmp(szPassword1, szPassword2) != 0) { MessageBox(hwndDlg, - TEXT("The passwords you entered are not the same!"), - TEXT("ERROR"), + _T("The passwords you entered are not the same!"), + _T("ERROR"), MB_OK | MB_ICONERROR); return FALSE; } @@ -272,8 +272,8 @@ if (status != NERR_Success) { TCHAR szText[256]; - wsprintf(szText, TEXT("Error: %u"), status); - MessageBox(NULL, szText, TEXT("NetUserAdd"), MB_ICONERROR | MB_OK); + wsprintf(szText, _T("Error: %u"), status); + MessageBox(NULL, szText, _T("NetUserAdd"), MB_ICONERROR | MB_OK); return; } @@ -346,8 +346,8 @@ UNLEN); /* Display a warning message because the delete operation cannot be reverted */ - wsprintf(szText, TEXT("Do you really want to delete the user \"%s\"?"), szUserName); - if (MessageBox(NULL, szText, TEXT("User Accounts"), MB_ICONWARNING | MB_YESNO) == IDNO) + wsprintf(szText, _T("Do you really want to delete the user \"%s\"?"), szUserName); + if (MessageBox(NULL, szText, _T("User Accounts"), MB_ICONWARNING | MB_YESNO) == IDNO) return FALSE; /* Delete the user */ @@ -359,8 +359,8 @@ if (status != NERR_Success) { TCHAR szText[256]; - wsprintf(szText, TEXT("Error: %u"), status); - MessageBox(NULL, szText, TEXT("NetUserDel"), MB_ICONERROR | MB_OK); + wsprintf(szText, _T("Error: %u"), status); + MessageBox(NULL, szText, _T("NetUserDel"), MB_ICONERROR | MB_OK); return FALSE; } @@ -537,8 +537,8 @@ if (status != NERR_Success) { TCHAR szText[256]; - wsprintf(szText, TEXT("Error: %u"), status); - MessageBox(NULL, szText, TEXT("NetUserSetInfo"), MB_ICONERROR | MB_OK); + wsprintf(szText, _T("Error: %u"), status); + MessageBox(NULL, szText, _T("NetUserSetInfo"), MB_ICONERROR | MB_OK); return FALSE; }