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
731136d8
Commit
731136d8
authored
Oct 18, 2017
by
Sergio Gómez Del Real
Committed by
Alexandre Julliard
Oct 18, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uxtheme: Add a stub for IsCompositionActive().
Signed-off-by:
Sergio Gómez Del Real
<
sdelreal@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
5a9f5470
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
0 deletions
+14
-0
system.c
dlls/uxtheme/system.c
+12
-0
uxtheme.spec
dlls/uxtheme/uxtheme.spec
+1
-0
uxtheme.h
include/uxtheme.h
+1
-0
No files found.
dlls/uxtheme/system.c
View file @
731136d8
...
@@ -562,6 +562,18 @@ BOOL WINAPI IsThemeActive(void)
...
@@ -562,6 +562,18 @@ BOOL WINAPI IsThemeActive(void)
return
bThemeActive
;
return
bThemeActive
;
}
}
/************************************************************
* IsCompositionActive (UXTHEME.@)
*/
BOOL
WINAPI
IsCompositionActive
(
void
)
{
FIXME
(
": stub
\n
"
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
/***********************************************************************
* EnableTheming (UXTHEME.@)
* EnableTheming (UXTHEME.@)
*
*
...
...
dlls/uxtheme/uxtheme.spec
View file @
731136d8
...
@@ -100,6 +100,7 @@
...
@@ -100,6 +100,7 @@
@ stdcall GetWindowTheme(ptr)
@ stdcall GetWindowTheme(ptr)
@ stdcall HitTestThemeBackground(ptr long long long long ptr long int64 ptr)
@ stdcall HitTestThemeBackground(ptr long long long long ptr long int64 ptr)
@ stdcall IsAppThemed()
@ stdcall IsAppThemed()
@ stdcall IsCompositionActive()
@ stdcall IsThemeActive()
@ stdcall IsThemeActive()
@ stdcall IsThemeBackgroundPartiallyTransparent(ptr long long)
@ stdcall IsThemeBackgroundPartiallyTransparent(ptr long long)
@ stdcall IsThemeDialogTextureEnabled(ptr)
@ stdcall IsThemeDialogTextureEnabled(ptr)
...
...
include/uxtheme.h
View file @
731136d8
...
@@ -209,6 +209,7 @@ HTHEME WINAPI GetWindowTheme(HWND);
...
@@ -209,6 +209,7 @@ HTHEME WINAPI GetWindowTheme(HWND);
HRESULT
WINAPI
HitTestThemeBackground
(
HTHEME
,
HDC
,
int
,
int
,
DWORD
,
const
RECT
*
,
HRESULT
WINAPI
HitTestThemeBackground
(
HTHEME
,
HDC
,
int
,
int
,
DWORD
,
const
RECT
*
,
HRGN
,
POINT
,
WORD
*
);
HRGN
,
POINT
,
WORD
*
);
BOOL
WINAPI
IsAppThemed
(
void
);
BOOL
WINAPI
IsAppThemed
(
void
);
BOOL
WINAPI
IsCompositionActive
(
void
);
BOOL
WINAPI
IsThemeActive
(
void
);
BOOL
WINAPI
IsThemeActive
(
void
);
BOOL
WINAPI
IsThemeBackgroundPartiallyTransparent
(
HTHEME
,
int
,
int
);
BOOL
WINAPI
IsThemeBackgroundPartiallyTransparent
(
HTHEME
,
int
,
int
);
BOOL
WINAPI
IsThemeDialogTextureEnabled
(
HWND
);
BOOL
WINAPI
IsThemeDialogTextureEnabled
(
HWND
);
...
...
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