Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
c813ae22
Commit
c813ae22
authored
Jan 08, 2014
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jan 08, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
scrrun: Implement Clone() for file collection.
parent
844aa795
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
filesystem.c
dlls/scrrun/filesystem.c
+4
-3
No files found.
dlls/scrrun/filesystem.c
View file @
c813ae22
...
@@ -145,6 +145,7 @@ static inline HRESULT create_error(DWORD err)
...
@@ -145,6 +145,7 @@ static inline HRESULT create_error(DWORD err)
static
HRESULT
create_folder
(
const
WCHAR
*
,
IFolder
**
);
static
HRESULT
create_folder
(
const
WCHAR
*
,
IFolder
**
);
static
HRESULT
create_file
(
BSTR
,
IFile
**
);
static
HRESULT
create_file
(
BSTR
,
IFile
**
);
static
HRESULT
create_foldercoll_enum
(
struct
foldercollection
*
,
IUnknown
**
);
static
HRESULT
create_foldercoll_enum
(
struct
foldercollection
*
,
IUnknown
**
);
static
HRESULT
create_filecoll_enum
(
struct
filecollection
*
,
IUnknown
**
);
static
inline
BOOL
is_dir_data
(
const
WIN32_FIND_DATAW
*
data
)
static
inline
BOOL
is_dir_data
(
const
WIN32_FIND_DATAW
*
data
)
{
{
...
@@ -723,8 +724,8 @@ static HRESULT WINAPI filecoll_enumvariant_Reset(IEnumVARIANT *iface)
...
@@ -723,8 +724,8 @@ static HRESULT WINAPI filecoll_enumvariant_Reset(IEnumVARIANT *iface)
static
HRESULT
WINAPI
filecoll_enumvariant_Clone
(
IEnumVARIANT
*
iface
,
IEnumVARIANT
**
pclone
)
static
HRESULT
WINAPI
filecoll_enumvariant_Clone
(
IEnumVARIANT
*
iface
,
IEnumVARIANT
**
pclone
)
{
{
struct
enumvariant
*
This
=
impl_from_IEnumVARIANT
(
iface
);
struct
enumvariant
*
This
=
impl_from_IEnumVARIANT
(
iface
);
FIXME
(
"(%p)->(%p): stub
\n
"
,
This
,
pclone
);
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
pclone
);
return
E_NOTIMPL
;
return
create_filecoll_enum
(
This
->
data
.
u
.
filecoll
.
coll
,
(
IUnknown
**
)
pclone
)
;
}
}
static
const
IEnumVARIANTVtbl
filecollenumvariantvtbl
=
{
static
const
IEnumVARIANTVtbl
filecollenumvariantvtbl
=
{
...
@@ -737,7 +738,7 @@ static const IEnumVARIANTVtbl filecollenumvariantvtbl = {
...
@@ -737,7 +738,7 @@ static const IEnumVARIANTVtbl filecollenumvariantvtbl = {
filecoll_enumvariant_Clone
filecoll_enumvariant_Clone
};
};
static
HRESULT
create_filecoll_enum
(
struct
filecollection
*
collection
,
IUnknown
**
newenum
)
HRESULT
create_filecoll_enum
(
struct
filecollection
*
collection
,
IUnknown
**
newenum
)
{
{
struct
enumvariant
*
This
;
struct
enumvariant
*
This
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment