Module: wine Branch: master Commit: 3558cdb8d5aa948248a322b35654d9683f74c71b URL: http://source.winehq.org/git/wine.git/?a=commit;h=3558cdb8d5aa948248a322b356...
Author: Hans Leidekker hans@it.vu.nl Date: Mon Dec 11 13:57:51 2006 +0100
shell32: Add a stub implementation for SHLoadNonloadedIconOverlayIdentifiers.
---
dlls/shell32/shell32.spec | 2 +- dlls/shell32/shell32_main.c | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletions(-)
diff --git a/dlls/shell32/shell32.spec b/dlls/shell32/shell32.spec index 562db74..c61d996 100644 --- a/dlls/shell32/shell32.spec +++ b/dlls/shell32/shell32.spec @@ -361,7 +361,7 @@ @ stub SHInvokePrinterCommandW @ stdcall SHIsFileAvailableOffline(wstr ptr) @ stdcall SHLoadInProc(long) -@ stub SHLoadNonloadedIconOverlayIdentifiers +@ stdcall SHLoadNonloadedIconOverlayIdentifiers() @ stub SHPathPrepareForWriteA @ stub SHPathPrepareForWriteW @ stdcall SHQueryRecycleBinA(str ptr) diff --git a/dlls/shell32/shell32_main.c b/dlls/shell32/shell32_main.c index 1d572c6..797f98e 100644 --- a/dlls/shell32/shell32_main.c +++ b/dlls/shell32/shell32_main.c @@ -1076,6 +1076,14 @@ void WINAPI FreeIconList( DWORD dw ) FIXME("%x: stub\n",dw); }
+/************************************************************************* + * SHLoadNonloadedIconOverlayIdentifiers (SHELL32.@) + */ +HRESULT SHLoadNonloadedIconOverlayIdentifiers( VOID ) +{ + FIXME("stub\n"); + return S_OK; +}
/*********************************************************************** * DllGetVersion [SHELL32.@]