Andrew Talbot : msctf: Declare some variables static.
Module: wine Branch: master Commit: d92eca1ef9e374dba9bad239cd268df1ff1ca9fa URL: http://source.winehq.org/git/wine.git/?a=commit;h=d92eca1ef9e374dba9bad239cd... Author: Andrew Talbot <andrew.talbot(a)talbotville.com> Date: Thu Jan 29 22:12:30 2009 +0000 msctf: Declare some variables static. --- dlls/msctf/msctf.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/msctf/msctf.c b/dlls/msctf/msctf.c index 76ed99d..254444b 100644 --- a/dlls/msctf/msctf.c +++ b/dlls/msctf/msctf.c @@ -39,9 +39,9 @@ WINE_DEFAULT_DEBUG_CHANNEL(msctf); -LONG MSCTF_refCount = 0; +static LONG MSCTF_refCount; -HINSTANCE MSCTF_hinstance = 0; +static HINSTANCE MSCTF_hinstance; typedef HRESULT (*LPFNCONSTRUCTOR)(IUnknown *pUnkOuter, IUnknown **ppvOut);
participants (1)
-
Alexandre Julliard