mscoree/tests: Make the test and cleanup functions static.
This commit is contained in:
parent
c075968baf
commit
3b69102011
|
@ -56,14 +56,14 @@ BOOL init_pointers(void)
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
void cleanup(void)
|
static void cleanup(void)
|
||||||
{
|
{
|
||||||
ICLRMetaHost_Release(metahost);
|
ICLRMetaHost_Release(metahost);
|
||||||
|
|
||||||
FreeLibrary(hmscoree);
|
FreeLibrary(hmscoree);
|
||||||
}
|
}
|
||||||
|
|
||||||
void test_enumruntimes(void)
|
static void test_enumruntimes(void)
|
||||||
{
|
{
|
||||||
IEnumUnknown *runtime_enum;
|
IEnumUnknown *runtime_enum;
|
||||||
IUnknown *unk;
|
IUnknown *unk;
|
||||||
|
@ -108,7 +108,7 @@ void test_enumruntimes(void)
|
||||||
IEnumUnknown_Release(runtime_enum);
|
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 twodotzero[] = {'v','2','.','0','.','5','0','7','2','7',0};
|
||||||
static const WCHAR twodotzerodotzero[] = {'v','2','.','0','.','0',0};
|
static const WCHAR twodotzerodotzero[] = {'v','2','.','0','.','0',0};
|
||||||
|
|
Loading…
Reference in New Issue