mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
- Add stub for SHGetIconOverlayIndexA/W
- Remove "-noname" attribute from ILAppendID function svn path=/trunk/; revision=39303
This commit is contained in:
@@ -843,3 +843,27 @@ 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;
|
||||
}
|
||||
|
||||
@@ -151,7 +151,7 @@
|
||||
151 stdcall SHLoadOLE(long)
|
||||
152 stdcall ILGetSize(ptr)
|
||||
153 stdcall ILGetNext(ptr)
|
||||
154 stdcall -noname ILAppendID(long long long) ILAppend
|
||||
154 stdcall ILAppendID(long long long) ILAppend
|
||||
155 stdcall ILFree(ptr)
|
||||
156 stdcall -noname ILGlobalFree(ptr)
|
||||
157 stdcall ILCreateFromPath(ptr) ILCreateFromPathAW
|
||||
@@ -304,8 +304,8 @@
|
||||
304 stdcall SHGetFolderPathAndSubDirA(long long long long str ptr)
|
||||
305 stdcall SHGetFolderPathAndSubDirW(long long long long wstr ptr)
|
||||
306 stdcall SHGetFolderPathW(long long long long ptr)
|
||||
307 stub SHGetIconOverlayIndexA # Needed for sync with Wine
|
||||
308 stub SHGetIconOverlayIndexW # Needed for sync with Wine
|
||||
307 stdcall SHGetIconOverlayIndexA(str long)
|
||||
308 stdcall SHGetIconOverlayIndexW(wstr long)
|
||||
309 stdcall SHGetInstanceExplorer(long)
|
||||
310 stdcall SHGetMalloc(ptr)
|
||||
311 stdcall SHGetNewLinkInfo(str str ptr long long) SHGetNewLinkInfoA
|
||||
|
||||
Reference in New Issue
Block a user