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
870dda5b
Commit
870dda5b
authored
Dec 14, 1998
by
Marcus Meissner
Committed by
Alexandre Julliard
Dec 14, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
_ultoa implemented.
parent
66da3dc3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
crtdll.c
misc/crtdll.c
+9
-0
crtdll.spec
relay32/crtdll.spec
+1
-1
No files found.
misc/crtdll.c
View file @
870dda5b
...
...
@@ -2045,6 +2045,7 @@ LPSTR __cdecl CRTDLL__strdate (LPSTR date)
{
FIXME
(
crtdll
,
"%p stub
\n
"
,
date
);
return
0
;
}
/*********************************************************************
* strtime (CRTDLL.299)
*/
...
...
@@ -2052,3 +2053,11 @@ LPSTR __cdecl CRTDLL__strtime (LPSTR date)
{
FIXME
(
crtdll
,
"%p stub
\n
"
,
date
);
return
0
;
}
/*********************************************************************
* _ultoa (CRTDLL.311)
*/
LPSTR
__cdecl
CRTDLL__ultoa
(
UINT32
x
,
LPSTR
buf
,
INT32
buflen
)
{
wsnprintf32A
(
buf
,
buflen
,
"%d"
,
x
);
return
buf
;
}
relay32/crtdll.spec
View file @
870dda5b
...
...
@@ -312,7 +312,7 @@ type win32
308 stub _toupper
309 stub _tzname
310 stub _tzset
311
stub
_ultoa
311
cdecl _ultoa(long ptr long) CRTDLL_
_ultoa
312 stub _ultow
313 stub _umask
314 stub _ungetch
...
...
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