Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
b84d56fb
Commit
b84d56fb
authored
Feb 03, 2020
by
Nikolay Sivov
Committed by
Alexandre Julliard
Feb 03, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi: Add header entries for SHIsLowMemoryMachine().
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
1d1aa186
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
18 deletions
+14
-18
ordinal.c
dlls/shlwapi/ordinal.c
+0
-18
shlwapi_main.c
dlls/shlwapi/shlwapi_main.c
+10
-0
shlwapi.h
include/shlwapi.h
+4
-0
No files found.
dlls/shlwapi/ordinal.c
View file @
b84d56fb
...
...
@@ -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.
...
...
dlls/shlwapi/shlwapi_main.c
View file @
b84d56fb
...
...
@@ -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
;
}
include/shlwapi.h
View file @
b84d56fb
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment