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
923a1b4e
Commit
923a1b4e
authored
Mar 02, 2023
by
Mohamad Al-Jaf
Committed by
Alexandre Julliard
Mar 17, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add Windows.Foundation.Deferral definition.
Needed by windows.graphics.holographic.idl.
parent
3d3076b2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
0 deletions
+41
-0
windows.foundation.idl
include/windows.foundation.idl
+41
-0
No files found.
include/windows.foundation.idl
View file @
923a1b4e
...
...
@@ -62,10 +62,13 @@ namespace Windows.Foundation {
typedef
struct
TimeSpan
TimeSpan
;
interface
IAsyncAction
;
interface
IClosable
;
interface
IDeferral
;
interface
IDeferralFactory
;
interface
IMemoryBuffer
;
interface
IMemoryBufferFactory
;
interface
IMemoryBufferReference
;
interface
IStringable
;
runtimeclass
Deferral
;
runtimeclass
MemoryBuffer
;
declare
{
...
...
@@ -94,6 +97,12 @@ namespace Windows.Foundation {
]
delegate
HRESULT
AsyncActionCompletedHandler
(
[
in
]
Windows
.
Foundation.IAsyncAction
*
action
,
[
in
]
AsyncStatus
status
)
;
[
contract
(
Windows
.
Foundation.FoundationContract
,
1.0
),
uuid
(
ed32a372
-
f3c8
-
4
faa
-
9
cfb
-
470148
da3888
)
]
delegate
HRESULT
DeferralCompletedHandler
()
;
[
contract
(
Windows
.
Foundation.FoundationContract
,
1.0
)
]
enum
PropertyType
{
...
...
@@ -195,6 +204,27 @@ namespace Windows.Foundation {
[
contract
(
Windows
.
Foundation.FoundationContract
,
1.0
),
exclusiveto
(
Windows
.
Foundation.Deferral)
,
uuid
(
d6269732
-
3b7
f
-
46
a7
-
b40b
-
4
fdca2a2c693
)
]
interface
IDeferral
:
IInspectable
requires
Windows
.
Foundation.IClosable
{
HRESULT
Complete
()
;
}
[
contract
(
Windows
.
Foundation.FoundationContract
,
1.0
),
exclusiveto
(
Windows
.
Foundation.Deferral)
,
uuid
(
65
a1ecc5
-
3
fb5
-
4832
-
8
ca9
-
f061b281d13a
)
]
interface
IDeferralFactory
:
IInspectable
{
HRESULT
Create
(
[
in
]
Windows
.
Foundation.DeferralCompletedHandler
*
handler
,
[
out
,
retval
]
Windows
.
Foundation.Deferral
**
result
)
;
}
[
contract
(
Windows
.
Foundation.FoundationContract
,
1.0
),
uuid
(
5
a648006
-
843
a
-
4
da9
-
865b
-
9
d26e5dfad7b
)
]
interface
IAsyncAction
:
IInspectable
...
...
@@ -240,6 +270,17 @@ namespace Windows.Foundation {
}
[
activatable
(
Windows
.
Foundation.IDeferralFactory
,
Windows
.
Foundation.FoundationContract
,
1.0
),
contract
(
Windows
.
Foundation.FoundationContract
,
1.0
),
marshaling_behavior
(
agile
)
]
runtimeclass
Deferral
{
[
default
]
interface
Windows
.
Foundation.IDeferral;
interface
Windows
.
Foundation.IClosable;
}
[
activatable
(
Windows
.
Foundation.IMemoryBufferFactory
,
Windows
.
Foundation.UniversalApiContract
,
1.0
),
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
marshaling_behavior
(
agile
),
...
...
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