mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
[SHELL32]
- Whitespace fix. - SHSetShellWindowEx really directly redirects to user32.SetShellWindowEx. svn path=/trunk/; revision=71523
This commit is contained in:
parent
1b9a4118a8
commit
4e9504f015
2 changed files with 4 additions and 5 deletions
|
@ -1325,15 +1325,14 @@ cleanup:
|
|||
*/
|
||||
LRESULT CDefView::OnSize(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL &bHandled)
|
||||
{
|
||||
WORD wWidth;
|
||||
WORD wHeight;
|
||||
WORD wWidth, wHeight;
|
||||
|
||||
wWidth = LOWORD(lParam);
|
||||
wWidth = LOWORD(lParam);
|
||||
wHeight = HIWORD(lParam);
|
||||
|
||||
TRACE("%p width=%u height=%u\n", this, wWidth, wHeight);
|
||||
|
||||
/*resize the ListView to fit our window*/
|
||||
/* Resize the ListView to fit our window */
|
||||
if (m_ListView)
|
||||
{
|
||||
::MoveWindow(m_ListView, 0, 0, wWidth, wHeight, TRUE);
|
||||
|
|
|
@ -239,7 +239,7 @@
|
|||
240 stdcall PathIsSlowA(str long)
|
||||
241 stdcall -noname SHGetUserDisplayName(wstr ptr)
|
||||
242 stdcall -noname SHGetProcessDword(long long)
|
||||
243 stdcall -noname SHSetShellWindowEx(ptr ptr) user32.SetShellWindowEx # FIXME: Inspect
|
||||
243 stdcall -noname SHSetShellWindowEx(ptr ptr) user32.SetShellWindowEx
|
||||
244 stdcall -noname SHSettingsChanged(ptr ptr)
|
||||
245 stdcall SHTestTokenMembership(ptr ptr)
|
||||
246 stub -noname SHInvokePrivilegedFunctionW
|
||||
|
|
Loading…
Reference in a new issue