Commit e526f120 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

scrrun: Make file and folder collection constructors static.

parent a2b548ac
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment