Implemented _vsnprintf by calling wvsnprintfA.
This commit is contained in:
parent
23259ce5c9
commit
fb2273be7e
|
@ -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
|
||||
|
|
|
@ -939,6 +939,14 @@ INT __cdecl CRTDLL_vsprintf( LPSTR buffer, LPCSTR spec, va_list args )
|
|||
return wvsprintfA( buffer, spec, 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)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue