mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
slash fir linux compatibiliy
svn path=/trunk/; revision=5502
This commit is contained in:
parent
71e03db3fe
commit
da4d3ce2b0
2 changed files with 29 additions and 1 deletions
|
@ -119,6 +119,34 @@ LRESULT DesktopWindow::WndProc(UINT nmsg, WPARAM wparam, LPARAM lparam)
|
||||||
if (SUCCEEDED(hr)) {
|
if (SUCCEEDED(hr)) {
|
||||||
_pShellView->UIActivate(SVUIA_ACTIVATE_FOCUS);
|
_pShellView->UIActivate(SVUIA_ACTIVATE_FOCUS);
|
||||||
|
|
||||||
|
/*
|
||||||
|
IShellView2* pShellView2;
|
||||||
|
|
||||||
|
hr = _pShellView->QueryInterface(IID_IShellView2, (void**)&pShellView2);
|
||||||
|
|
||||||
|
SV2CVW2_PARAMS params;
|
||||||
|
params.cbSize = sizeof(SV2CVW2_PARAMS);
|
||||||
|
params.psvPrev = _pShellView;
|
||||||
|
params.pfs = &fs;
|
||||||
|
params.psbOwner = this;
|
||||||
|
params.prcView = ▭
|
||||||
|
params.pvid = params.pvid;//@@
|
||||||
|
|
||||||
|
hr = pShellView2->CreateViewWindow2(¶ms);
|
||||||
|
params.pvid;
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
IFolderView* pFolderView;
|
||||||
|
|
||||||
|
hr = _pShellView->QueryInterface(IID_IFolderView, (void**)&pFolderView);
|
||||||
|
|
||||||
|
if (SUCCEEDED(hr)) {
|
||||||
|
hr = pFolderView->GetAutoArrange();
|
||||||
|
hr = pFolderView->SetCurrentViewMode(FVM_DETAILS);
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
HWND hwndFolderView = ::GetNextWindow(hWndView, GW_CHILD);
|
HWND hwndFolderView = ::GetNextWindow(hWndView, GW_CHILD);
|
||||||
|
|
||||||
ShowWindow(hwndFolderView, SW_SHOW);
|
ShowWindow(hwndFolderView, SW_SHOW);
|
||||||
|
|
|
@ -90,7 +90,7 @@ END
|
||||||
|
|
||||||
// Icon with lowest ID value placed first to ensure application icon
|
// Icon with lowest ID value placed first to ensure application icon
|
||||||
// remains consistent on all systems.
|
// remains consistent on all systems.
|
||||||
IDI_EXPLORER ICON DISCARDABLE "res\\explorer.ico"
|
IDI_EXPLORER ICON DISCARDABLE "res/explorer.ico"
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in a new issue