Andrew Talbot : shell32: Declare some functions static.

Alexandre Julliard julliard at wine.codeweavers.com
Wed Feb 7 04:53:12 CST 2007


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

Author: Andrew Talbot <Andrew.Talbot at talbotville.com>
Date:   Tue Feb  6 22:05:10 2007 +0000

shell32: Declare some functions static.

---

 dlls/shell32/shellole.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/shell32/shellole.c b/dlls/shell32/shellole.c
index e39a57a..e5d8368 100644
--- a/dlls/shell32/shellole.c
+++ b/dlls/shell32/shellole.c
@@ -55,7 +55,7 @@ static const WCHAR sShell32[12] = {'S','
  * Default ClassFactory types
  */
 typedef HRESULT (CALLBACK *LPFNCREATEINSTANCE)(IUnknown* pUnkOuter, REFIID riid, LPVOID* ppvObject);
-IClassFactory * IDefClF_fnConstructor(LPFNCREATEINSTANCE lpfnCI, PLONG pcRefDll, REFIID riidInst);
+static IClassFactory * IDefClF_fnConstructor(LPFNCREATEINSTANCE lpfnCI, PLONG pcRefDll, REFIID riidInst);
 
 /* this table contains all CLSID's of shell32 objects */
 static const struct {
@@ -397,7 +397,7 @@ static const IClassFactoryVtbl dclfvt;
  *  IDefClF_fnConstructor
  */
 
-IClassFactory * IDefClF_fnConstructor(LPFNCREATEINSTANCE lpfnCI, PLONG pcRefDll, REFIID riidInst)
+static IClassFactory * IDefClF_fnConstructor(LPFNCREATEINSTANCE lpfnCI, PLONG pcRefDll, REFIID riidInst)
 {
 	IDefClFImpl* lpclf;
 




More information about the wine-cvs mailing list