Commit b84d56fb authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

shlwapi: Add header entries for SHIsLowMemoryMachine().

parent 1d1aa186
......@@ -3565,24 +3565,6 @@ HRESULT WINAPI SHGetInverseCMAP(LPDWORD dest, DWORD dwSize)
}
/*************************************************************************
* SHIsLowMemoryMachine [SHLWAPI.@]
*
* Determine if the current computer has low memory.
*
* PARAMS
* x [I] FIXME
*
* RETURNS
* TRUE if the users machine has 16 Megabytes of memory or less,
* FALSE otherwise.
*/
BOOL WINAPI SHIsLowMemoryMachine (DWORD x)
{
FIXME("(0x%08x) stub\n", x);
return FALSE;
}
/*************************************************************************
* GetMenuPosFromID [SHLWAPI.@]
*
* Return the position of a menu item from its Id.
......
......@@ -166,3 +166,13 @@ HRESULT WINAPI SHGetViewStatePropertyBag(PCIDLIST_ABSOLUTE pidl, PCWSTR bag_name
return E_NOTIMPL;
}
/*************************************************************************
* SHIsLowMemoryMachine [SHLWAPI.@]
*/
BOOL WINAPI SHIsLowMemoryMachine(DWORD type)
{
FIXME("%d stub\n", type);
return FALSE;
}
......@@ -1167,6 +1167,10 @@ UINT WINAPI WhichPlatform(void);
HRESULT WINAPI SHGetViewStatePropertyBag(PCIDLIST_ABSOLUTE pidl, PCWSTR bagname, DWORD flags, REFIID riid, void **ppv);
#define ILMM_IE4 0
BOOL WINAPI SHIsLowMemoryMachine(DWORD type);
#include <poppack.h>
#ifdef __cplusplus
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment