Skip to content
Snippets Groups Projects
Commit b84d56fb authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard
Browse files

shlwapi: Add header entries for SHIsLowMemoryMachine().

parent 1d1aa186
No related branches found
No related tags found
No related merge requests found
......@@ -3564,24 +3564,6 @@ HRESULT WINAPI SHGetInverseCMAP(LPDWORD dest, DWORD dwSize)
return 0;
}
/*************************************************************************
* 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.@]
*
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment