Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
b8e78f32
Commit
b8e78f32
authored
Feb 25, 2014
by
Nikolay Sivov
Committed by
Alexandre Julliard
Feb 25, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
scrrun: Added IDrive stub and Next() for drive collection.
parent
efa2905c
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
305 additions
and
6 deletions
+305
-6
filesystem.c
dlls/scrrun/filesystem.c
+301
-4
scrrun.c
dlls/scrrun/scrrun.c
+1
-0
scrrun.idl
dlls/scrrun/scrrun.idl
+2
-2
scrrun_private.h
dlls/scrrun/scrrun_private.h
+1
-0
No files found.
dlls/scrrun/filesystem.c
View file @
b8e78f32
This diff is collapsed.
Click to expand it.
dlls/scrrun/scrrun.c
View file @
b8e78f32
...
...
@@ -103,6 +103,7 @@ static ITypeInfo *typeinfos[LAST_tid];
static
REFIID
tid_ids
[]
=
{
&
IID_NULL
,
&
IID_IDictionary
,
&
IID_IDrive
,
&
IID_IDriveCollection
,
&
IID_IFile
,
&
IID_IFileCollection
,
...
...
dlls/scrrun/scrrun.idl
View file @
b8e78f32
...
...
@@ -287,8 +287,8 @@ library Scripting
HRESULT
Path
(
[
out
,
retval
]
BSTR
*
pbstrPath
)
;
[
id
(
0
x00002710
),
propget
]
HRESULT
DriveLetter
(
[
out
,
retval
]
BSTR
*
pbstrLetter
)
;
HRESULT
DriveLetter
(
[
out
,
retval
]
BSTR
*
pbstrLetter
)
;
[
id
(
0
x00002711
),
propget
]
HRESULT
ShareName
(
[
out
,
retval
]
BSTR
*
pbstrShareName
)
;
...
...
dlls/scrrun/scrrun_private.h
View file @
b8e78f32
...
...
@@ -25,6 +25,7 @@ typedef enum tid_t
{
NULL_tid
,
IDictionary_tid
,
IDrive_tid
,
IDriveCollection_tid
,
IFile_tid
,
IFileCollection_tid
,
...
...
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