Francois Gouget : mscoree/tests: Make the test and cleanup functions static .
Module: wine Branch: master Commit: 3b69102011297ceb1c82b7afec1bc6ae1055d50b URL: http://source.winehq.org/git/wine.git/?a=commit;h=3b69102011297ceb1c82b7afec... Author: Francois Gouget <fgouget(a)free.fr> Date: Wed Mar 16 08:32:24 2011 +0100 mscoree/tests: Make the test and cleanup functions static. --- dlls/mscoree/tests/metahost.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/mscoree/tests/metahost.c b/dlls/mscoree/tests/metahost.c index bf9e383..665ee65 100644 --- a/dlls/mscoree/tests/metahost.c +++ b/dlls/mscoree/tests/metahost.c @@ -56,14 +56,14 @@ BOOL init_pointers(void) return TRUE; } -void cleanup(void) +static void cleanup(void) { ICLRMetaHost_Release(metahost); FreeLibrary(hmscoree); } -void test_enumruntimes(void) +static void test_enumruntimes(void) { IEnumUnknown *runtime_enum; IUnknown *unk; @@ -108,7 +108,7 @@ void test_enumruntimes(void) IEnumUnknown_Release(runtime_enum); } -void test_getruntime(void) +static void test_getruntime(void) { static const WCHAR twodotzero[] = {'v','2','.','0','.','5','0','7','2','7',0}; static const WCHAR twodotzerodotzero[] = {'v','2','.','0','.','0',0};
participants (1)
-
Alexandre Julliard