From 9a4fa2716b9219ce39aa648029bbc4ffb0f167d3 Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Sun, 20 Jan 2008 20:29:42 +0000 Subject: [PATCH] - Add swprintf prototype, since oleaut32 needs it. svn path=/trunk/; revision=31909 --- reactos/include/reactos/wine/unicode.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/reactos/include/reactos/wine/unicode.h b/reactos/include/reactos/wine/unicode.h index 4d73c6f349f..17940fb1103 100644 --- a/reactos/include/reactos/wine/unicode.h +++ b/reactos/include/reactos/wine/unicode.h @@ -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;