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
4188874a
Commit
4188874a
authored
Sep 06, 2004
by
Robert Shearman
Committed by
Alexandre Julliard
Sep 06, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Add exports for missing ordinals 191-194.
- Stub for SHUpdateImageW.
parent
ece3e81e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
0 deletions
+25
-0
shell32.spec
dlls/shell32/shell32.spec
+4
-0
shellord.c
dlls/shell32/shellord.c
+21
-0
No files found.
dlls/shell32/shell32.spec
View file @
4188874a
...
...
@@ -182,6 +182,10 @@
188 stdcall ShellDDEInit(long)
189 stdcall ILCreateFromPathA(str)
190 stdcall ILCreateFromPathW(wstr)
191 stub SHUpdateImageA
192 stdcall SHUpdateImageW(wstr long long long)
193 stub SHHandleUpdateImage
194 stub SHCreatePropSheetExtArrayEx
195 stdcall SHFree(ptr)
196 stdcall SHAlloc(long)
197 stub SHGlobalDefect
...
...
dlls/shell32/shellord.c
View file @
4188874a
...
...
@@ -1524,3 +1524,24 @@ BOOL WINAPI SHFindFiles( LPCITEMIDLIST pidlFolder, LPCITEMIDLIST pidlSaveFile )
FIXME
(
"%p %p
\n
"
,
pidlFolder
,
pidlSaveFile
);
return
FALSE
;
}
/*************************************************************************
* SHUpdateImageW (SHELL32.192)
*
* Notifies the shell that an icon in the system image list has been changed.
*
* PARAMS
* pszHashItem [I] Path to file that contains the icon.
* iIndex [I] Zero-based index of the icon in the file.
* uFlags [I] Flags determining the icon attributes. See notes.
* iImageIndex [I] Index of the icon in the system image list.
*
* NOTES
* uFlags can be one or more of the following flags:
* GIL_NOTFILENAME - pszHashItem is not a file name.
* GIL_SIMULATEDOC - Create a document icon using the specified icon.
*/
void
WINAPI
SHUpdateImageW
(
LPCWSTR
pszHashItem
,
int
iIndex
,
UINT
uFlags
,
int
iImageIndex
)
{
FIXME
(
"%s, %d, 0x%x, %d
\n
"
,
debugstr_w
(
pszHashItem
),
iIndex
,
uFlags
,
iImageIndex
);
}
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