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
3395ce23
Commit
3395ce23
authored
Aug 11, 2023
by
Rémi Bernon
Committed by
Alexandre Julliard
Aug 22, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add Windows.ApplicationModel.PackageStatus runtimeclass definition.
parent
ff6333c2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
0 deletions
+33
-0
windows.applicationmodel.idl
include/windows.applicationmodel.idl
+33
-0
No files found.
include/windows.applicationmodel.idl
View file @
3395ce23
...
...
@@ -29,6 +29,7 @@ namespace Windows.ApplicationModel {
interface
IAppDisplayInfo
;
interface
IPackage
;
interface
IPackageStatus
;
interface
IPackageId
;
interface
IPackageIdWithMetadata
;
interface
IPackageStatics
;
...
...
@@ -36,6 +37,7 @@ namespace Windows.ApplicationModel {
runtimeclass
AppDisplayInfo
;
runtimeclass
Package
;
runtimeclass
PackageId
;
runtimeclass
PackageStatus
;
declare
{
interface
Windows
.
Foundation.Collections.IIterable<Windows.ApplicationModel.Package
*
>
;
...
...
@@ -81,6 +83,27 @@ namespace Windows.ApplicationModel {
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
exclusiveto
(
Windows
.
ApplicationModel.PackageStatus)
,
uuid
(
5
fe74f71
-
a365
-
4
c09
-
a02d
-
046
d525ea1da
)
]
interface
IPackageStatus
:
IInspectable
{
HRESULT
VerifyIsOK
(
[
out
,
retval
]
boolean
*
value
)
;
[
propget
]
HRESULT
NotAvailable
(
[
out
,
retval
]
boolean
*
value
)
;
[
propget
]
HRESULT
PackageOffline
(
[
out
,
retval
]
boolean
*
value
)
;
[
propget
]
HRESULT
DataOffline
(
[
out
,
retval
]
boolean
*
value
)
;
[
propget
]
HRESULT
Disabled
(
[
out
,
retval
]
boolean
*
value
)
;
[
propget
]
HRESULT
NeedsRemediation
(
[
out
,
retval
]
boolean
*
value
)
;
[
propget
]
HRESULT
LicenseIssue
(
[
out
,
retval
]
boolean
*
value
)
;
[
propget
]
HRESULT
Modified
(
[
out
,
retval
]
boolean
*
value
)
;
[
propget
]
HRESULT
Tampered
(
[
out
,
retval
]
boolean
*
value
)
;
[
propget
]
HRESULT
DependencyIssue
(
[
out
,
retval
]
boolean
*
value
)
;
[
propget
]
HRESULT
Servicing
(
[
out
,
retval
]
boolean
*
value
)
;
[
propget
]
HRESULT
DeploymentInProgress
(
[
out
,
retval
]
boolean
*
value
)
;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
exclusiveto
(
Windows
.
ApplicationModel.PackageId)
,
uuid
(
1
adb665e
-
37
c7
-
4790
-
9980
-
dd7ae74e8bb2
)
]
...
...
@@ -150,6 +173,16 @@ namespace Windows.ApplicationModel {
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
marshaling_behavior
(
agile
)
]
runtimeclass
PackageStatus
{
[
default
]
interface
Windows
.
ApplicationModel.IPackageStatus;
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
4.0
)
]
interface
Windows
.
ApplicationModel.IPackageStatus2;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
marshaling_behavior
(
agile
)
]
runtimeclass
PackageId
{
[
default
]
interface
Windows
.
ApplicationModel.IPackageId;
...
...
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