ole32: Add stub for OleGetIconOfFile.
Signed-off-by: Zhenbo Li <litimetal@gmail.com> Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
068fc3f2fe
commit
13c6d37766
|
@ -62,6 +62,15 @@ HGLOBAL WINAPI OleGetIconOfClass(REFCLSID rclsid, LPOLESTR lpszLabel, BOOL fUseT
|
|||
return NULL;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* OleGetIconOfFile [OLE32.@]
|
||||
*/
|
||||
HGLOBAL WINAPI OleGetIconOfFile(LPOLESTR path, BOOL use_file_as_label)
|
||||
{
|
||||
FIXME("(%s, %d), stub!\n", debugstr_w(path), use_file_as_label);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* OleRegEnumFormatEtc [OLE32.@]
|
||||
*/
|
||||
|
|
|
@ -207,7 +207,7 @@
|
|||
@ stdcall OleGetAutoConvert(ptr ptr)
|
||||
@ stdcall OleGetClipboard(ptr)
|
||||
@ stdcall OleGetIconOfClass(ptr ptr long)
|
||||
@ stub OleGetIconOfFile
|
||||
@ stdcall OleGetIconOfFile(wstr long)
|
||||
@ stdcall OleInitialize(ptr)
|
||||
@ stdcall OleInitializeWOW(long long)
|
||||
@ stdcall OleIsCurrentClipboard(ptr)
|
||||
|
|
Loading…
Reference in New Issue