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
57873adf
Commit
57873adf
authored
Feb 24, 2023
by
Rémi Bernon
Committed by
Alexandre Julliard
Nov 23, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add Windows.Globalization.GeographicRegion runtimeclass.
parent
8ff59986
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
53 additions
and
0 deletions
+53
-0
windows.globalization.idl
include/windows.globalization.idl
+53
-0
No files found.
include/windows.globalization.idl
View file @
57873adf
...
...
@@ -40,7 +40,11 @@ namespace Windows {
interface
ILanguageStatics
;
interface
ILanguageStatics2
;
interface
ILanguageStatics3
;
interface
IGeographicRegion
;
interface
IGeographicRegionFactory
;
interface
IGeographicRegionStatics
;
runtimeclass
Language
;
runtimeclass
GeographicRegion
;
}
}
...
...
@@ -164,6 +168,42 @@ namespace Windows {
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
exclusiveto
(
Windows
.
Globalization.GeographicRegion)
,
uuid
(
01
e9a621
-
4
a64
-
4
ed9
-
954
f
-
9
edeb07bd903
)
]
interface
IGeographicRegion
:
IInspectable
{
[
propget
]
HRESULT
Code
(
[
out
,
retval
]
HSTRING
*
value
)
;
[
propget
]
HRESULT
CodeTwoLetter
(
[
out
,
retval
]
HSTRING
*
value
)
;
[
propget
]
HRESULT
CodeThreeLetter
(
[
out
,
retval
]
HSTRING
*
value
)
;
[
propget
]
HRESULT
CodeThreeDigit
(
[
out
,
retval
]
HSTRING
*
value
)
;
[
propget
]
HRESULT
DisplayName
(
[
out
,
retval
]
HSTRING
*
value
)
;
[
propget
]
HRESULT
NativeName
(
[
out
,
retval
]
HSTRING
*
value
)
;
[
propget
]
HRESULT
CurrenciesInUse
(
[
out
,
retval
]
Windows
.
Foundation.Collections.IVectorView<HSTRING>
**
value
)
;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
exclusiveto
(
Windows
.
Globalization.GeographicRegion)
,
uuid
(
53425270
-
77b4
-
426b
-
859
f
-
81
e19d512546
)
]
interface
IGeographicRegionFactory
:
IInspectable
{
HRESULT
CreateGeographicRegion
(
[
in
]
HSTRING
region_code
,
[
out
,
retval
]
Windows
.
Globalization.GeographicRegion
**
result
)
;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
exclusiveto
(
Windows
.
Globalization.GeographicRegion)
,
uuid
(
29
e28974
-
7
ad9
-
4
ef4
-
8799
-
b3b44fadec08
)
]
interface
IGeographicRegionStatics
:
IInspectable
{
HRESULT
IsSupported
(
[
in
]
HSTRING
region_code
,
[
out
,
retval
]
boolean
*
result
)
;
}
[
activatable
(
Windows
.
Globalization.ILanguageFactory
,
Windows
.
Foundation.UniversalApiContract
,
1.0
),
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
marshaling_behavior
(
agile
),
...
...
@@ -179,5 +219,18 @@ namespace Windows {
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
6.0
)
]
interface
Windows
.
Globalization.ILanguage2;
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
10.0
)
]
interface
Windows
.
Globalization.ILanguage3;
}
[
activatable
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
activatable
(
Windows
.
Globalization.IGeographicRegionFactory
,
Windows
.
Foundation.UniversalApiContract
,
1.0
),
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
marshaling_behavior
(
agile
),
static
(
Windows
.
Globalization.IGeographicRegionStatics
,
Windows
.
Foundation.UniversalApiContract
,
1.0
),
threading
(
both
)
]
runtimeclass
GeographicRegion
{
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
default
]
interface
Windows
.
Globalization.IGeographicRegion;
}
}
}
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