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
fe467cf4
Commit
fe467cf4
authored
Feb 27, 2023
by
Rémi Bernon
Committed by
Alexandre Julliard
Nov 23, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windows.globalization: Stub Windows.Globalization.GeographicRegion runtimeclass.
parent
452f0381
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
167 additions
and
3 deletions
+167
-3
geographic_region.c
dlls/windows.globalization/geographic_region.c
+137
-2
globalization.c
dlls/windows.globalization/tests/globalization.c
+30
-1
No files found.
dlls/windows.globalization/geographic_region.c
View file @
fe467cf4
...
...
@@ -21,6 +21,133 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
locale
);
struct
geographic_region
{
IGeographicRegion
IGeographicRegion_iface
;
LONG
ref
;
};
static
inline
struct
geographic_region
*
impl_from_IGeographicRegion
(
IGeographicRegion
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
struct
geographic_region
,
IGeographicRegion_iface
);
}
static
HRESULT
WINAPI
geographic_region_QueryInterface
(
IGeographicRegion
*
iface
,
REFIID
iid
,
void
**
out
)
{
struct
geographic_region
*
impl
=
impl_from_IGeographicRegion
(
iface
);
TRACE
(
"iface %p, iid %s, out %p.
\n
"
,
iface
,
debugstr_guid
(
iid
),
out
);
if
(
IsEqualGUID
(
iid
,
&
IID_IUnknown
)
||
IsEqualGUID
(
iid
,
&
IID_IInspectable
)
||
IsEqualGUID
(
iid
,
&
IID_IAgileObject
)
||
IsEqualGUID
(
iid
,
&
IID_IGeographicRegion
))
{
IInspectable_AddRef
(
(
*
out
=
&
impl
->
IGeographicRegion_iface
)
);
return
S_OK
;
}
FIXME
(
"%s not implemented, returning E_NOINTERFACE.
\n
"
,
debugstr_guid
(
iid
)
);
*
out
=
NULL
;
return
E_NOINTERFACE
;
}
static
ULONG
WINAPI
geographic_region_AddRef
(
IGeographicRegion
*
iface
)
{
struct
geographic_region
*
impl
=
impl_from_IGeographicRegion
(
iface
);
ULONG
ref
=
InterlockedIncrement
(
&
impl
->
ref
);
TRACE
(
"iface %p, ref %lu.
\n
"
,
iface
,
ref
);
return
ref
;
}
static
ULONG
WINAPI
geographic_region_Release
(
IGeographicRegion
*
iface
)
{
struct
geographic_region
*
impl
=
impl_from_IGeographicRegion
(
iface
);
ULONG
ref
=
InterlockedDecrement
(
&
impl
->
ref
);
TRACE
(
"iface %p, ref %lu.
\n
"
,
iface
,
ref
);
if
(
!
ref
)
free
(
impl
);
return
ref
;
}
static
HRESULT
WINAPI
geographic_region_GetIids
(
IGeographicRegion
*
iface
,
ULONG
*
iid_count
,
IID
**
iids
)
{
FIXME
(
"iface %p, iid_count %p, iids %p stub!
\n
"
,
iface
,
iid_count
,
iids
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
geographic_region_GetRuntimeClassName
(
IGeographicRegion
*
iface
,
HSTRING
*
class_name
)
{
FIXME
(
"iface %p, class_name %p stub!
\n
"
,
iface
,
class_name
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
geographic_region_GetTrustLevel
(
IGeographicRegion
*
iface
,
TrustLevel
*
trust_level
)
{
FIXME
(
"iface %p, trust_level %p stub!
\n
"
,
iface
,
trust_level
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
geographic_region_get_Code
(
IGeographicRegion
*
iface
,
HSTRING
*
value
)
{
FIXME
(
"iface %p stub!
\n
"
,
iface
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
geographic_region_get_CodeTwoLetter
(
IGeographicRegion
*
iface
,
HSTRING
*
value
)
{
FIXME
(
"iface %p stub!
\n
"
,
iface
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
geographic_region_get_CodeThreeLetter
(
IGeographicRegion
*
iface
,
HSTRING
*
value
)
{
FIXME
(
"iface %p stub!
\n
"
,
iface
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
geographic_region_get_CodeThreeDigit
(
IGeographicRegion
*
iface
,
HSTRING
*
value
)
{
FIXME
(
"iface %p stub!
\n
"
,
iface
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
geographic_region_get_DisplayName
(
IGeographicRegion
*
iface
,
HSTRING
*
value
)
{
FIXME
(
"iface %p stub!
\n
"
,
iface
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
geographic_region_get_NativeName
(
IGeographicRegion
*
iface
,
HSTRING
*
value
)
{
FIXME
(
"iface %p stub!
\n
"
,
iface
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
geographic_region_get_CurrenciesInUse
(
IGeographicRegion
*
iface
,
IVectorView_HSTRING
**
value
)
{
FIXME
(
"iface %p stub!
\n
"
,
iface
);
return
E_NOTIMPL
;
}
static
const
struct
IGeographicRegionVtbl
geographic_region_vtbl
=
{
geographic_region_QueryInterface
,
geographic_region_AddRef
,
geographic_region_Release
,
/* IInspectable methods */
geographic_region_GetIids
,
geographic_region_GetRuntimeClassName
,
geographic_region_GetTrustLevel
,
/* IGeographicRegion methods */
geographic_region_get_Code
,
geographic_region_get_CodeTwoLetter
,
geographic_region_get_CodeThreeLetter
,
geographic_region_get_CodeThreeDigit
,
geographic_region_get_DisplayName
,
geographic_region_get_NativeName
,
geographic_region_get_CurrenciesInUse
,
};
struct
geographic_region_factory
{
IActivationFactory
IActivationFactory_iface
;
...
...
@@ -95,8 +222,16 @@ static HRESULT WINAPI activation_factory_GetTrustLevel( IActivationFactory *ifac
static
HRESULT
WINAPI
activation_factory_ActivateInstance
(
IActivationFactory
*
iface
,
IInspectable
**
out
)
{
FIXME
(
"iface %p, out %p stub!
\n
"
,
iface
,
out
);
return
E_NOTIMPL
;
struct
geographic_region
*
region
;
TRACE
(
"iface %p, out %p.
\n
"
,
iface
,
out
);
if
(
!
(
region
=
calloc
(
1
,
sizeof
(
*
region
)
)))
return
E_OUTOFMEMORY
;
region
->
IGeographicRegion_iface
.
lpVtbl
=
&
geographic_region_vtbl
;
region
->
ref
=
1
;
*
out
=
(
IInspectable
*
)
&
region
->
IGeographicRegion_iface
;
return
S_OK
;
}
static
const
struct
IActivationFactoryVtbl
activation_factory_vtbl
=
...
...
dlls/windows.globalization/tests/globalization.c
View file @
fe467cf4
...
...
@@ -314,6 +314,8 @@ static void test_Language(void)
static
void
test_GeographicRegion
(
void
)
{
static
const
WCHAR
*
class_name
=
RuntimeClass_Windows_Globalization_GeographicRegion
;
IGeographicRegionFactory
*
geographic_region_factory
;
IGeographicRegion
*
geographic_region
;
IActivationFactory
*
factory
;
HSTRING
str
;
HRESULT
hr
;
...
...
@@ -334,7 +336,34 @@ static void test_GeographicRegion(void)
check_interface
(
factory
,
&
IID_IUnknown
);
check_interface
(
factory
,
&
IID_IInspectable
);
check_interface
(
factory
,
&
IID_IAgileObject
);
check_interface
(
factory
,
&
IID_IGeographicRegionFactory
);
hr
=
IActivationFactory_ActivateInstance
(
factory
,
(
IInspectable
**
)
&
geographic_region
);
ok
(
hr
==
S_OK
,
"got hr %#lx.
\n
"
,
hr
);
check_interface
(
geographic_region
,
&
IID_IUnknown
);
check_interface
(
geographic_region
,
&
IID_IInspectable
);
check_interface
(
geographic_region
,
&
IID_IAgileObject
);
ref
=
IGeographicRegion_Release
(
geographic_region
);
ok
(
ref
==
0
,
"got ref %ld.
\n
"
,
ref
);
hr
=
IActivationFactory_QueryInterface
(
factory
,
&
IID_IGeographicRegionFactory
,
(
void
**
)
&
geographic_region_factory
);
ok
(
hr
==
S_OK
,
"got hr %#lx.
\n
"
,
hr
);
hr
=
WindowsCreateString
(
L"US"
,
wcslen
(
L"US"
),
&
str
);
ok
(
hr
==
S_OK
,
"got hr %#lx.
\n
"
,
hr
);
hr
=
IGeographicRegionFactory_CreateGeographicRegion
(
geographic_region_factory
,
str
,
&
geographic_region
);
todo_wine
ok
(
hr
==
S_OK
,
"got hr %#lx.
\n
"
,
hr
);
WindowsDeleteString
(
str
);
if
(
hr
==
S_OK
)
{
ref
=
IGeographicRegion_Release
(
geographic_region
);
ok
(
ref
==
0
,
"got ref %ld.
\n
"
,
ref
);
}
ref
=
IGeographicRegionFactory_Release
(
geographic_region_factory
);
ok
(
ref
==
2
,
"got ref %ld.
\n
"
,
ref
);
ref
=
IActivationFactory_Release
(
factory
);
ok
(
ref
==
1
,
"got ref %ld.
\n
"
,
ref
);
...
...
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