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
2b36f195
Commit
2b36f195
authored
Apr 30, 2015
by
Mark Harmstone
Committed by
Alexandre Julliard
May 01, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uxtheme: Stub out GetThemeTransitionDuration.
parent
23f0e970
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
0 deletions
+14
-0
metric.c
dlls/uxtheme/metric.c
+12
-0
uxtheme.spec
dlls/uxtheme/uxtheme.spec
+1
-0
uxtheme.h
include/uxtheme.h
+1
-0
No files found.
dlls/uxtheme/metric.c
View file @
2b36f195
...
...
@@ -223,3 +223,15 @@ HRESULT WINAPI GetThemeSysString(HTHEME hTheme, int iStringID,
return
MSSTYLES_GetPropertyString
(
tp
,
pszStringBuff
,
cchMaxStringChars
);
return
E_PROP_ID_UNSUPPORTED
;
}
/***********************************************************************
* GetThemeTransitionDuration (UXTHEME.@)
*/
HRESULT
WINAPI
GetThemeTransitionDuration
(
HTHEME
hTheme
,
int
iPartId
,
int
iStateIdFrom
,
int
iStateIdTo
,
int
iPropId
,
DWORD
*
pdwDuration
)
{
FIXME
(
"(%p, %u, %u, %u, %u, %p) stub
\n
"
,
hTheme
,
iPartId
,
iStateIdFrom
,
iStateIdTo
,
iPropId
,
pdwDuration
);
return
E_NOTIMPL
;
}
dlls/uxtheme/uxtheme.spec
View file @
2b36f195
...
...
@@ -91,6 +91,7 @@
@ stdcall GetThemeSysString(ptr long wstr long)
@ stdcall GetThemeTextExtent(ptr ptr long long wstr long long ptr ptr)
@ stdcall GetThemeTextMetrics(ptr ptr long long ptr)
@ stdcall GetThemeTransitionDuration(ptr long long long long ptr)
@ stdcall GetWindowTheme(ptr)
@ stdcall HitTestThemeBackground(ptr long long long long ptr long int64 ptr)
@ stdcall IsAppThemed()
...
...
include/uxtheme.h
View file @
2b36f195
...
...
@@ -146,6 +146,7 @@ HRESULT WINAPI GetThemeSysString(HTHEME,int,LPWSTR,int);
HRESULT
WINAPI
GetThemeTextExtent
(
HTHEME
,
HDC
,
int
,
int
,
LPCWSTR
,
int
,
DWORD
,
const
RECT
*
,
RECT
*
);
HRESULT
WINAPI
GetThemeTextMetrics
(
HTHEME
,
HDC
,
int
,
int
,
TEXTMETRICW
*
);
HRESULT
WINAPI
GetThemeTransitionDuration
(
HTHEME
,
int
,
int
,
int
,
int
,
DWORD
*
);
HTHEME
WINAPI
GetWindowTheme
(
HWND
);
#define HTTB_BACKGROUNDSEG 0x0000
...
...
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