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
474c5882
Commit
474c5882
authored
Mar 09, 2022
by
Rémi Bernon
Committed by
Alexandre Julliard
Mar 09, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Fix IIterator<T> declaration and missing IVector(View)<T> requires.
Signed-off-by:
Rémi Bernon
<
rbernon@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
b98b9ce7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
windows.foundation.collections.idl
include/windows.foundation.collections.idl
+3
-1
windows.foundation.idl
include/windows.foundation.idl
+2
-0
No files found.
include/windows.foundation.collections.idl
View file @
474c5882
...
@@ -93,7 +93,7 @@ cpp_quote("#endif")
...
@@ -93,7 +93,7 @@ cpp_quote("#endif")
[
propget
]
HRESULT
Current
(
[
out
,
retval
]
T
*
value
)
;
[
propget
]
HRESULT
Current
(
[
out
,
retval
]
T
*
value
)
;
[
propget
]
HRESULT
HasCurrent
(
[
out
,
retval
]
BOOL
*
value
)
;
[
propget
]
HRESULT
HasCurrent
(
[
out
,
retval
]
BOOL
*
value
)
;
HRESULT
MoveNext
(
[
out
,
retval
]
BOOL
*
value
)
;
HRESULT
MoveNext
(
[
out
,
retval
]
BOOL
*
value
)
;
HRESULT
GetMany
(
[
in
]
UINT32
count
,
[
in
]
UINT32
items_size
,
[
out
]
T
*
items
,
[
out
,
retval
]
UINT32
*
value
)
;
HRESULT
GetMany
(
[
in
]
UINT32
items_size
,
[
out
]
T
*
items
,
[
out
,
retval
]
UINT32
*
value
)
;
}
}
[
[
...
@@ -134,6 +134,7 @@ cpp_quote("#endif")
...
@@ -134,6 +134,7 @@ cpp_quote("#endif")
uuid
(
bbe1fa4c
-
b0e3
-
4583
-
baef
-
1
f1b2e483e56
)
uuid
(
bbe1fa4c
-
b0e3
-
4583
-
baef
-
1
f1b2e483e56
)
]
]
interface
IVectorView
<
T
>
:
IInspectable
interface
IVectorView
<
T
>
:
IInspectable
requires
Windows
.
Foundation.Collections.IIterable<T>
{
{
HRESULT
GetAt
(
[
in
]
UINT32
index
,
[
out
,
retval
]
T
*
value
)
;
HRESULT
GetAt
(
[
in
]
UINT32
index
,
[
out
,
retval
]
T
*
value
)
;
[
propget
]
HRESULT
Size
(
[
out
,
retval
]
UINT32
*
value
)
;
[
propget
]
HRESULT
Size
(
[
out
,
retval
]
UINT32
*
value
)
;
...
@@ -146,6 +147,7 @@ cpp_quote("#endif")
...
@@ -146,6 +147,7 @@ cpp_quote("#endif")
uuid
(
913337
e9
-
11
a1
-
4345
-
a3a2
-
4
e7f956e222d
)
uuid
(
913337
e9
-
11
a1
-
4345
-
a3a2
-
4
e7f956e222d
)
]
]
interface
IVector
<
T
>
:
IInspectable
interface
IVector
<
T
>
:
IInspectable
requires
Windows
.
Foundation.Collections.IIterable<T>
{
{
HRESULT
GetAt
(
[
in
,
optional
]
UINT32
index
,
[
out
,
retval
]
T
*
value
)
;
HRESULT
GetAt
(
[
in
,
optional
]
UINT32
index
,
[
out
,
retval
]
T
*
value
)
;
[
propget
]
HRESULT
Size
(
[
out
,
retval
]
UINT32
*
value
)
;
[
propget
]
HRESULT
Size
(
[
out
,
retval
]
UINT32
*
value
)
;
...
...
include/windows.foundation.idl
View file @
474c5882
...
@@ -159,7 +159,9 @@ namespace Windows {
...
@@ -159,7 +159,9 @@ namespace Windows {
namespace
Foundation
{
namespace
Foundation
{
declare
{
declare
{
interface
Windows
.
Foundation.Collections.IIterable<HSTRING>;
interface
Windows
.
Foundation.Collections.IIterable<HSTRING>;
interface
Windows
.
Foundation.Collections.IIterable<IInspectable
*
>
;
interface
Windows
.
Foundation.Collections.IIterator<HSTRING>;
interface
Windows
.
Foundation.Collections.IIterator<HSTRING>;
interface
Windows
.
Foundation.Collections.IIterator<IInspectable
*
>
;
interface
Windows
.
Foundation.Collections.IVectorView<HSTRING>;
interface
Windows
.
Foundation.Collections.IVectorView<HSTRING>;
interface
Windows
.
Foundation.Collections.IVectorView<IInspectable
*
>
;
interface
Windows
.
Foundation.Collections.IVectorView<IInspectable
*
>
;
interface
Windows
.
Foundation.Collections.IVector<HSTRING>;
interface
Windows
.
Foundation.Collections.IVector<HSTRING>;
...
...
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