shlwapi: Add header entries for SHIsLowMemoryMachine().
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
1d1aa18654
commit
b84d56fb04
|
@ -3564,24 +3564,6 @@ HRESULT WINAPI SHGetInverseCMAP(LPDWORD dest, DWORD dwSize)
|
||||||
return 0;
|
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.@]
|
* GetMenuPosFromID [SHLWAPI.@]
|
||||||
*
|
*
|
||||||
|
|
|
@ -166,3 +166,13 @@ HRESULT WINAPI SHGetViewStatePropertyBag(PCIDLIST_ABSOLUTE pidl, PCWSTR bag_name
|
||||||
|
|
||||||
return E_NOTIMPL;
|
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);
|
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>
|
#include <poppack.h>
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
Loading…
Reference in New Issue