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
a88722ab
Commit
a88722ab
authored
May 11, 2015
by
Mark Harmstone
Committed by
Alexandre Julliard
May 12, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uxtheme: Stub out buffered animation functions.
parent
e468f15d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
48 additions
and
0 deletions
+48
-0
buffer.c
dlls/uxtheme/buffer.c
+44
-0
uxtheme.spec
dlls/uxtheme/uxtheme.spec
+4
-0
No files found.
dlls/uxtheme/buffer.c
View file @
a88722ab
...
...
@@ -136,3 +136,47 @@ HRESULT WINAPI GetBufferedPaintTargetRect(HPAINTBUFFER hBufferedPaint, RECT *prc
FIXME
(
"Stub (%p %p)
\n
"
,
hBufferedPaint
,
prc
);
return
E_NOTIMPL
;
}
/***********************************************************************
* BeginBufferedAnimation (UXTHEME.@)
*/
HANIMATIONBUFFER
WINAPI
BeginBufferedAnimation
(
HWND
hwnd
,
HDC
hdcTarget
,
const
RECT
*
rcTarget
,
BP_BUFFERFORMAT
dwFormat
,
BP_PAINTPARAMS
*
pPaintParams
,
BP_ANIMATIONPARAMS
*
pAnimationParams
,
HDC
*
phdcFrom
,
HDC
*
phdcTo
)
{
FIXME
(
"Stub (%p %p %p %u %p %p %p %p)
\n
"
,
hwnd
,
hdcTarget
,
rcTarget
,
dwFormat
,
pPaintParams
,
pAnimationParams
,
phdcFrom
,
phdcTo
);
return
NULL
;
}
/***********************************************************************
* BufferedPaintRenderAnimation (UXTHEME.@)
*/
BOOL
WINAPI
BufferedPaintRenderAnimation
(
HWND
hwnd
,
HDC
hdcTarget
)
{
FIXME
(
"Stub (%p %p)
\n
"
,
hwnd
,
hdcTarget
);
return
FALSE
;
}
/***********************************************************************
* BufferedPaintStopAllAnimations (UXTHEME.@)
*/
HRESULT
WINAPI
BufferedPaintStopAllAnimations
(
HWND
hwnd
)
{
FIXME
(
"Stub (%p)
\n
"
,
hwnd
);
return
E_NOTIMPL
;
}
/***********************************************************************
* EndBufferedAnimation (UXTHEME.@)
*/
HRESULT
WINAPI
EndBufferedAnimation
(
HANIMATIONBUFFER
hbpAnimation
,
BOOL
fUpdateTarget
)
{
FIXME
(
"Stub (%p %u)
\n
"
,
hbpAnimation
,
fUpdateTarget
);
return
E_NOTIMPL
;
}
dlls/uxtheme/uxtheme.spec
View file @
a88722ab
...
...
@@ -43,10 +43,13 @@
63 stub -noname MarkSelection
# Standard functions
@ stdcall BeginBufferedAnimation(ptr ptr ptr long ptr ptr ptr ptr)
@ stdcall BeginBufferedPaint(ptr ptr long ptr ptr)
@ stdcall BufferedPaintClear(ptr ptr)
@ stdcall BufferedPaintInit()
@ stdcall BufferedPaintRenderAnimation(ptr ptr)
@ stdcall BufferedPaintSetAlpha(ptr ptr long)
@ stdcall BufferedPaintStopAllAnimations(ptr)
@ stdcall BufferedPaintUnInit()
@ stdcall CloseThemeData(ptr)
@ stdcall DrawThemeBackground(ptr ptr long long ptr ptr)
...
...
@@ -57,6 +60,7 @@
@ stdcall DrawThemeText(ptr ptr long long wstr long long long ptr)
@ stdcall EnableThemeDialogTexture(ptr long)
@ stdcall EnableTheming(long)
@ stdcall EndBufferedAnimation(ptr long)
@ stdcall EndBufferedPaint(ptr long)
@ stdcall GetBufferedPaintBits(ptr ptr ptr)
@ stdcall GetBufferedPaintDC(ptr)
...
...
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