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
bdf4aff6
Commit
bdf4aff6
authored
Mar 11, 2004
by
Hans Leidekker
Committed by
Alexandre Julliard
Mar 11, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
_wto{l,i,i64} parameters are const.
parent
cf4c3348
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
wcstring.c
dlls/ntdll/wcstring.c
+3
-3
No files found.
dlls/ntdll/wcstring.c
View file @
bdf4aff6
...
...
@@ -669,7 +669,7 @@ LPWSTR __cdecl _i64tow(
* No check is made for value overflow, only the lower 32 bits are assigned.
* If str is NULL it crashes, as the native function does.
*/
LONG
__cdecl
_wtol
(
LPWSTR
str
)
LONG
__cdecl
_wtol
(
LP
C
WSTR
str
)
{
ULONG
RunningTotal
=
0
;
char
bMinus
=
0
;
...
...
@@ -710,7 +710,7 @@ LONG __cdecl _wtol( LPWSTR str )
* No check is made for value overflow, only the lower 32 bits are assigned.
* If str is NULL it crashes, as the native function does.
*/
int
__cdecl
_wtoi
(
LPWSTR
str
)
int
__cdecl
_wtoi
(
LP
C
WSTR
str
)
{
return
_wtol
(
str
);
}
...
...
@@ -732,7 +732,7 @@ int __cdecl _wtoi( LPWSTR str )
* No check is made for value overflow, only the lower 64 bits are assigned.
* If str is NULL it crashes, as the native function does.
*/
LONGLONG
__cdecl
_wtoi64
(
LPWSTR
str
)
LONGLONG
__cdecl
_wtoi64
(
LP
C
WSTR
str
)
{
ULONGLONG
RunningTotal
=
0
;
char
bMinus
=
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