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
21bcfd72
Commit
21bcfd72
authored
Nov 28, 2006
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Nov 28, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Make some data const.
parent
924f73b8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
cursoricon.c
dlls/user32/cursoricon.c
+1
-1
spy.c
dlls/user32/spy.c
+1
-1
static.c
dlls/user32/static.c
+1
-1
No files found.
dlls/user32/cursoricon.c
View file @
21bcfd72
...
...
@@ -130,7 +130,7 @@ static CRITICAL_SECTION_DEBUG critsect_debug =
};
static
CRITICAL_SECTION
IconCrst
=
{
&
critsect_debug
,
-
1
,
0
,
0
,
0
,
0
};
static
WORD
ICON_HOTSPOT
=
0x4242
;
static
const
WORD
ICON_HOTSPOT
=
0x4242
;
/***********************************************************************
...
...
dlls/user32/spy.c
View file @
21bcfd72
...
...
@@ -1567,7 +1567,7 @@ static const USER_MSG propsht_array[] = {
USM
(
PSM_SETTITLEW
,
0
),
USM
(
PSM_SETFINISHTEXTW
,
0
),
{
0
,
0
,
0
}
};
const
WCHAR
PropSheetInfoStr
[]
=
static
const
WCHAR
PropSheetInfoStr
[]
=
{
'P'
,
'r'
,
'o'
,
'p'
,
'e'
,
'r'
,
't'
,
'y'
,
'S'
,
'h'
,
'e'
,
'e'
,
't'
,
'I'
,
'n'
,
'f'
,
'o'
,
0
};
static
const
USER_MSG
updown_array
[]
=
{
...
...
dlls/user32/static.c
View file @
21bcfd72
...
...
@@ -73,7 +73,7 @@ static COLORREF color_3dshadow, color_3ddkshadow, color_3dhighlight;
typedef
void
(
*
pfPaint
)(
HWND
hwnd
,
HDC
hdc
,
DWORD
style
);
static
pfPaint
staticPaintFunc
[
SS_TYPEMASK
+
1
]
=
static
const
pfPaint
staticPaintFunc
[
SS_TYPEMASK
+
1
]
=
{
STATIC_PaintTextfn
,
/* SS_LEFT */
STATIC_PaintTextfn
,
/* SS_CENTER */
...
...
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