Michael Stefaniuc : amstream: Avoid using the LPUNKNOWN COM iface type.

Alexandre Julliard julliard at winehq.org
Mon Jul 18 09:22:34 CDT 2016


Module: wine
Branch: master
Commit: 8185c9f0245b9615766143c8c437a29c227a1b92
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=8185c9f0245b9615766143c8c437a29c227a1b92

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Mon Jul 18 11:20:57 2016 +0200

amstream: Avoid using the LPUNKNOWN COM iface type.

Signed-off-by: Michael Stefaniuc <mstefani at redhat.de>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/amstream/main.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/amstream/main.c b/dlls/amstream/main.c
index 1149584..2cadf9c 100644
--- a/dlls/amstream/main.c
+++ b/dlls/amstream/main.c
@@ -117,8 +117,8 @@ static HRESULT WINAPI AMCF_CreateInstance(IClassFactory *iface, IUnknown *pOuter
 {
     IClassFactoryImpl *This = impl_from_IClassFactory(iface);
     HRESULT hres;
-    LPUNKNOWN punk;
-    
+    IUnknown *punk;
+
     TRACE("(%p)->(%p,%s,%p)\n",This,pOuter,debugstr_guid(riid),ppobj);
 
     *ppobj = NULL;




More information about the wine-cvs mailing list