Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
e1d2852d
Commit
e1d2852d
authored
Jul 05, 2005
by
Thomas Weidenmueller
Committed by
Alexandre Julliard
Jul 05, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
IsThemeDialogTextureEnabled should have one parameter to match the
prototype in the official headers.
parent
66033f6b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
draw.c
dlls/uxtheme/draw.c
+2
-2
uxtheme.spec
dlls/uxtheme/uxtheme.spec
+1
-1
uxtheme.h
include/uxtheme.h
+1
-1
No files found.
dlls/uxtheme/draw.c
View file @
e1d2852d
...
...
@@ -58,9 +58,9 @@ HRESULT WINAPI EnableThemeDialogTexture(HWND hwnd, DWORD dwFlags)
/***********************************************************************
* IsThemeDialogTextureEnabled (UXTHEME.@)
*/
BOOL
WINAPI
IsThemeDialogTextureEnabled
(
voi
d
)
BOOL
WINAPI
IsThemeDialogTextureEnabled
(
HWND
hwn
d
)
{
TRACE
(
"
\n
"
);
TRACE
(
"
(%p)
\n
"
,
hwnd
);
return
(
dwDialogTextureFlags
&
ETDT_ENABLE
)
&&
!
(
dwDialogTextureFlags
&
ETDT_DISABLE
);
}
...
...
dlls/uxtheme/uxtheme.spec
View file @
e1d2852d
...
...
@@ -86,7 +86,7 @@
@ stdcall IsAppThemed()
@ stdcall IsThemeActive()
@ stdcall IsThemeBackgroundPartiallyTransparent(ptr long long)
@ stdcall IsThemeDialogTextureEnabled()
@ stdcall IsThemeDialogTextureEnabled(
ptr
)
@ stdcall IsThemePartDefined(ptr long long)
@ stdcall OpenThemeData(ptr wstr)
@ stdcall SetThemeAppProperties(long)
...
...
include/uxtheme.h
View file @
e1d2852d
...
...
@@ -165,7 +165,7 @@ HRESULT WINAPI HitTestThemeBackground(HTHEME,HDC,int,int,DWORD,const RECT*,
BOOL
WINAPI
IsAppThemed
(
void
);
BOOL
WINAPI
IsThemeActive
(
void
);
BOOL
WINAPI
IsThemeBackgroundPartiallyTransparent
(
HTHEME
,
int
,
int
);
BOOL
WINAPI
IsThemeDialogTextureEnabled
(
void
);
BOOL
WINAPI
IsThemeDialogTextureEnabled
(
HWND
);
BOOL
WINAPI
IsThemePartDefined
(
HTHEME
,
int
,
int
);
HTHEME
WINAPI
OpenThemeData
(
HWND
,
LPCWSTR
);
void
WINAPI
SetThemeAppProperties
(
DWORD
);
...
...
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