shell32: Declare some functions static.

oldstable
Andrew Talbot 2007-02-06 22:05:10 +00:00 committed by Alexandre Julliard
parent 434c24d83b
commit dfe3d5b88c
1 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ static const WCHAR sShell32[12] = {'S','H','E','L','L','3','2','.','D','L','L','
* 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;