- Add swprintf prototype, since oleaut32 needs it.

svn path=/trunk/; revision=31909
This commit is contained in:
Aleksey Bragin 2008-01-20 20:29:42 +00:00
parent 68e04f0711
commit 9a4fa2716b

View file

@ -44,6 +44,8 @@
#define WINE_UNICODE_API __attribute__((dllimport))
#endif
int __cdecl swprintf (wchar_t*, const wchar_t*, ...);
static __inline WCHAR *strpbrkW( const WCHAR *str, const WCHAR *accept )
{
for ( ; *str; str++) if (strchrW( accept, *str )) return (WCHAR *)str;