scrrun: Make file and folder collection constructors static.

This commit is contained in:
Dmitry Timoshkov 2014-01-30 14:19:53 +09:00 committed by Alexandre Julliard
parent a2b548ac3a
commit e526f120a9
1 changed files with 2 additions and 2 deletions

View File

@ -615,7 +615,7 @@ static const IEnumVARIANTVtbl foldercollenumvariantvtbl = {
foldercoll_enumvariant_Clone
};
HRESULT create_foldercoll_enum(struct foldercollection *collection, IUnknown **newenum)
static HRESULT create_foldercoll_enum(struct foldercollection *collection, IUnknown **newenum)
{
struct enumvariant *This;
@ -770,7 +770,7 @@ static const IEnumVARIANTVtbl filecollenumvariantvtbl = {
filecoll_enumvariant_Clone
};
HRESULT create_filecoll_enum(struct filecollection *collection, IUnknown **newenum)
static HRESULT create_filecoll_enum(struct filecollection *collection, IUnknown **newenum)
{
struct enumvariant *This;