From: Gé van Geldorp Date: Fri, 12 Aug 2005 18:06:58 +0000 (+0000) Subject: Sync to Wine-20050725: X-Git-Tag: ReactOS-0.2.8~1043 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=b063f039ecd8c096272fb28231f8cfb27fc62599 Sync to Wine-20050725: Mike McCormack - Interlocked LONG* gcc warning fixes. svn path=/trunk/; revision=17339 --- diff --git a/reactos/lib/shdocvw/shdocvw.h b/reactos/lib/shdocvw/shdocvw.h index cde58012bf1..8ef238a0d78 100644 --- a/reactos/lib/shdocvw/shdocvw.h +++ b/reactos/lib/shdocvw/shdocvw.h @@ -42,7 +42,7 @@ typedef struct { /* IUnknown fields */ const IClassFactoryVtbl *lpVtbl; - DWORD ref; + LONG ref; } IClassFactoryImpl; extern IClassFactoryImpl SHDOCVW_ClassFactory; @@ -55,7 +55,7 @@ typedef struct { /* IUnknown fields */ const IOleObjectVtbl *lpVtbl; - DWORD ref; + LONG ref; } IOleObjectImpl; extern IOleObjectImpl SHDOCVW_OleObject; @@ -67,7 +67,7 @@ typedef struct { /* IUnknown fields */ const IWebBrowserVtbl *lpVtbl; - DWORD ref; + LONG ref; } IWebBrowserImpl; extern IWebBrowserImpl SHDOCVW_WebBrowser; @@ -80,7 +80,7 @@ typedef struct { /* IUnknown fields */ const IProvideClassInfoVtbl *lpVtbl; - DWORD ref; + LONG ref; } IProvideClassInfoImpl; extern IProvideClassInfoImpl SHDOCVW_ProvideClassInfo; @@ -93,7 +93,7 @@ typedef struct { /* IUnknown fields */ const IProvideClassInfo2Vtbl *lpVtbl; - DWORD ref; + LONG ref; } IProvideClassInfo2Impl; extern IProvideClassInfo2Impl SHDOCVW_ProvideClassInfo2; @@ -106,7 +106,7 @@ typedef struct { /* IUnknown fields */ const IPersistStorageVtbl *lpVtbl; - DWORD ref; + LONG ref; } IPersistStorageImpl; extern IPersistStorageImpl SHDOCVW_PersistStorage; @@ -119,7 +119,7 @@ typedef struct { /* IUnknown fields */ const IPersistStreamInitVtbl *lpVtbl; - DWORD ref; + LONG ref; } IPersistStreamInitImpl; extern IPersistStreamInitImpl SHDOCVW_PersistStreamInit; @@ -132,7 +132,7 @@ typedef struct { /* IUnknown fields */ const IQuickActivateVtbl *lpVtbl; - DWORD ref; + LONG ref; } IQuickActivateImpl; extern IQuickActivateImpl SHDOCVW_QuickActivate; @@ -145,7 +145,7 @@ typedef struct { /* IUnknown fields */ const IConnectionPointContainerVtbl *lpVtbl; - DWORD ref; + LONG ref; } IConnectionPointContainerImpl; extern IConnectionPointContainerImpl SHDOCVW_ConnectionPointContainer; @@ -158,7 +158,7 @@ typedef struct { /* IUnknown fields */ const IConnectionPointVtbl *lpVtbl; - DWORD ref; + LONG ref; } IConnectionPointImpl; /********************************************************************** diff --git a/reactos/lib/shdocvw/shdocvw_main.c b/reactos/lib/shdocvw/shdocvw_main.c index 1b7dd45759f..e486c1046ab 100644 --- a/reactos/lib/shdocvw/shdocvw_main.c +++ b/reactos/lib/shdocvw/shdocvw_main.c @@ -152,7 +152,7 @@ HRESULT WINAPI DllCanUnloadNow(void) */ typedef struct _IBindStatusCallbackImpl { const IBindStatusCallbackVtbl *vtbl; - DWORD ref; + LONG ref; HWND hDialog; BOOL *pbCancelled; } IBindStatusCallbackImpl;