mirror of
https://github.com/reactos/reactos.git
synced 2025-06-10 20:34:59 +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)
|
LRESULT CDefView::OnSize(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL &bHandled)
|
||||||
{
|
{
|
||||||
WORD wWidth;
|
WORD wWidth, wHeight;
|
||||||
WORD wHeight;
|
|
||||||
|
|
||||||
wWidth = LOWORD(lParam);
|
wWidth = LOWORD(lParam);
|
||||||
wHeight = HIWORD(lParam);
|
wHeight = HIWORD(lParam);
|
||||||
|
|
||||||
TRACE("%p width=%u height=%u\n", this, wWidth, wHeight);
|
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)
|
if (m_ListView)
|
||||||
{
|
{
|
||||||
::MoveWindow(m_ListView, 0, 0, wWidth, wHeight, TRUE);
|
::MoveWindow(m_ListView, 0, 0, wWidth, wHeight, TRUE);
|
||||||
|
|
|
@ -239,7 +239,7 @@
|
||||||
240 stdcall PathIsSlowA(str long)
|
240 stdcall PathIsSlowA(str long)
|
||||||
241 stdcall -noname SHGetUserDisplayName(wstr ptr)
|
241 stdcall -noname SHGetUserDisplayName(wstr ptr)
|
||||||
242 stdcall -noname SHGetProcessDword(long long)
|
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)
|
244 stdcall -noname SHSettingsChanged(ptr ptr)
|
||||||
245 stdcall SHTestTokenMembership(ptr ptr)
|
245 stdcall SHTestTokenMembership(ptr ptr)
|
||||||
246 stub -noname SHInvokePrivilegedFunctionW
|
246 stub -noname SHInvokePrivilegedFunctionW
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue