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
7a42aba9
Commit
7a42aba9
authored
Jun 25, 2008
by
Zac Brown
Committed by
Alexandre Julliard
Jun 27, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Add stub implementation for SHGetIconOverlayIndex[AW].
parent
1dcc70ac
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
2 deletions
+27
-2
iconcache.c
dlls/shell32/iconcache.c
+25
-0
shell32.spec
dlls/shell32/shell32.spec
+2
-2
No files found.
dlls/shell32/iconcache.c
View file @
7a42aba9
...
...
@@ -840,3 +840,28 @@ HRESULT WINAPI SHDefExtractIconA(LPCSTR pszIconFile, int iIndex, UINT uFlags,
HeapFree
(
GetProcessHeap
(),
0
,
lpwstrFile
);
return
ret
;
}
/****************************************************************************
* SHGetIconOverlayIndexA [SHELL32.@]
*
* Returns the index of the overlay icon in the system image list.
*/
INT
WINAPI
SHGetIconOverlayIndexA
(
LPCSTR
pszIconPath
,
INT
iIconIndex
)
{
FIXME
(
"%s, %d
\n
"
,
debugstr_a
(
pszIconPath
),
iIconIndex
);
return
-
1
;
}
/****************************************************************************
* SHGetIconOverlayIndexW [SHELL32.@]
*
* Returns the index of the overlay icon in the system image list.
*/
INT
WINAPI
SHGetIconOverlayIndexW
(
LPCWSTR
pszIconPath
,
INT
iIconIndex
)
{
FIXME
(
"%s, %d
\n
"
,
debugstr_w
(
pszIconPath
),
iIconIndex
);
return
-
1
;
}
dlls/shell32/shell32.spec
View file @
7a42aba9
...
...
@@ -348,8 +348,8 @@
@ stdcall SHGetFolderPathAndSubDirW(long long long long wstr ptr)
@ stdcall SHGetFolderPathW(long long long long ptr)
@ stub SHGetFreeDiskSpace
@ st
ub SHGetIconOverlayIndexA
@ st
ub SHGetIconOverlayIndexW
@ st
dcall SHGetIconOverlayIndexA(str long)
@ st
dcall SHGetIconOverlayIndexW(wstr long)
@ stdcall SHGetInstanceExplorer(long)
@ stdcall SHGetMalloc(ptr)
@ stdcall SHGetNewLinkInfo(str str ptr long long) SHGetNewLinkInfoA
...
...
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