[SHLWAPI] Move some functions to shlwapi_main.c

This moves WhichPlatform, SHIsLowMemoryMachine and SHGetViewStatePropertyBag to shlwapi_main.c, where they are in Wine-10.0
This commit is contained in:
Timo Kreuzer
2026-06-18 23:27:41 +00:00
parent 8bd4911054
commit 325b7adcd9
2 changed files with 82 additions and 122 deletions
-122
View File
@@ -2918,69 +2918,6 @@ BOOL WINAPI GUIDFromStringW(LPCWSTR idstr, CLSID *id)
return SUCCEEDED(CLSIDFromString((LPCOLESTR)idstr, id));
}
/*************************************************************************
* @ [SHLWAPI.276]
*
* Determine if the browser is integrated into the shell, and set a registry
* key accordingly.
*
* PARAMS
* None.
*
* RETURNS
* 1, If the browser is not integrated.
* 2, If the browser is integrated.
*
* NOTES
* The key "HKLM\Software\Microsoft\Internet Explorer\IntegratedBrowser" is
* either set to TRUE, or removed depending on whether the browser is deemed
* to be integrated.
*/
UINT WINAPI WhichPlatform(void)
{
static const char szIntegratedBrowser[] = "IntegratedBrowser";
static DWORD state = PLATFORM_UNKNOWN;
DWORD ret, data, size;
HMODULE hshell32;
HKEY hKey;
if (state)
return state;
/* If shell32 exports DllGetVersion(), the browser is integrated */
state = PLATFORM_BROWSERONLY;
hshell32 = LoadLibraryA("shell32.dll");
if (hshell32)
{
FARPROC pDllGetVersion;
pDllGetVersion = GetProcAddress(hshell32, "DllGetVersion");
state = pDllGetVersion ? PLATFORM_INTEGRATED : PLATFORM_BROWSERONLY;
FreeLibrary(hshell32);
}
/* Set or delete the key accordingly */
ret = RegOpenKeyExA(HKEY_LOCAL_MACHINE, "Software\\Microsoft\\Internet Explorer", 0, KEY_ALL_ACCESS, &hKey);
if (!ret)
{
size = sizeof(data);
ret = RegQueryValueExA(hKey, szIntegratedBrowser, 0, 0, (BYTE *)&data, &size);
if (!ret && state == PLATFORM_BROWSERONLY)
{
/* Value exists but browser is not integrated */
RegDeleteValueA(hKey, szIntegratedBrowser);
}
else if (ret && state == PLATFORM_INTEGRATED)
{
/* Browser is integrated but value does not exist */
data = TRUE;
RegSetValueExA(hKey, szIntegratedBrowser, 0, REG_DWORD, (BYTE *)&data, sizeof(data));
}
RegCloseKey(hKey);
}
return state;
}
/*************************************************************************
* @ [SHLWAPI.278]
*
@@ -4345,36 +4282,6 @@ HRESULT WINAPI SHGetInverseCMAP(LPDWORD dest, DWORD dwSize)
return 0;
}
/*************************************************************************
* SHIsLowMemoryMachine [SHLWAPI.@]
*
* Determine if the current computer has low memory.
*
* PARAMS
* dwType [I] Zero.
*
* RETURNS
* TRUE if the users machine has 16 Megabytes of memory or less,
* FALSE otherwise.
*/
BOOL WINAPI SHIsLowMemoryMachine(DWORD dwType)
{
#ifdef __REACTOS__
MEMORYSTATUS status;
static int is_low = -1;
TRACE("(0x%08x)\n", dwType);
if (dwType == 0 && is_low == -1)
{
GlobalMemoryStatus(&status);
is_low = (status.dwTotalPhys <= 0x1000000);
}
return is_low;
#else
FIXME("(0x%08x) stub\n", dwType);
return FALSE;
#endif
}
/*************************************************************************
* GetMenuPosFromID [SHLWAPI.@]
*
@@ -5115,35 +5022,6 @@ HRESULT WINAPI SHCreatePropertyBagOnRegKey (HKEY hKey, LPCWSTR subkey,
}
#endif
#ifndef __REACTOS__ /* See propbag.cpp */
/***********************************************************************
* SHGetViewStatePropertyBag [SHLWAPI.515]
*
* Retrieves a property bag in which the view state information of a folder
* can be stored.
*
* PARAMS
* pidl [I] PIDL of the folder requested
* bag_name [I] Name of the property bag requested
* flags [I] Optional flags
* riid [I] IID of requested property bag interface
* ppv [O] Address to receive pointer to the new interface
*
* RETURNS
* success: S_OK
* failure: error code
*
*/
HRESULT WINAPI SHGetViewStatePropertyBag(LPCITEMIDLIST pidl, LPWSTR bag_name,
DWORD flags, REFIID riid, void **ppv)
{
FIXME("%p %s %d %s %p STUB\n", pidl, debugstr_w(bag_name), flags,
debugstr_guid(riid), ppv);
return E_NOTIMPL;
}
#endif
/***********************************************************************
* SHFormatDateTimeW [SHLWAPI.354]
*
+82
View File
@@ -135,3 +135,85 @@ HRESULT WINAPI DllGetVersion (DLLVERSIONINFO *pdvi)
WARN("pdvi->cbSize = %ld, unhandled\n", pdvi2->info1.cbSize);
return E_INVALIDARG;
}
/*************************************************************************
* WhichPlatform() [SHLWAPI.276]
*/
UINT WINAPI WhichPlatform(void)
{
static const char szIntegratedBrowser[] = "IntegratedBrowser";
static DWORD state = PLATFORM_UNKNOWN;
DWORD ret, data, size;
HMODULE hshell32;
HKEY hKey;
if (state)
return state;
/* If shell32 exports DllGetVersion(), the browser is integrated */
state = PLATFORM_BROWSERONLY;
hshell32 = LoadLibraryA("shell32.dll");
if (hshell32)
{
FARPROC pDllGetVersion;
pDllGetVersion = GetProcAddress(hshell32, "DllGetVersion");
state = pDllGetVersion ? PLATFORM_INTEGRATED : PLATFORM_BROWSERONLY;
FreeLibrary(hshell32);
}
/* Set or delete the key accordingly */
ret = RegOpenKeyExA(HKEY_LOCAL_MACHINE, "Software\\Microsoft\\Internet Explorer", 0, KEY_ALL_ACCESS, &hKey);
if (!ret)
{
size = sizeof(data);
ret = RegQueryValueExA(hKey, szIntegratedBrowser, 0, 0, (BYTE *)&data, &size);
if (!ret && state == PLATFORM_BROWSERONLY)
{
/* Value exists but browser is not integrated */
RegDeleteValueA(hKey, szIntegratedBrowser);
}
else if (ret && state == PLATFORM_INTEGRATED)
{
/* Browser is integrated but value does not exist */
data = TRUE;
RegSetValueExA(hKey, szIntegratedBrowser, 0, REG_DWORD, (BYTE *)&data, sizeof(data));
}
RegCloseKey(hKey);
}
return state;
}
#ifndef __REACTOS__ /* See propbag.cpp */
/***********************************************************************
* SHGetViewStatePropertyBag [SHLWAPI.515]
*/
HRESULT WINAPI SHGetViewStatePropertyBag(PCIDLIST_ABSOLUTE pidl, PCWSTR bag_name, DWORD flags, REFIID riid, void **ppv)
{
FIXME("%p, %s, %#lx, %s, %p stub.\n", pidl, debugstr_w(bag_name), flags, debugstr_guid(riid), ppv);
return E_NOTIMPL;
}
#endif
/*************************************************************************
* SHIsLowMemoryMachine [SHLWAPI.@]
*/
BOOL WINAPI SHIsLowMemoryMachine(DWORD type)
{
#ifdef __REACTOS__
MEMORYSTATUS status;
static int is_low = -1;
TRACE("(0x%08x)\n", type);
if (type == 0 && is_low == -1)
{
GlobalMemoryStatus(&status);
is_low = (status.dwTotalPhys <= 0x1000000);
}
return is_low;
#else
FIXME("%ld stub\n", type);
return FALSE;
#endif
}