Commit 13c6d377 authored by Zhenbo Li's avatar Zhenbo Li Committed by Alexandre Julliard

ole32: Add stub for OleGetIconOfFile.

parent 068fc3f2
......@@ -63,6 +63,15 @@ HGLOBAL WINAPI OleGetIconOfClass(REFCLSID rclsid, LPOLESTR lpszLabel, BOOL fUseT
}
/***********************************************************************
* 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.@]
*/
HRESULT WINAPI DECLSPEC_HOTPATCH OleRegEnumFormatEtc (
......
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment