Removed implementation of _ultow since it is forwarded to NTDLL in the

.spec file.
This commit is contained in:
Patrik Stridvall 2001-06-19 03:44:39 +00:00 committed by Alexandre Julliard
parent cd6b8cadce
commit 6ac110836b
1 changed files with 0 additions and 11 deletions

View File

@ -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;
}