dhtmled.ocx: Implement IOleObject::GetMiscStatus function.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=50620
Signed-off-by: Vijay Kiran Kamuju <infyquest@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
(cherry picked from commit d2c2987bce
)
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
This commit is contained in:
parent
a4ac7faab9
commit
b403116243
|
@ -1,5 +1,5 @@
|
|||
MODULE = dhtmled.ocx
|
||||
IMPORTS = uuid
|
||||
IMPORTS = uuid ole32
|
||||
|
||||
EXTRADLLFLAGS = -mno-cygwin
|
||||
|
||||
|
|
|
@ -737,9 +737,9 @@ static HRESULT WINAPI OleObject_EnumAdvise(IOleObject *iface, IEnumSTATDATA **ad
|
|||
static HRESULT WINAPI OleObject_GetMiscStatus(IOleObject *iface, DWORD aspect, DWORD *status)
|
||||
{
|
||||
DHTMLEditImpl *This = impl_from_IOleObject(iface);
|
||||
FIXME("(%p)->(%u, %p) stub\n", This, aspect, status);
|
||||
*status = 0;
|
||||
return E_NOTIMPL;
|
||||
TRACE("(%p)->(%u, %p)\n", This, aspect, status);
|
||||
|
||||
return OleRegGetMiscStatus(&CLSID_DHTMLEdit, aspect, status);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI OleObject_SetColorScheme(IOleObject *iface, LOGPALETTE *palette)
|
||||
|
|
Loading…
Reference in New Issue