David Hedberg : include: Fix INameSpaceTreeControlEvents interface declaration.

Alexandre Julliard julliard at winehq.org
Thu Aug 26 11:42:06 CDT 2010


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

Author: David Hedberg <david.hedberg at gmail.com>
Date:   Thu Aug 26 13:58:18 2010 +0200

include: Fix INameSpaceTreeControlEvents interface declaration.

---

 dlls/explorerframe/tests/nstc.c |    4 +---
 include/shobjidl.idl            |    4 +---
 2 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/dlls/explorerframe/tests/nstc.c b/dlls/explorerframe/tests/nstc.c
index d5dd5cd..c329311 100644
--- a/dlls/explorerframe/tests/nstc.c
+++ b/dlls/explorerframe/tests/nstc.c
@@ -277,9 +277,7 @@ static HRESULT WINAPI NSTCEvents_fnOnAfterContextMenu(
 
 static HRESULT WINAPI NSTCEvents_fnOnBeforeStateImageChange(
     INameSpaceTreeControlEvents* iface,
-    IShellItem *psi,
-    int *piDefaultIcon,
-    int *piOpenIcon)
+    IShellItem *psi)
 {
     ok(psi != NULL, "NULL IShellItem\n");
     NSTCE_IMPL(iface)->count[OnBeforeStateImageChange]++;
diff --git a/include/shobjidl.idl b/include/shobjidl.idl
index 82d8aaf..7e2dde2 100644
--- a/include/shobjidl.idl
+++ b/include/shobjidl.idl
@@ -2213,9 +2213,7 @@ interface INameSpaceTreeControlEvents : IUnknown
         [out, iid_is(riid)] void **ppv);
 
     HRESULT OnBeforeStateImageChange(
-        [in] IShellItem *psi,
-        [out] int *piDefaultIcon,
-        [out] int *piOpenIcon);
+        [in] IShellItem *psi);
 
     HRESULT OnGetDefaultIconIndex(
         [in] IShellItem *psi,




More information about the wine-cvs mailing list