Re: [PATCH 1/2] vbscript/tests: Drop static keyword from variables in is_lang_english.
Jacek Caban <[email protected]>
| Newsgroups | gmane.comp.emulators.wine.patches |
|---|---|
| Message-ID | <[email protected]> |
On 29.10.2017 22:00, Alex Henrie wrote: > Signed-off-by: Alex Henrie <[email protected]> > --- > The function is only called once. > --- > dlls/vbscript/tests/run.c | 15 ++++++--------- > 1 file changed, 6 insertions(+), 9 deletions(-) > > diff --git a/dlls/vbscript/tests/run.c b/dlls/vbscript/tests/run.c > index 81b1ced463..8a6d7e321a 100644 > --- a/dlls/vbscript/tests/run.c > +++ b/dlls/vbscript/tests/run.c > @@ -209,16 +209,13 @@ static const char *vt2a(VARIANT *v) > */ > static BOOL is_lang_english(void) > { > - static HMODULE hkernel32 = NULL; > - static LANGID (WINAPI *pGetThreadUILanguage)(void) = NULL; > - static LANGID (WINAPI *pGetUserDefaultUILanguage)(void) = NULL; > + HMODULE hkernel32 = NULL; > + LANGID (WINAPI *pGetThreadUILanguage)(void) = NULL; > + LANGID (WINAPI *pGetUserDefaultUILanguage)(void) = NULL; If you're changing this, could you please get rid of pGetUserDefaultUILanguag? It's available since win2k, so we may just use importlib for that. Thanks, Jacek