Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lorenzo Ferrillo
wine
Commits
a88722ab
Commit
a88722ab
authored
9 years ago
by
Mark Harmstone
Committed by
Alexandre Julliard
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
uxtheme: Stub out buffered animation functions.
parent
e468f15d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/uxtheme/buffer.c
+44
-0
44 additions, 0 deletions
dlls/uxtheme/buffer.c
dlls/uxtheme/uxtheme.spec
+4
-0
4 additions, 0 deletions
dlls/uxtheme/uxtheme.spec
with
48 additions
and
0 deletions
dlls/uxtheme/buffer.c
+
44
−
0
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
;
}
This diff is collapsed.
Click to expand it.
dlls/uxtheme/uxtheme.spec
+
4
−
0
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)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment