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
44906b60
Commit
44906b60
authored
Jan 24, 2023
by
Rémi Bernon
Committed by
Alexandre Julliard
Jan 25, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add Windows.Foundation.Collections.IMap<K, V> definition.
parent
634b1634
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
windows.foundation.collections.idl
include/windows.foundation.collections.idl
+16
-0
No files found.
include/windows.foundation.collections.idl
View file @
44906b60
...
...
@@ -151,6 +151,22 @@ cpp_quote("#endif")
[
contract
(
Windows
.
Foundation.FoundationContract
,
1.0
),
uuid
(
3
c2925fe
-
8519
-
45
c1
-
aa79
-
197b6718
c1c1
)
]
interface
IMap
<
K
,
V
>
:
IInspectable
requires
Windows
.
Foundation.Collections.IIterable<Windows.Foundation.Collections.IKeyValuePair<K
,
V
>
*
>
{
HRESULT
Lookup
(
[
in
]
K
key
,
[
out
,
retval
]
V
*
value
)
;
[
propget
]
HRESULT
Size
(
[
out
,
retval
]
unsigned
int
*
size
)
;
HRESULT
HasKey
(
[
in
]
K
key
,
[
out
,
retval
]
boolean
*
found
)
;
HRESULT
GetView
(
[
out
,
retval
]
Windows
.
Foundation.Collections.IMapView<K
,
V
>
**
view
)
;
HRESULT
Insert
(
[
in
]
K
key
,
[
in
]
V
value
,
[
out
,
retval
]
boolean
*
replaced
)
;
HRESULT
Remove
(
[
in
]
K
key
)
;
HRESULT
Clear
()
;
}
[
contract
(
Windows
.
Foundation.FoundationContract
,
1.0
),
uuid
(
bbe1fa4c
-
b0e3
-
4583
-
baef
-
1
f1b2e483e56
)
]
interface
IVectorView
<
T
>
:
IInspectable
...
...
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