Module: wine Branch: master Commit: 1ba95da66f4e0d06a47839023ba284329a65fb26 URL: http://source.winehq.org/git/wine.git/?a=commit;h=1ba95da66f4e0d06a47839023b...
Author: Francois Gouget fgouget@free.fr Date: Mon Jun 15 10:53:24 2009 +0200
msctf: Make the CompartmentMgr functions static.
---
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;