Rob Shearman : ole32: Include enumx.h in enumx. c to get the declarations of the functions.

Alexandre Julliard julliard at winehq.org
Mon Jun 23 07:35:33 CDT 2008


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

Author: Rob Shearman <robertshearman at gmail.com>
Date:   Sun Jun 22 09:39:59 2008 +0100

ole32: Include enumx.h in enumx.c to get the declarations of the functions.

---

 dlls/ole32/enumx.c |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/dlls/ole32/enumx.c b/dlls/ole32/enumx.c
index ea85092..2665301 100644
--- a/dlls/ole32/enumx.c
+++ b/dlls/ole32/enumx.c
@@ -25,12 +25,15 @@
 #include "windef.h"
 #include "winbase.h"
 #include "objbase.h"
+
+#include "enumx.h"
+
 #include "wine/list.h"
 #include "wine/debug.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(ole);
 
-typedef struct tagEnumSTATPROPSETSTG_impl
+struct tagEnumSTATPROPSETSTG_impl
 {
     const void *vtbl;
     LONG ref;
@@ -38,7 +41,7 @@ typedef struct tagEnumSTATPROPSETSTG_impl
     struct list *current;
     ULONG elem_size;
     GUID riid;
-} enumx_impl;
+};
 
 /************************************************************************
  * enumx_QueryInterface




More information about the wine-cvs mailing list