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
6063b542
Commit
6063b542
authored
Jan 24, 2005
by
Rémi Assailly
Committed by
Alexandre Julliard
Jan 24, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
char -> const char fixes.
parent
74b02586
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
shader.c
dlls/d3d8/shader.c
+1
-1
dinput_main.c
dlls/dinput/dinput_main.c
+1
-1
joystick_linux.c
dlls/dinput/joystick_linux.c
+1
-1
vartest.c
dlls/oleaut32/tests/vartest.c
+1
-1
No files found.
dlls/d3d8/shader.c
View file @
6063b542
...
...
@@ -1627,7 +1627,7 @@ inline static void addline(int* lineNum, char* pgm, char* line)
strcat
(
pgm
,
"
\n
"
);
}
char
*
shift_tab
[]
=
{
static
const
char
*
shift_tab
[]
=
{
"dummy"
,
/* 0 (none) */
"coefmul.x"
,
/* 1 (x2) */
"coefmul.y"
,
/* 2 (x4) */
...
...
dlls/dinput/dinput_main.c
View file @
6063b542
...
...
@@ -195,7 +195,7 @@ HRESULT WINAPI DirectInputCreateW(HINSTANCE hinst, DWORD dwVersion, LPDIRECTINPU
return
0
;
}
static
char
*
_dump_DIDEVTYPE_value
(
DWORD
dwDevType
)
{
static
c
onst
c
har
*
_dump_DIDEVTYPE_value
(
DWORD
dwDevType
)
{
switch
(
dwDevType
)
{
case
0
:
return
"All devices"
;
case
DIDEVTYPE_MOUSE
:
return
"DIDEVTYPE_MOUSE"
;
...
...
dlls/dinput/joystick_linux.c
View file @
6063b542
...
...
@@ -304,7 +304,7 @@ static HRESULT setup_dinput_options(JoystickImpl * device)
int
tokens
=
0
;
int
axis
=
0
;
int
pov
=
0
;
char
*
delim
=
","
;
c
onst
c
har
*
delim
=
","
;
char
*
ptr
;
TRACE
(
"
\"
%s
\"
=
\"
%s
\"\n
"
,
device
->
name
,
buffer
);
...
...
dlls/oleaut32/tests/vartest.c
View file @
6063b542
...
...
@@ -101,7 +101,7 @@ static inline int strcmpW( const WCHAR *str1, const WCHAR *str2 )
}
/* return the string text of a given variant type */
char
*
vtstr
(
int
x
)
static
const
char
*
vtstr
(
int
x
)
{
switch
(
x
)
{
case
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