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
7deaadef
Commit
7deaadef
authored
Mar 22, 2023
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Mar 24, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windows.ui: Use DEFINE_IINSPECTABLE for IUISettings3.
parent
c1a9f4ae
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
40 deletions
+1
-40
uisettings.c
dlls/windows.ui/uisettings.c
+1
-40
No files found.
dlls/windows.ui/uisettings.c
View file @
7deaadef
...
@@ -36,11 +36,6 @@ static inline struct uisettings *impl_from_IUISettings( IUISettings *iface )
...
@@ -36,11 +36,6 @@ static inline struct uisettings *impl_from_IUISettings( IUISettings *iface )
return
CONTAINING_RECORD
(
iface
,
struct
uisettings
,
IUISettings_iface
);
return
CONTAINING_RECORD
(
iface
,
struct
uisettings
,
IUISettings_iface
);
}
}
static
inline
struct
uisettings
*
impl_from_IUISettings3
(
IUISettings3
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
struct
uisettings
,
IUISettings3_iface
);
}
static
HRESULT
WINAPI
uisettings_QueryInterface
(
IUISettings
*
iface
,
REFIID
iid
,
void
**
out
)
static
HRESULT
WINAPI
uisettings_QueryInterface
(
IUISettings
*
iface
,
REFIID
iid
,
void
**
out
)
{
{
struct
uisettings
*
impl
=
impl_from_IUISettings
(
iface
);
struct
uisettings
*
impl
=
impl_from_IUISettings
(
iface
);
...
@@ -255,41 +250,7 @@ static const struct IUISettings2Vtbl uisettings2_vtbl =
...
@@ -255,41 +250,7 @@ static const struct IUISettings2Vtbl uisettings2_vtbl =
uisettings2_remove_TextScaleFactorChanged
uisettings2_remove_TextScaleFactorChanged
};
};
static
HRESULT
WINAPI
uisettings3_QueryInterface
(
IUISettings3
*
iface
,
REFIID
iid
,
void
**
out
)
DEFINE_IINSPECTABLE
(
uisettings3
,
IUISettings3
,
struct
uisettings
,
IUISettings_iface
);
{
struct
uisettings
*
impl
=
impl_from_IUISettings3
(
iface
);
return
uisettings_QueryInterface
(
&
impl
->
IUISettings_iface
,
iid
,
out
);
}
static
ULONG
WINAPI
uisettings3_AddRef
(
IUISettings3
*
iface
)
{
struct
uisettings
*
impl
=
impl_from_IUISettings3
(
iface
);
return
uisettings_AddRef
(
&
impl
->
IUISettings_iface
);
}
static
ULONG
WINAPI
uisettings3_Release
(
IUISettings3
*
iface
)
{
struct
uisettings
*
impl
=
impl_from_IUISettings3
(
iface
);
return
uisettings_Release
(
&
impl
->
IUISettings_iface
);
}
static
HRESULT
WINAPI
uisettings3_GetIids
(
IUISettings3
*
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
uisettings3_GetRuntimeClassName
(
IUISettings3
*
iface
,
HSTRING
*
class_name
)
{
FIXME
(
"iface %p, class_name %p stub!
\n
"
,
iface
,
class_name
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
uisettings3_GetTrustLevel
(
IUISettings3
*
iface
,
TrustLevel
*
trust_level
)
{
FIXME
(
"iface %p, trust_level %p stub!
\n
"
,
iface
,
trust_level
);
return
E_NOTIMPL
;
}
static
DWORD
get_app_theme
(
void
)
static
DWORD
get_app_theme
(
void
)
{
{
...
...
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