shell32: Declare some functions static (2 of 4)

Andrew Talbot Andrew.Talbot at talbotville.com
Tue Feb 6 16:05:10 CST 2007


Changelog:
    shell32: Declare some functions static (2 of 4).

diff -urN a/dlls/shell32/shellole.c b/dlls/shell32/shellole.c
--- a/dlls/shell32/shellole.c	2007-01-16 18:36:49.000000000 +0000
+++ b/dlls/shell32/shellole.c	2007-02-06 21:35:57.000000000 +0000
@@ -55,7 +55,7 @@
  * 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 @@
  *  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-patches mailing list