Commit 9c954340 authored by Vijay Kiran Kamuju's avatar Vijay Kiran Kamuju Committed by Alexandre Julliard

ole2.dll16: Add stub OleIsCurrentClipboard function.

parent 9fe61171
......@@ -272,6 +272,15 @@ HRESULT WINAPI OleFlushClipboard16(void)
return OleFlushClipboard();
}
/***********************************************************************
* OleIsCurrentClipboard [OLE2.77]
*/
HRESULT WINAPI OleIsCurrentClipboard16(IDataObject* pDataObj)
{
FIXME("(%p): stub\n", pDataObj);
return S_OK;
}
#define GET_SEGPTR_METHOD_ADDR(ifacename,segptr,methodname) \
((SEGPTR)((const ifacename##Vtbl*)MapSL((SEGPTR)((ifacename*)MapSL(segptr))->lpVtbl))->methodname)
......
......@@ -72,7 +72,7 @@
74 stub READFMTUSERTYPESTG
75 stub WRITEFMTUSERTYPESTG
76 pascal -ret16 OleFlushClipboard() OleFlushClipboard16
77 stub OLEISCURRENTCLIPBOARD
77 pascal OleIsCurrentClipboard(ptr) OleIsCurrentClipboard16
78 stub OLETRANSLATEACCELERATOR
79 pascal OleDoAutoConvert(ptr ptr) OleDoAutoConvert16
80 stub OLEGETAUTOCONVERT
......
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