msctf: Make the CompartmentMgr functions static.

Francois Gouget fgouget at free.fr
Mon Jun 15 03:53:24 CDT 2009


---
 dlls/msctf/compartmentmgr.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/msctf/compartmentmgr.c b/dlls/msctf/compartmentmgr.c
index 33369c2..ecbe3b1 100644
--- a/dlls/msctf/compartmentmgr.c
+++ b/dlls/msctf/compartmentmgr.c
@@ -129,7 +129,7 @@ static ULONG WINAPI CompartmentMgr_Release(ITfCompartmentMgr *iface)
     }
 }
 
-HRESULT WINAPI CompartmentMgr_GetCompartment(ITfCompartmentMgr *iface,
+static HRESULT WINAPI CompartmentMgr_GetCompartment(ITfCompartmentMgr *iface,
         REFGUID rguid, ITfCompartment **ppcomp)
 {
     CompartmentMgr *This = (CompartmentMgr *)iface;
@@ -137,7 +137,7 @@ HRESULT WINAPI CompartmentMgr_GetCompartment(ITfCompartmentMgr *iface,
     return E_NOTIMPL;
 }
 
-HRESULT WINAPI CompartmentMgr_ClearCompartment(ITfCompartmentMgr *iface,
+static HRESULT WINAPI CompartmentMgr_ClearCompartment(ITfCompartmentMgr *iface,
     TfClientId tid, REFGUID rguid)
 {
     CompartmentMgr *This = (CompartmentMgr *)iface;
@@ -145,7 +145,7 @@ HRESULT WINAPI CompartmentMgr_ClearCompartment(ITfCompartmentMgr *iface,
     return E_NOTIMPL;
 }
 
-HRESULT WINAPI CompartmentMgr_EnumCompartments(ITfCompartmentMgr *iface,
+static HRESULT WINAPI CompartmentMgr_EnumCompartments(ITfCompartmentMgr *iface,
  IEnumGUID **ppEnum)
 {
     CompartmentMgr *This = (CompartmentMgr *)iface;
-- 
1.6.3.1




More information about the wine-patches mailing list