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
4a1ebd73
Commit
4a1ebd73
authored
Apr 25, 2015
by
Mark Harmstone
Committed by
Alexandre Julliard
Apr 27, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add buffered animation functions to uxtheme.h.
parent
85d6a5b9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
0 deletions
+28
-0
uxtheme.h
include/uxtheme.h
+28
-0
No files found.
include/uxtheme.h
View file @
4a1ebd73
...
...
@@ -213,4 +213,32 @@ HDC WINAPI GetBufferedPaintDC(HPAINTBUFFER);
HDC
WINAPI
GetBufferedPaintTargetDC
(
HPAINTBUFFER
);
HRESULT
WINAPI
GetBufferedPaintTargetRect
(
HPAINTBUFFER
,
RECT
*
prc
);
/* double-buffered animation functions */
typedef
HANDLE
HANIMATIONBUFFER
;
typedef
enum
_BP_ANIMATIONSTYLE
{
BPAS_NONE
,
BPAS_LINEAR
,
BPAS_CUBIC
,
BPAS_SINE
}
BP_ANIMATIONSTYLE
;
typedef
struct
_BP_ANIMATIONPARAMS
{
DWORD
cbSize
;
DWORD
dwFlags
;
BP_ANIMATIONSTYLE
style
;
DWORD
dwDuration
;
}
BP_ANIMATIONPARAMS
,
*
PBP_ANIMATIONPARAMS
;
HANIMATIONBUFFER
WINAPI
BeginBufferedAnimation
(
HWND
,
HDC
,
const
RECT
*
,
BP_BUFFERFORMAT
,
BP_PAINTPARAMS
*
,
BP_ANIMATIONPARAMS
*
,
HDC
*
,
HDC
*
);
BOOL
WINAPI
BufferedPaintRenderAnimation
(
HWND
,
HDC
);
HRESULT
WINAPI
BufferedPaintStopAllAnimations
(
HWND
);
HRESULT
WINAPI
EndBufferedAnimation
(
HANIMATIONBUFFER
,
BOOL
);
#endif
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