Commit 67f32df2 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

wbemdisp: Implement GetObjectText_().

parent c08ffc65
......@@ -1534,11 +1534,14 @@ static HRESULT WINAPI object_Clone_(
static HRESULT WINAPI object_GetObjectText_(
ISWbemObject *iface,
LONG iFlags,
BSTR *strObjectText )
LONG flags,
BSTR *text )
{
FIXME( "\n" );
return E_NOTIMPL;
struct object *object = impl_from_ISWbemObject( iface );
TRACE( "%p, %#x, %p\n", object, flags, text );
return IWbemClassObject_GetObjectText( object->object, flags, text );
}
static HRESULT WINAPI object_SpawnDerivedClass_(
......
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