Francois Gouget : shlwapi/tests: Make the XXX_Construct() functions static.

Alexandre Julliard julliard at winehq.org
Wed Jun 23 10:57:04 CDT 2010


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

Author: Francois Gouget <fgouget at free.fr>
Date:   Tue Jun 22 17:51:28 2010 +0200

shlwapi/tests: Make the XXX_Construct() functions static.

---

 dlls/shlwapi/tests/ordinal.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/shlwapi/tests/ordinal.c b/dlls/shlwapi/tests/ordinal.c
index cfc25e1..bf61418 100644
--- a/dlls/shlwapi/tests/ordinal.c
+++ b/dlls/shlwapi/tests/ordinal.c
@@ -1960,7 +1960,7 @@ typedef struct {
 
 static const IOleCommandTargetVtbl IOleCommandTargetImpl_Vtbl;
 
-IOleCommandTarget* IOleCommandTargetImpl_Construct(void)
+static IOleCommandTarget* IOleCommandTargetImpl_Construct(void)
 {
     IOleCommandTargetImpl *obj;
 
@@ -2050,7 +2050,7 @@ typedef struct {
 static const IServiceProviderVtbl IServiceProviderImpl_Vtbl;
 static const IProfferServiceVtbl IProfferServiceImpl_Vtbl;
 
-IServiceProvider* IServiceProviderImpl_Construct(void)
+static IServiceProvider* IServiceProviderImpl_Construct(void)
 {
     IServiceProviderImpl *obj;
 
@@ -2061,7 +2061,7 @@ IServiceProvider* IServiceProviderImpl_Construct(void)
     return (IServiceProvider*)obj;
 }
 
-IProfferService* IProfferServiceImpl_Construct(void)
+static IProfferService* IProfferServiceImpl_Construct(void)
 {
     IProfferServiceImpl *obj;
 




More information about the wine-cvs mailing list