Author: fireball Date: Mon Jan 21 00:24:32 2008 New Revision: 31910
URL: http://svn.reactos.org/svn/reactos?rev=31910&view=rev Log: - Fix warnings.
Modified: trunk/reactos/dll/win32/shell32/shell32_main.h trunk/reactos/include/reactos/wine/unicode.h
Modified: trunk/reactos/dll/win32/shell32/shell32_main.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/shell32_m... ============================================================================== --- trunk/reactos/dll/win32/shell32/shell32_main.h (original) +++ trunk/reactos/dll/win32/shell32/shell32_main.h Mon Jan 21 00:24:32 2008 @@ -246,4 +246,5 @@ HPROPSHEETPAGE SH_CreatePropertySheetPage(LPSTR resname, DLGPROC dlgproc, LPARAM lParam, LPWSTR szTitle); BOOL SH_ShowDriveProperties(WCHAR * drive); BOOL SH_ShowRecycleBinProperties(WCHAR sDrive); +BOOL SH_ShowPropertiesDialog(WCHAR * lpf); #endif
Modified: trunk/reactos/include/reactos/wine/unicode.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/reactos/wine/unicod... ============================================================================== --- trunk/reactos/include/reactos/wine/unicode.h (original) +++ trunk/reactos/include/reactos/wine/unicode.h Mon Jan 21 00:24:32 2008 @@ -44,7 +44,17 @@ #define WINE_UNICODE_API __attribute__((dllimport)) #endif
+#ifndef __VALIST +#ifdef __GNUC__ +#define __VALIST __gnuc_va_list +#else +#define __VALIST char* +#endif +#endif /* defined __VALIST */ + int __cdecl swprintf (wchar_t*, const wchar_t*, ...); +int __cdecl _snwprintf (wchar_t*, size_t, const wchar_t*, ...); +int __cdecl _vsnwprintf (wchar_t*, size_t, const wchar_t*, __VALIST);
static __inline WCHAR *strpbrkW( const WCHAR *str, const WCHAR *accept ) {