Andrew Talbot : mscoree: Remove extern from function definitions.

Alexandre Julliard julliard at winehq.org
Mon Aug 29 11:28:32 CDT 2011


Module: wine
Branch: master
Commit: fe29ad99a76d5aa53277cbd7408c27818404587b
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=fe29ad99a76d5aa53277cbd7408c27818404587b

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Sat Aug 27 18:33:33 2011 +0100

mscoree: Remove extern from function definitions.

---

 dlls/mscoree/config.c   |    2 +-
 dlls/mscoree/metahost.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/mscoree/config.c b/dlls/mscoree/config.c
index 3e16226..40c8378 100644
--- a/dlls/mscoree/config.c
+++ b/dlls/mscoree/config.c
@@ -427,7 +427,7 @@ static HRESULT parse_config(VARIANT input, parsed_config_file *result)
     return S_OK;
 }
 
-extern HRESULT parse_config_file(LPCWSTR filename, parsed_config_file *result)
+HRESULT parse_config_file(LPCWSTR filename, parsed_config_file *result)
 {
     IStream *stream;
     VARIANT var;
diff --git a/dlls/mscoree/metahost.c b/dlls/mscoree/metahost.c
index 895d7f3..d69bf13 100644
--- a/dlls/mscoree/metahost.c
+++ b/dlls/mscoree/metahost.c
@@ -1147,7 +1147,7 @@ static struct CLRMetaHost GlobalCLRMetaHost = {
     { &CLRMetaHost_vtbl }
 };
 
-extern HRESULT CLRMetaHost_CreateInstance(REFIID riid, void **ppobj)
+HRESULT CLRMetaHost_CreateInstance(REFIID riid, void **ppobj)
 {
     return ICLRMetaHost_QueryInterface(&GlobalCLRMetaHost.ICLRMetaHost_iface, riid, ppobj);
 }




More information about the wine-cvs mailing list