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
28613fcd
Commit
28613fcd
authored
Jan 04, 2018
by
Louis Lenders
Committed by
Alexandre Julliard
Jan 26, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uxtheme: Add stub for SetWindowThemeAttribute.
Signed-off-by:
Louis Lenders
<
xerox.xerox2000x@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
bdb048a5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletion
+14
-1
system.c
dlls/uxtheme/system.c
+10
-0
uxtheme.spec
dlls/uxtheme/uxtheme.spec
+1
-0
uxtheme.h
include/uxtheme.h
+3
-1
No files found.
dlls/uxtheme/system.c
View file @
28613fcd
...
...
@@ -721,6 +721,16 @@ HRESULT WINAPI SetWindowTheme(HWND hwnd, LPCWSTR pszSubAppName,
}
/***********************************************************************
* SetWindowThemeAttribute (UXTHEME.@)
*/
HRESULT
WINAPI
SetWindowThemeAttribute
(
HWND
hwnd
,
enum
WINDOWTHEMEATTRIBUTETYPE
type
,
PVOID
attribute
,
DWORD
size
)
{
FIXME
(
"(%p,%d,%p,%d): stub
\n
"
,
hwnd
,
type
,
attribute
,
size
);
return
E_NOTIMPL
;
}
/***********************************************************************
* GetCurrentThemeName (UXTHEME.@)
*/
HRESULT
WINAPI
GetCurrentThemeName
(
LPWSTR
pszThemeFileName
,
int
dwMaxNameChars
,
...
...
dlls/uxtheme/uxtheme.spec
View file @
28613fcd
...
...
@@ -108,3 +108,4 @@
@ stdcall OpenThemeData(ptr wstr)
@ stdcall SetThemeAppProperties(long)
@ stdcall SetWindowTheme(ptr wstr wstr)
@ stdcall SetWindowThemeAttribute(ptr long ptr long)
include/uxtheme.h
View file @
28613fcd
...
...
@@ -206,6 +206,8 @@ HTHEME WINAPI GetWindowTheme(HWND);
#define OTD_NONCLIENT 0x0002
#define OTD_VALIDBITS (OTD_FORCE_RECT_SIZING | OTD_NONCLIENT)
enum
WINDOWTHEMEATTRIBUTETYPE
{
WTA_NONCLIENT
=
1
};
HRESULT
WINAPI
HitTestThemeBackground
(
HTHEME
,
HDC
,
int
,
int
,
DWORD
,
const
RECT
*
,
HRGN
,
POINT
,
WORD
*
);
BOOL
WINAPI
IsAppThemed
(
void
);
...
...
@@ -218,7 +220,7 @@ HTHEME WINAPI OpenThemeData(HWND,LPCWSTR);
HTHEME
WINAPI
OpenThemeDataEx
(
HWND
,
LPCWSTR
,
DWORD
);
void
WINAPI
SetThemeAppProperties
(
DWORD
);
HRESULT
WINAPI
SetWindowTheme
(
HWND
,
LPCWSTR
,
LPCWSTR
);
HRESULT
WINAPI
SetWindowThemeAttribute
(
HWND
,
enum
WINDOWTHEMEATTRIBUTETYPE
,
PVOID
,
DWORD
);
/* Double-buffered Drawing API */
...
...
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