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
c5c9108d
Commit
c5c9108d
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.IAsyncOperationWithProgress<TResult, TProgress> definition.
parent
f0f83180
Hide 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 @
c5c9108d
...
@@ -96,6 +96,34 @@ cpp_quote("#endif")
...
@@ -96,6 +96,34 @@ cpp_quote("#endif")
HRESULT
GetResults
()
;
HRESULT
GetResults
()
;
}
}
interface
IAsyncOperationWithProgress
<
TResult
,
TProgress
>
;
[
contract
(
Windows
.
Foundation.FoundationContract
,
1.0
),
uuid
(
55690902
-
0
aab
-
421
a
-
8778
-
f8ce5026d758
)
]
delegate
HRESULT
AsyncOperationProgressHandler
<
TResult
,
TProgress
>
(
[
in
]
Windows
.
Foundation.IAsyncOperationWithProgress<TResult
,
TProgress
>
*
info
,
[
in
]
TProgress
progress
)
;
[
contract
(
Windows
.
Foundation.FoundationContract
,
1.0
),
uuid
(
e85df41d
-
6
aa7
-
46
e3
-
a8e2
-
f009d840c627
)
]
delegate
HRESULT
AsyncOperationWithProgressCompletedHandler
<
TResult
,
TProgress
>
(
[
in
]
Windows
.
Foundation.IAsyncOperationWithProgress<TResult
,
TProgress
>
*
info
,
[
in
]
AsyncStatus
status
)
;
[
contract
(
Windows
.
Foundation.FoundationContract
,
1.0
),
uuid
(
b5d036d7
-
e297
-
498
f
-
ba60
-
0289
e76e23dd
)
]
interface
IAsyncOperationWithProgress
<
TResult
,
TProgress
>
:
IInspectable
{
[
propput
]
HRESULT
Progress
(
[
in
]
Windows
.
Foundation.AsyncOperationProgressHandler<TResult
,
TProgress
>
*
handler
)
;
[
propget
]
HRESULT
Progress
(
[
out
,
retval
]
Windows
.
Foundation.AsyncOperationProgressHandler<TResult
,
TProgress
>
**
handler
)
;
[
propput
]
HRESULT
Completed
(
[
in
]
Windows
.
Foundation.AsyncOperationWithProgressCompletedHandler<TResult
,
TProgress
>
*
handler
)
;
[
propget
]
HRESULT
Completed
(
[
out
,
retval
]
Windows
.
Foundation.AsyncOperationWithProgressCompletedHandler<TResult
,
TProgress
>
**
handler
)
;
HRESULT
GetResults
(
[
out
,
retval
]
TResult
*
results
)
;
}
[
[
contract
(
Windows
.
Foundation.FoundationContract
,
1.0
),
contract
(
Windows
.
Foundation.FoundationContract
,
1.0
),
uuid
(
9
de1c534
-
6
ae1
-
11
e0
-
84
e1
-
18
a905bcc53f
)
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