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
d3f51b1d
Commit
d3f51b1d
authored
Jan 31, 2022
by
Bernhard Kölbl
Committed by
Alexandre Julliard
Feb 11, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include/windows.foundation.collections.idl: Add IVector<T> interface.
Signed-off-by:
Bernhard Kölbl
<
besentv@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
9a799898
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
windows.foundation.collections.idl
include/windows.foundation.collections.idl
+20
-0
No files found.
include/windows.foundation.collections.idl
View file @
d3f51b1d
...
...
@@ -118,6 +118,26 @@ cpp_quote("#endif")
HRESULT
IndexOf
(
[
in
,
optional
]
T
element
,
[
out
]
UINT32
*
index
,
[
out
,
retval
]
BOOLEAN
*
value
)
;
HRESULT
GetMany
(
[
in
]
UINT32
start_index
,
[
in
]
UINT32
items_size
,
[
out
]
T
*
items
,
[
out
,
retval
]
UINT32
*
value
)
;
}
[
contract
(
Windows
.
Foundation.FoundationContract
,
1.0
),
uuid
(
913337
e9
-
11
a1
-
4345
-
a3a2
-
4
e7f956e222d
)
]
interface
IVector
<
T
>
:
IInspectable
{
HRESULT
GetAt
(
[
in
,
optional
]
UINT32
index
,
[
out
,
retval
]
T
*
value
)
;
[
propget
]
HRESULT
Size
(
[
out
,
retval
]
UINT32
*
value
)
;
HRESULT
GetView
(
[
out
,
retval
]
IVectorView
<
T
>
**
value
)
;
HRESULT
IndexOf
(
[
in
,
optional
]
T
element
,
[
out
]
UINT32
*
index
,
[
out
,
retval
]
BOOLEAN
*
value
)
;
HRESULT
SetAt
(
[
in
]
UINT32
index
,
[
in
,
optional
]
T
value
)
;
HRESULT
InsertAt
(
[
in
]
UINT32
index
,
[
in
,
optional
]
T
value
)
;
HRESULT
RemoveAt
(
[
in
]
UINT32
index
)
;
HRESULT
Append
(
[
in
,
optional
]
T
value
)
;
HRESULT
RemoveAtEnd
()
;
HRESULT
Clear
()
;
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
)
;
}
}
#
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