Module: wine Branch: refs/heads/master Commit: c637fa3cc620e3c1f93cc1be20788ccaa8b6e0e9 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=c637fa3cc620e3c1f93cc1be...
Author: Alexandre Julliard julliard@winehq.org Date: Sat Jun 10 11:58:27 2006 +0200
itss: Make the virtual table functions static where possible.
---
dlls/itss/itss.c | 26 +++++++++++++------------- 1 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/dlls/itss/itss.c b/dlls/itss/itss.c index ebd3a82..b4b2a5e 100644 --- a/dlls/itss/itss.c +++ b/dlls/itss/itss.c @@ -216,7 +216,7 @@ typedef struct { } ITStorageImpl;
-HRESULT WINAPI ITStorageImpl_QueryInterface( +static HRESULT WINAPI ITStorageImpl_QueryInterface( IITStorage* iface, REFIID riid, void** ppvObject) @@ -234,7 +234,7 @@ HRESULT WINAPI ITStorageImpl_QueryInterf return E_NOINTERFACE; }
-ULONG WINAPI ITStorageImpl_AddRef( +static ULONG WINAPI ITStorageImpl_AddRef( IITStorage* iface) { ITStorageImpl *This = (ITStorageImpl *)iface; @@ -242,7 +242,7 @@ ULONG WINAPI ITStorageImpl_AddRef( return InterlockedIncrement(&This->ref); }
-ULONG WINAPI ITStorageImpl_Release( +static ULONG WINAPI ITStorageImpl_Release( IITStorage* iface) { ITStorageImpl *This = (ITStorageImpl *)iface; @@ -256,7 +256,7 @@ ULONG WINAPI ITStorageImpl_Release( return ref; }
-HRESULT WINAPI ITStorageImpl_StgCreateDocfile( +static HRESULT WINAPI ITStorageImpl_StgCreateDocfile( IITStorage* iface, const WCHAR* pwcsName, DWORD grfMode, @@ -272,7 +272,7 @@ HRESULT WINAPI ITStorageImpl_StgCreateDo 0, reserved, ppstgOpen); }
-HRESULT WINAPI ITStorageImpl_StgCreateDocfileOnILockBytes( +static HRESULT WINAPI ITStorageImpl_StgCreateDocfileOnILockBytes( IITStorage* iface, ILockBytes* plkbyt, DWORD grfMode, @@ -284,7 +284,7 @@ HRESULT WINAPI ITStorageImpl_StgCreateDo return E_NOTIMPL; }
-HRESULT WINAPI ITStorageImpl_StgIsStorageFile( +static HRESULT WINAPI ITStorageImpl_StgIsStorageFile( IITStorage* iface, const WCHAR* pwcsName) { @@ -293,7 +293,7 @@ HRESULT WINAPI ITStorageImpl_StgIsStorag return E_NOTIMPL; }
-HRESULT WINAPI ITStorageImpl_StgIsStorageILockBytes( +static HRESULT WINAPI ITStorageImpl_StgIsStorageILockBytes( IITStorage* iface, ILockBytes* plkbyt) { @@ -302,7 +302,7 @@ HRESULT WINAPI ITStorageImpl_StgIsStorag return E_NOTIMPL; }
-HRESULT WINAPI ITStorageImpl_StgOpenStorage( +static HRESULT WINAPI ITStorageImpl_StgOpenStorage( IITStorage* iface, const WCHAR* pwcsName, IStorage* pstgPriority, @@ -320,7 +320,7 @@ HRESULT WINAPI ITStorageImpl_StgOpenStor snbExclude, reserved, ppstgOpen); }
-HRESULT WINAPI ITStorageImpl_StgOpenStorageOnILockBytes( +static HRESULT WINAPI ITStorageImpl_StgOpenStorageOnILockBytes( IITStorage* iface, ILockBytes* plkbyt, IStorage* pStgPriority, @@ -334,7 +334,7 @@ HRESULT WINAPI ITStorageImpl_StgOpenStor return E_NOTIMPL; }
-HRESULT WINAPI ITStorageImpl_StgSetTimes( +static HRESULT WINAPI ITStorageImpl_StgSetTimes( IITStorage* iface, WCHAR* lpszName, FILETIME* pctime, @@ -346,7 +346,7 @@ HRESULT WINAPI ITStorageImpl_StgSetTimes return E_NOTIMPL; }
-HRESULT WINAPI ITStorageImpl_SetControlData( +static HRESULT WINAPI ITStorageImpl_SetControlData( IITStorage* iface, PITS_Control_Data pControlData) { @@ -355,7 +355,7 @@ HRESULT WINAPI ITStorageImpl_SetControlD return E_NOTIMPL; }
-HRESULT WINAPI ITStorageImpl_DefaultControlData( +static HRESULT WINAPI ITStorageImpl_DefaultControlData( IITStorage* iface, PITS_Control_Data* ppControlData) { @@ -364,7 +364,7 @@ HRESULT WINAPI ITStorageImpl_DefaultCont return E_NOTIMPL; }
-HRESULT WINAPI ITStorageImpl_Compact( +static HRESULT WINAPI ITStorageImpl_Compact( IITStorage* iface, const WCHAR* pwcsName, ECompactionLev iLev)