user32: Remove unneeded address-of operators from array names.
This commit is contained in:
parent
dd0a22420a
commit
afc95d4ac3
|
@ -776,7 +776,7 @@ UINT WINAPI PrivateExtractIconExW (
|
|||
cxsmicon = GetSystemMetrics(SM_CXSMICON);
|
||||
cysmicon = GetSystemMetrics(SM_CYSMICON);
|
||||
|
||||
ret = ICO_ExtractIconExW(lpwstrFile, (HICON*) &hIcon, nIndex, 2, cxicon | (cxsmicon<<16),
|
||||
ret = ICO_ExtractIconExW(lpwstrFile, (HICON*)hIcon, nIndex, 2, cxicon | (cxsmicon<<16),
|
||||
cyicon | (cysmicon<<16), NULL, LR_DEFAULTCOLOR);
|
||||
*phIconLarge = hIcon[0];
|
||||
*phIconSmall = hIcon[1];
|
||||
|
|
|
@ -1648,7 +1648,7 @@ BOOL WINAPI GetTitleBarInfo(HWND hwnd, PTITLEBARINFO tbi) {
|
|||
tbi->rcTitleBar.left += GetSystemMetrics(SM_CXSIZE);
|
||||
}
|
||||
|
||||
ZeroMemory(&tbi->rgstate, sizeof(tbi->rgstate));
|
||||
ZeroMemory(tbi->rgstate, sizeof(tbi->rgstate));
|
||||
/* Does the title bar always have STATE_SYSTEM_FOCUSABLE?
|
||||
* Under XP it seems to
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue