shell32: Add a stub implementation for SHLoadNonloadedIconOverlayIdentifiers.
This commit is contained in:
parent
92460b98d1
commit
3558cdb8d5
|
@ -361,7 +361,7 @@
|
||||||
@ stub SHInvokePrinterCommandW
|
@ stub SHInvokePrinterCommandW
|
||||||
@ stdcall SHIsFileAvailableOffline(wstr ptr)
|
@ stdcall SHIsFileAvailableOffline(wstr ptr)
|
||||||
@ stdcall SHLoadInProc(long)
|
@ stdcall SHLoadInProc(long)
|
||||||
@ stub SHLoadNonloadedIconOverlayIdentifiers
|
@ stdcall SHLoadNonloadedIconOverlayIdentifiers()
|
||||||
@ stub SHPathPrepareForWriteA
|
@ stub SHPathPrepareForWriteA
|
||||||
@ stub SHPathPrepareForWriteW
|
@ stub SHPathPrepareForWriteW
|
||||||
@ stdcall SHQueryRecycleBinA(str ptr)
|
@ stdcall SHQueryRecycleBinA(str ptr)
|
||||||
|
|
|
@ -1076,6 +1076,14 @@ void WINAPI FreeIconList( DWORD dw )
|
||||||
FIXME("%x: stub\n",dw);
|
FIXME("%x: stub\n",dw);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*************************************************************************
|
||||||
|
* SHLoadNonloadedIconOverlayIdentifiers (SHELL32.@)
|
||||||
|
*/
|
||||||
|
HRESULT SHLoadNonloadedIconOverlayIdentifiers( VOID )
|
||||||
|
{
|
||||||
|
FIXME("stub\n");
|
||||||
|
return S_OK;
|
||||||
|
}
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* DllGetVersion [SHELL32.@]
|
* DllGetVersion [SHELL32.@]
|
||||||
|
|
Loading…
Reference in New Issue