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
f0f83180
Commit
f0f83180
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.IAsyncActionWithProgress<TProgress> definition.
parent
fe11aa6a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
0 deletions
+28
-0
windows.foundation.collections.idl
include/windows.foundation.collections.idl
+28
-0
No files found.
include/windows.foundation.collections.idl
View file @
f0f83180
...
...
@@ -68,6 +68,34 @@ cpp_quote("#endif")
HRESULT
GetResults
(
[
out
,
retval
]
TResult
*
results
)
;
}
interface
IAsyncActionWithProgress
<
TProgress
>
;
[
contract
(
Windows
.
Foundation.FoundationContract
,
1.0
),
uuid
(
6
d844858
-
0
cff
-
4590
-
ae89
-
95
a5a5c8b4b8
)
]
delegate
HRESULT
AsyncActionProgressHandler
<
TProgress
>
(
[
in
]
Windows
.
Foundation.IAsyncActionWithProgress<TProgress>
*
info
,
[
in
]
TProgress
progress
)
;
[
contract
(
Windows
.
Foundation.FoundationContract
,
1.0
),
uuid
(
9
c029f91
-
cc84
-
44
fd
-
ac26
-
0
a6c4e555281
)
]
delegate
HRESULT
AsyncActionWithProgressCompletedHandler
<
TProgress
>
(
[
in
]
Windows
.
Foundation.IAsyncActionWithProgress<TProgress>
*
info
,
[
in
]
AsyncStatus
status
)
;
[
contract
(
Windows
.
Foundation.FoundationContract
,
1.0
),
uuid
(
1
f6db258
-
e803
-
48
a1
-
9546
-
eb7353398884
)
]
interface
IAsyncActionWithProgress
<
TProgress
>
:
IInspectable
{
[
propput
]
HRESULT
Progress
(
[
in
]
Windows
.
Foundation.AsyncActionProgressHandler<TProgress>
*
handler
)
;
[
propget
]
HRESULT
Progress
(
[
out
,
retval
]
Windows
.
Foundation.AsyncActionProgressHandler<TProgress>
**
handler
)
;
[
propput
]
HRESULT
Completed
(
[
in
]
Windows
.
Foundation.AsyncActionWithProgressCompletedHandler<TProgress>
*
handler
)
;
[
propget
]
HRESULT
Completed
(
[
out
,
retval
]
Windows
.
Foundation.AsyncActionWithProgressCompletedHandler<TProgress>
**
handler
)
;
HRESULT
GetResults
()
;
}
[
contract
(
Windows
.
Foundation.FoundationContract
,
1.0
),
uuid
(
9
de1c534
-
6
ae1
-
11
e0
-
84
e1
-
18
a905bcc53f
)
...
...
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