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
62545611
Commit
62545611
authored
Mar 19, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Mar 21, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Constify some variables.
parent
307f39c0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
animate.c
dlls/comctl32/animate.c
+5
-5
No files found.
dlls/comctl32/animate.c
View file @
62545611
...
...
@@ -100,7 +100,7 @@ static void ANIMATE_Notify(ANIMATE_INFO *infoPtr, UINT notif)
(
LPARAM
)
infoPtr
->
hwndSelf
);
}
static
BOOL
ANIMATE_LoadResW
(
ANIMATE_INFO
*
infoPtr
,
HINSTANCE
hInst
,
LPWSTR
lpName
)
static
BOOL
ANIMATE_LoadResW
(
ANIMATE_INFO
*
infoPtr
,
HINSTANCE
hInst
,
LP
C
WSTR
lpName
)
{
static
const
WCHAR
aviW
[]
=
{
'A'
,
'V'
,
'I'
,
0
};
HRSRC
hrsrc
;
...
...
@@ -217,7 +217,7 @@ static void ANIMATE_Free(ANIMATE_INFO *infoPtr)
infoPtr
->
transparentColor
=
ANIMATE_COLOR_NONE
;
}
static
void
ANIMATE_TransparentBlt
(
ANIMATE_INFO
*
infoPtr
,
HDC
hdcDest
,
HDC
hdcSource
)
static
void
ANIMATE_TransparentBlt
(
ANIMATE_INFO
const
*
infoPtr
,
HDC
hdcDest
,
HDC
hdcSource
)
{
HDC
hdcMask
;
HBITMAP
hbmMask
;
...
...
@@ -251,8 +251,8 @@ static void ANIMATE_TransparentBlt(ANIMATE_INFO *infoPtr, HDC hdcDest, HDC hdcSo
static
BOOL
ANIMATE_PaintFrame
(
ANIMATE_INFO
*
infoPtr
,
HDC
hDC
)
{
void
*
pBitmapData
;
LPBITMAPINFO
pBitmapInfo
;
void
const
*
pBitmapData
;
BITMAPINFO
const
*
pBitmapInfo
;
HDC
hdcMem
;
HBITMAP
hbmOld
;
int
nOffsetX
=
0
;
...
...
@@ -825,7 +825,7 @@ static LRESULT ANIMATE_Destroy(ANIMATE_INFO *infoPtr)
}
static
BOOL
ANIMATE_EraseBackground
(
ANIMATE_INFO
*
infoPtr
,
HDC
hdc
)
static
BOOL
ANIMATE_EraseBackground
(
ANIMATE_INFO
const
*
infoPtr
,
HDC
hdc
)
{
RECT
rect
;
HBRUSH
hBrush
=
0
;
...
...
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