mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 12:23:29 +00:00
[EXPLORER-NEW]
* Rename the new explorer to take the now-vacant folder name, to match the output filename. Change 2/2 svn path=/branches/shell-experiments/; revision=65477
This commit is contained in:
@@ -0,0 +1,184 @@
|
||||
/*
|
||||
* ReactOS Explorer
|
||||
*
|
||||
* Copyright 2014 Giannis Adamopoulos
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#include "precomp.h"
|
||||
|
||||
static HINSTANCE hRShell = NULL;
|
||||
|
||||
typedef HRESULT(WINAPI * PSTARTMENU_CONSTRUCTOR)(REFIID riid, void **ppv);
|
||||
|
||||
HRESULT WINAPI _CStartMenu_Constructor(REFIID riid, void **ppv)
|
||||
{
|
||||
if (!hRShell)
|
||||
{
|
||||
hRShell = LoadLibraryW(L"rshell.dll");
|
||||
}
|
||||
|
||||
if (hRShell)
|
||||
{
|
||||
PSTARTMENU_CONSTRUCTOR func = (PSTARTMENU_CONSTRUCTOR)GetProcAddress(hRShell, "CStartMenu_Constructor");
|
||||
if(func)
|
||||
{
|
||||
return func(riid, ppv);
|
||||
}
|
||||
}
|
||||
|
||||
return CoCreateInstance(CLSID_StartMenu,
|
||||
NULL,
|
||||
CLSCTX_INPROC_SERVER,
|
||||
riid,
|
||||
ppv);
|
||||
}
|
||||
|
||||
typedef HANDLE(WINAPI * PSHCREATEDESKTOP)(IShellDesktopTray *ShellDesk);
|
||||
|
||||
HANDLE WINAPI _SHCreateDesktop(IShellDesktopTray *ShellDesk)
|
||||
{
|
||||
HINSTANCE hFallback;
|
||||
|
||||
if (!hRShell)
|
||||
{
|
||||
hRShell = LoadLibraryW(L"rshell.dll");
|
||||
}
|
||||
|
||||
if (hRShell)
|
||||
{
|
||||
PSHCREATEDESKTOP func = (PSHCREATEDESKTOP)GetProcAddress(hRShell, "SHCreateDesktop");
|
||||
if (func)
|
||||
{
|
||||
return func(ShellDesk);
|
||||
}
|
||||
}
|
||||
|
||||
hFallback = GetModuleHandleW(L"shell32.dll");
|
||||
|
||||
if (hFallback)
|
||||
{
|
||||
PSHCREATEDESKTOP func = (PSHCREATEDESKTOP) GetProcAddress(hFallback, (LPCSTR) 200);
|
||||
if (func)
|
||||
{
|
||||
return func(ShellDesk);
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
typedef BOOL(WINAPI *PSHDESKTOPMESSAGELOOP)(HANDLE hDesktop);
|
||||
|
||||
BOOL WINAPI _SHDesktopMessageLoop(HANDLE hDesktop)
|
||||
{
|
||||
HINSTANCE hFallback;
|
||||
|
||||
if (!hRShell)
|
||||
{
|
||||
hRShell = LoadLibraryW(L"rshell.dll");
|
||||
}
|
||||
|
||||
if (hRShell)
|
||||
{
|
||||
PSHDESKTOPMESSAGELOOP func = (PSHDESKTOPMESSAGELOOP)GetProcAddress(hRShell, "SHDesktopMessageLoop");
|
||||
if (func)
|
||||
{
|
||||
return func(hDesktop);
|
||||
}
|
||||
}
|
||||
|
||||
hFallback = GetModuleHandleW(L"shell32.dll");
|
||||
|
||||
if (hFallback)
|
||||
{
|
||||
PSHDESKTOPMESSAGELOOP func = (PSHDESKTOPMESSAGELOOP) GetProcAddress(hFallback, (LPCSTR) 201);
|
||||
if (func)
|
||||
{
|
||||
return func(hDesktop);
|
||||
}
|
||||
}
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
typedef DWORD(WINAPI* PWINLIST_INIT)(void);
|
||||
|
||||
DWORD WINAPI _WinList_Init(void)
|
||||
{
|
||||
HINSTANCE hFallback;
|
||||
|
||||
if (!hRShell)
|
||||
{
|
||||
hRShell = LoadLibraryW(L"rshell.dll");
|
||||
}
|
||||
|
||||
if (hRShell)
|
||||
{
|
||||
PWINLIST_INIT func = (PWINLIST_INIT)GetProcAddress(hRShell, "WinList_Init");
|
||||
if (func)
|
||||
{
|
||||
return func();
|
||||
}
|
||||
}
|
||||
|
||||
hFallback = GetModuleHandleW(L"shdocvw.dll");
|
||||
|
||||
if (hFallback)
|
||||
{
|
||||
PWINLIST_INIT func = (PWINLIST_INIT) GetProcAddress(hFallback, (LPCSTR) 110);
|
||||
if (func)
|
||||
{
|
||||
return func();
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
typedef void (WINAPI *PSHELLDDEINIT)(BOOL bInit);
|
||||
|
||||
void WINAPI _ShellDDEInit(BOOL bInit)
|
||||
{
|
||||
HINSTANCE hFallback;
|
||||
|
||||
if (!hRShell)
|
||||
{
|
||||
hRShell = LoadLibraryW(L"rshell.dll");
|
||||
}
|
||||
|
||||
if (hRShell)
|
||||
{
|
||||
PSHELLDDEINIT func = (PSHELLDDEINIT)GetProcAddress(hRShell, "ShellDDEInit");
|
||||
if (func)
|
||||
{
|
||||
func(bInit);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
hFallback = GetModuleHandleW(L"shell32.dll");
|
||||
|
||||
if (hFallback)
|
||||
{
|
||||
PSHELLDDEINIT func = (PSHELLDDEINIT) GetProcAddress(hFallback, (LPCSTR) 188);
|
||||
if (func)
|
||||
{
|
||||
func(bInit);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user