Francois Gouget : mscoree: Make find_mono_dll() static.
Module: wine Branch: master Commit: 5c046d13d5f47d658cdc0dd2b5b84aa5516f22ca URL: http://source.winehq.org/git/wine.git/?a=commit;h=5c046d13d5f47d658cdc0dd2b5... Author: Francois Gouget <fgouget(a)free.fr> Date: Tue Sep 28 20:12:44 2010 +0200 mscoree: Make find_mono_dll() static. --- dlls/mscoree/mscoree_main.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/mscoree/mscoree_main.c b/dlls/mscoree/mscoree_main.c index 7cc3887..980bed1 100644 --- a/dlls/mscoree/mscoree_main.c +++ b/dlls/mscoree/mscoree_main.c @@ -41,7 +41,7 @@ WINE_DEFAULT_DEBUG_CHANNEL( mscoree ); -BOOL find_mono_dll(LPCWSTR path, LPWSTR dll_path, int* abi_version) +static BOOL find_mono_dll(LPCWSTR path, LPWSTR dll_path, int* abi_version) { static const WCHAR mono_dll[] = {'\\','b','i','n','\\','m','o','n','o','.','d','l','l',0}; static const WCHAR libmono_dll[] = {'\\','b','i','n','\\','l','i','b','m','o','n','o','.','d','l','l',0};
participants (1)
-
Alexandre Julliard