CVS: winex/include/wine unicode.h,1.2,1.3

[email protected] 14 Dec 2007 20:19:48 -0000
Newsgroups gmane.comp.emulators.winex.cvs
Message-ID <[email protected]>
Subject: winex/include/wine unicode.h,1.2,1.3Update of /var/lib/cvsd/cvsroot/winex/include/wine
In directory agravaine:/tmp/cvs-serv15460/include/wine

Modified Files:
	unicode.h 
Log Message:
Moved the wide-character sprintf implementations in ntdll and msvcrt into
libwine_unicode.


Index: unicode.h
===================================================================
RCS file: /var/lib/cvsd/cvsroot/winex/include/wine/unicode.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- unicode.h	25 Aug 2005 19:37:32 -0000	1.2
+++ unicode.h	14 Dec 2007 20:19:46 -0000	1.3
@@ -235,6 +235,10 @@
 extern WCHAR *strstrW( const WCHAR *str, const WCHAR *sub );
 extern long int strtolW( const WCHAR *str, WCHAR **end, int base );
 extern unsigned long int strtoulW( const WCHAR *str, WCHAR **end, int base );
+extern int sprintfW( WCHAR *str, const WCHAR *format, ... );
+extern int snprintfW( WCHAR *str, unsigned int len, const WCHAR *format, ... );
+extern int vsprintfW( WCHAR* str, const WCHAR* format, va_list args );
+extern int vsnprintfW( WCHAR *str, unsigned int len, const WCHAR *format, va_list valist );
 
 static inline long int atolW( const WCHAR *str )
 {