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
925cd00c
Commit
925cd00c
authored
Jun 04, 2009
by
Andrew Talbot
Committed by
Alexandre Julliard
Jun 05, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Constify some variables.
parent
c0af3a57
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
header.c
dlls/comctl32/header.c
+4
-4
No files found.
dlls/comctl32/header.c
View file @
925cd00c
...
...
@@ -1189,7 +1189,7 @@ HEADER_GetOrderArray(const HEADER_INFO *infoPtr, INT size, LPINT order)
}
static
LRESULT
HEADER_SetOrderArray
(
HEADER_INFO
*
infoPtr
,
INT
size
,
LPINT
order
)
HEADER_SetOrderArray
(
HEADER_INFO
*
infoPtr
,
INT
size
,
const
INT
*
order
)
{
INT
i
;
HEADER_ITEM
*
lpItem
;
...
...
@@ -1400,7 +1400,7 @@ HEADER_SetUnicodeFormat (HEADER_INFO *infoPtr, WPARAM wParam)
static
LRESULT
HEADER_Create
(
HWND
hwnd
,
LPCREATESTRUCTW
lpcs
)
HEADER_Create
(
HWND
hwnd
,
const
CREATESTRUCTW
*
lpcs
)
{
HEADER_INFO
*
infoPtr
;
TEXTMETRICW
tm
;
...
...
@@ -1496,7 +1496,7 @@ HEADER_IsDragDistance(const HEADER_INFO *infoPtr, const POINT *pt)
}
static
LRESULT
HEADER_LButtonDblClk
(
HEADER_INFO
*
infoPtr
,
INT
x
,
INT
y
)
HEADER_LButtonDblClk
(
const
HEADER_INFO
*
infoPtr
,
INT
x
,
INT
y
)
{
POINT
pt
;
UINT
flags
;
...
...
@@ -1923,7 +1923,7 @@ static LRESULT HEADER_SetRedraw(HEADER_INFO *infoPtr, WPARAM wParam, LPARAM lPar
}
static
INT
HEADER_StyleChanged
(
HEADER_INFO
*
infoPtr
,
WPARAM
wStyleType
,
const
LPSTYLESTRUCT
lpss
)
const
STYLESTRUCT
*
lpss
)
{
TRACE
(
"(styletype=%lx, styleOld=0x%08x, styleNew=0x%08x)
\n
"
,
wStyleType
,
lpss
->
styleOld
,
lpss
->
styleNew
);
...
...
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