Commit b8e78f32 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

scrrun: Added IDrive stub and Next() for drive collection.

parent efa2905c
......@@ -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,
......
......@@ -287,8 +287,8 @@ library Scripting
HRESULT Path([out, retval] BSTR* pbstrPath);
[id(0x00002710), propget]
HRESULT DriveLetter([out, retval] BSTR* pbstrLetter)
;
HRESULT DriveLetter([out, retval] BSTR* pbstrLetter);
[id(0x00002711), propget]
HRESULT ShareName([out, retval] BSTR* pbstrShareName);
......
......@@ -25,6 +25,7 @@ typedef enum tid_t
{
NULL_tid,
IDictionary_tid,
IDrive_tid,
IDriveCollection_tid,
IFile_tid,
IFileCollection_tid,
......
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