- Fix warnings.

svn path=/trunk/; revision=31910
This commit is contained in:
Aleksey Bragin 2008-01-20 21:24:32 +00:00
parent 9a4fa2716b
commit 0d639bb4b8
2 changed files with 11 additions and 0 deletions

View file

@ -246,4 +246,5 @@ INT_PTR CALLBACK SH_FileVersionDlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, L
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

View file

@ -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 )
{