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
fe11aa6a
Commit
fe11aa6a
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.IObservableVector<T> definition.
parent
5050ae66
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
windows.foundation.collections.idl
include/windows.foundation.collections.idl
+21
-0
No files found.
include/windows.foundation.collections.idl
View file @
fe11aa6a
...
...
@@ -177,6 +177,15 @@ cpp_quote("#endif")
[
eventremove
]
HRESULT
MapChanged
(
[
in
]
EventRegistrationToken
token
)
;
}
interface
IObservableVector
<
T
>
;
[
contract
(
Windows
.
Foundation.FoundationContract
,
1.0
),
uuid
(
0
c051752
-
9
fbf
-
4
c70
-
aa0c
-
0
e4c82d9a761
)
]
delegate
HRESULT
VectorChangedEventHandler
<
T
>
(
[
in
]
Windows
.
Foundation.Collections.IObservableVector<T>
*
sender
,
[
in
]
Windows
.
Foundation.Collections.IVectorChangedEventArgs
*
args
)
;
[
contract
(
Windows
.
Foundation.FoundationContract
,
1.0
),
uuid
(
bbe1fa4c
-
b0e3
-
4583
-
baef
-
1
f1b2e483e56
)
...
...
@@ -210,6 +219,18 @@ cpp_quote("#endif")
HRESULT
GetMany
(
[
in
]
UINT32
start_index
,
[
in
]
UINT32
items_size
,
[
out
]
T
*
items
,
[
out
,
retval
]
UINT32
*
value
)
;
HRESULT
ReplaceAll
(
[
in
]
UINT32
count
,
[
in
]
T
*
items
)
;
}
[
contract
(
Windows
.
Foundation.FoundationContract
,
1.0
),
uuid
(
5917
eb53
-
50b4
-
4
a0d
-
b309
-
65862b3
f1dbc
)
]
interface
IObservableVector
<
T
>
:
IInspectable
requires
Windows
.
Foundation.Collections.IVector<T>
{
[
eventadd
]
HRESULT
VectorChanged
(
[
in
]
Windows
.
Foundation.Collections.VectorChangedEventHandler<T>
*
handler
,
[
out
,
retval
]
EventRegistrationToken
*
token
)
;
[
eventremove
]
HRESULT
VectorChanged
(
[
in
]
EventRegistrationToken
token
)
;
}
}
#
endif
}
...
...
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