From 492eebcc0e281f46e5ba8b9074e8ed3c66587074 Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Sat, 15 Mar 2014 15:02:53 +0000 Subject: [PATCH] [EXPLORER_NEW] * Fix MSVC build. svn path=/branches/shell-experiments/; revision=62504 --- base/shell/explorer-new/explorer.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/base/shell/explorer-new/explorer.c b/base/shell/explorer-new/explorer.c index c91a2f6373e..4ee65b0996a 100644 --- a/base/shell/explorer-new/explorer.c +++ b/base/shell/explorer-new/explorer.c @@ -449,6 +449,8 @@ _tWinMain(IN HINSTANCE hInstance, HRESULT hr; LPSHELLFOLDER pDesktopFolder = NULL; LPITEMIDLIST pidlRoot = NULL; + typedef HRESULT(WINAPI *SH_OPEN_NEW_FRAME)(LPITEMIDLIST pidl, IUnknown *paramC, long param10, long param14); + SH_OPEN_NEW_FRAME SHOpenNewFrame; /* A shell is already loaded. Parse the command line arguments and unless we need to do something specific simply display @@ -526,9 +528,6 @@ _tWinMain(IN HINSTANCE hInstance, DbgPrint("Trying to open browser window... \n"); - typedef HRESULT(WINAPI *SH_OPEN_NEW_FRAME)(LPITEMIDLIST pidl, IUnknown *paramC, long param10, long param14); - SH_OPEN_NEW_FRAME SHOpenNewFrame; - hBrowseui = LoadLibraryW(L"browseui.dll"); if (!hBrowseui) {