Module: wine Branch: master Commit: 4e53bbda2e6ccc5bf5389a2b7c42264d06c1553d URL: http://source.winehq.org/git/wine.git/?a=commit;h=4e53bbda2e6ccc5bf5389a2b7c...
Author: Francois Gouget fgouget@free.fr Date: Thu Sep 10 17:58:54 2009 +0200
msctf: Make ThreadFocusHookProc() static.
---
dlls/msctf/threadmgr.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/msctf/threadmgr.c b/dlls/msctf/threadmgr.c index 683a6f3..85b11a1 100644 --- a/dlls/msctf/threadmgr.c +++ b/dlls/msctf/threadmgr.c @@ -434,7 +434,7 @@ static HRESULT WINAPI ThreadMgr_SetFocus( ITfThreadMgr* iface, ITfDocumentMgr *p return S_OK; }
-LRESULT CALLBACK ThreadFocusHookProc(int nCode, WPARAM wParam, LPARAM lParam) +static LRESULT CALLBACK ThreadFocusHookProc(int nCode, WPARAM wParam, LPARAM lParam) { ThreadMgr *This;