Removed implementation of _ultow since it is forwarded to NTDLL in the
.spec file.
This commit is contained in:
parent
cd6b8cadce
commit
6ac110836b
|
@ -373,14 +373,3 @@ WCHAR* _ltow(long value,WCHAR* out,int base)
|
|||
return out;
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* _ultow (MSVCRT.@)
|
||||
*/
|
||||
WCHAR* _ultow(unsigned long value,WCHAR* out,int base)
|
||||
{
|
||||
char buf[128];
|
||||
_ultoa(value, buf, base);
|
||||
MultiByteToWideChar (CP_ACP, MB_PRECOMPOSED, buf, -1, out, 128);
|
||||
return out;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue