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
fb2273be
Commit
fb2273be
authored
Jul 11, 2000
by
Marcus Meissner
Committed by
Alexandre Julliard
Jul 11, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented _vsnprintf by calling wvsnprintfA.
parent
23259ce5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
crtdll.spec
dlls/crtdll/crtdll.spec
+1
-1
crtdll_main.c
dlls/crtdll/crtdll_main.c
+8
-0
No files found.
dlls/crtdll/crtdll.spec
View file @
fb2273be
...
...
@@ -322,7 +322,7 @@ import ntdll
@ cdecl _unlink(str) CRTDLL__unlink
@ stub _unloaddll
@ stub _utime
@
stub
_vsnprintf
@
cdecl _vsnprintf(ptr long ptr ptr) CRTDLL_
_vsnprintf
@ stub _vsnwprintf
@ cdecl _wcsdup(wstr) CRTDLL__wcsdup
@ forward _wcsicmp ntdll._wcsicmp
...
...
dlls/crtdll/crtdll_main.c
View file @
fb2273be
...
...
@@ -940,6 +940,14 @@ INT __cdecl CRTDLL_vsprintf( LPSTR buffer, LPCSTR spec, va_list args )
}
/*********************************************************************
* _vsprintf (CRTDLL.@)
*/
INT
__cdecl
CRTDLL__vsnprintf
(
LPSTR
buffer
,
DWORD
size
,
LPCSTR
spec
,
va_list
args
)
{
return
wvsnprintfA
(
buffer
,
size
,
spec
,
args
);
}
/*********************************************************************
* vswprintf (CRTDLL.501)
*/
INT
__cdecl
CRTDLL_vswprintf
(
LPWSTR
buffer
,
LPCWSTR
spec
,
va_list
args
)
...
...
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