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
d5aebbe6
Commit
d5aebbe6
authored
Nov 19, 2001
by
Francois Gouget
Committed by
Alexandre Julliard
Nov 19, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
A few typos.
parent
924aae8d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
16 deletions
+16
-16
linux.c
dlls/dinput/joystick/linux.c
+1
-1
url.c
dlls/shlwapi/url.c
+14
-14
process.h
include/msvcrt/process.h
+1
-1
No files found.
dlls/dinput/joystick/linux.c
View file @
d5aebbe6
...
...
@@ -265,7 +265,7 @@ static void joy_polldev(JoystickAImpl *This) {
This
->
js
.
lZ
=
map_axis
(
jse
.
value
);
break
;
default
:
FIXME
(
"more th
e
n 3 axes (%d) not handled!
\n
"
,
jse
.
number
);
FIXME
(
"more th
a
n 3 axes (%d) not handled!
\n
"
,
jse
.
number
);
break
;
}
}
...
...
dlls/shlwapi/url.c
View file @
d5aebbe6
...
...
@@ -356,7 +356,7 @@ HRESULT WINAPI UrlCanonicalizeW(LPCWSTR pszUrl, LPWSTR pszCanonicalized,
EscapeFlags
&=
~
URL_ESCAPE_UNSAFE
;
hr
=
UrlEscapeW
(
lpszUrlCpy
,
pszCanonicalized
,
pcchCanonicalized
,
EscapeFlags
);
}
else
{
/* No escap
p
ing needed, just copy the string */
}
else
{
/* No escaping needed, just copy the string */
nLen
=
lstrlenW
(
lpszUrlCpy
);
if
(
nLen
<
*
pcchCanonicalized
)
memcpy
(
pszCanonicalized
,
lpszUrlCpy
,
(
nLen
+
1
)
*
sizeof
(
WCHAR
));
...
...
@@ -712,7 +712,7 @@ HRESULT WINAPI UrlEscapeA(
{
LPCSTR
src
;
DWORD
needed
=
0
,
ret
;
BOOL
stop_escap
p
ing
=
FALSE
;
BOOL
stop_escaping
=
FALSE
;
char
next
[
3
],
*
dst
=
pszEscaped
;
char
hex
[]
=
"0123456789ABCDEF"
;
INT
len
;
...
...
@@ -741,9 +741,9 @@ HRESULT WINAPI UrlEscapeA(
if
(
!
(
dwFlags
&
URL_ESCAPE_SEGMENT_ONLY
)
&&
(
dwFlags
&
URL_DONT_ESCAPE_EXTRA_INFO
)
&&
(
*
src
==
'#'
||
*
src
==
'?'
))
stop_escap
p
ing
=
TRUE
;
stop_escaping
=
TRUE
;
if
(
URL_NeedEscapeA
(
*
src
,
dwFlags
)
&&
stop_escap
p
ing
==
FALSE
)
{
if
(
URL_NeedEscapeA
(
*
src
,
dwFlags
)
&&
stop_escaping
==
FALSE
)
{
/* TRACE("escaping %c\n", *src); */
next
[
0
]
=
'%'
;
next
[
1
]
=
hex
[(
*
src
>>
4
)
&
0xf
];
...
...
@@ -786,7 +786,7 @@ HRESULT WINAPI UrlEscapeW(
{
LPCWSTR
src
;
DWORD
needed
=
0
,
ret
;
BOOL
stop_escap
p
ing
=
FALSE
;
BOOL
stop_escaping
=
FALSE
;
WCHAR
next
[
5
],
*
dst
=
pszEscaped
;
CHAR
hex
[]
=
"0123456789ABCDEF"
;
INT
len
;
...
...
@@ -815,14 +815,14 @@ HRESULT WINAPI UrlEscapeW(
/*
* if(!(dwFlags & URL_ESCAPE_SPACES_ONLY) &&
* (*src == L'#' || *src == L'?'))
* stop_escap
p
ing = TRUE;
* stop_escaping = TRUE;
*/
if
(
!
(
dwFlags
&
URL_ESCAPE_SEGMENT_ONLY
)
&&
(
dwFlags
&
URL_DONT_ESCAPE_EXTRA_INFO
)
&&
(
*
src
==
L'#'
||
*
src
==
L'?'
))
stop_escap
p
ing
=
TRUE
;
stop_escaping
=
TRUE
;
if
(
URL_NeedEscapeW
(
*
src
,
dwFlags
)
&&
stop_escap
p
ing
==
FALSE
)
{
if
(
URL_NeedEscapeW
(
*
src
,
dwFlags
)
&&
stop_escaping
==
FALSE
)
{
/* TRACE("escaping %c\n", *src); */
next
[
0
]
=
L'%'
;
/*
...
...
@@ -891,7 +891,7 @@ HRESULT WINAPI UrlUnescapeA(
LPCSTR
src
;
HRESULT
ret
;
DWORD
needed
;
BOOL
stop_unescap
p
ing
=
FALSE
;
BOOL
stop_unescaping
=
FALSE
;
TRACE
(
"(%s, %p, %p, 0x%08lx)
\n
"
,
debugstr_a
(
pszUrl
),
pszUnescaped
,
pcchUnescaped
,
dwFlags
);
...
...
@@ -904,10 +904,10 @@ HRESULT WINAPI UrlUnescapeA(
for
(
src
=
pszUrl
,
needed
=
0
;
*
src
;
src
++
,
needed
++
)
{
if
(
dwFlags
&
URL_DONT_UNESCAPE_EXTRA_INFO
&&
(
*
src
==
'#'
||
*
src
==
'?'
))
{
stop_unescap
p
ing
=
TRUE
;
stop_unescaping
=
TRUE
;
next
=
*
src
;
}
else
if
(
*
src
==
'%'
&&
isxdigit
(
*
(
src
+
1
))
&&
isxdigit
(
*
(
src
+
2
))
&&
stop_unescap
p
ing
==
FALSE
)
{
&&
stop_unescaping
==
FALSE
)
{
INT
ih
;
char
buf
[
3
];
memcpy
(
buf
,
src
+
1
,
2
);
...
...
@@ -955,7 +955,7 @@ HRESULT WINAPI UrlUnescapeW(
LPCWSTR
src
;
HRESULT
ret
;
DWORD
needed
;
BOOL
stop_unescap
p
ing
=
FALSE
;
BOOL
stop_unescaping
=
FALSE
;
TRACE
(
"(%s, %p, %p, 0x%08lx)
\n
"
,
debugstr_w
(
pszUrl
),
pszUnescaped
,
pcchUnescaped
,
dwFlags
);
...
...
@@ -968,10 +968,10 @@ HRESULT WINAPI UrlUnescapeW(
for
(
src
=
pszUrl
,
needed
=
0
;
*
src
;
src
++
,
needed
++
)
{
if
(
dwFlags
&
URL_DONT_UNESCAPE_EXTRA_INFO
&&
(
*
src
==
L'#'
||
*
src
==
L'?'
))
{
stop_unescap
p
ing
=
TRUE
;
stop_unescaping
=
TRUE
;
next
=
*
src
;
}
else
if
(
*
src
==
L'%'
&&
isxdigitW
(
*
(
src
+
1
))
&&
isxdigitW
(
*
(
src
+
2
))
&&
stop_unescap
p
ing
==
FALSE
)
{
&&
stop_unescaping
==
FALSE
)
{
INT
ih
;
WCHAR
buf
[
3
];
memcpy
(
buf
,
src
+
1
,
2
*
sizeof
(
WCHAR
));
...
...
include/msvcrt/process.h
View file @
d5aebbe6
...
...
@@ -56,7 +56,7 @@ int _spawnlp(int,const char*,const char*,...);
int
_spawnlpe
(
int
,
const
char
*
,
const
char
*
,...);
int
_spawnv
(
int
,
const
char
*
,
const
char
*
const
*
);
int
_spawnve
(
int
,
const
char
*
,
const
char
*
const
*
,
const
char
*
const
*
);
int
_spawnvp
(
int
,
const
char
*
,
const
char
*
const
*
);
int
_spawnvp
(
int
,
const
char
*
,
const
char
*
const
*
);
int
_spawnvpe
(
int
,
const
char
*
,
const
char
*
const
*
,
const
char
*
const
*
);
void
MSVCRT
(
_c_exit
)(
void
);
...
...
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