Nikolay Sivov : wbemdisp: Implement GetObjectText_().

Alexandre Julliard julliard at winehq.org
Wed Mar 3 15:47:28 CST 2021


Module: wine
Branch: master
Commit: 67f32df2ba7772f6379749eeb183e012682f92a1
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=67f32df2ba7772f6379749eeb183e012682f92a1

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Wed Mar  3 09:04:26 2021 +0300

wbemdisp: Implement GetObjectText_().

Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
Signed-off-by: Hans Leidekker <hans at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/wbemdisp/locator.c | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/dlls/wbemdisp/locator.c b/dlls/wbemdisp/locator.c
index 0ef73bdbd56..dcec47faa6e 100644
--- a/dlls/wbemdisp/locator.c
+++ b/dlls/wbemdisp/locator.c
@@ -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_(




More information about the wine-cvs mailing list