From dcc20b8f3cf352675b5ca50f87eb199c7d60bf58 Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Sun, 20 Jan 2008 21:33:56 +0000 Subject: [PATCH] - Fix warnings. svn path=/trunk/; revision=31911 --- reactos/dll/win32/shell32/recyclebin.c | 1 + reactos/include/reactos/wine/unicode.h | 2 ++ 2 files changed, 3 insertions(+) diff --git a/reactos/dll/win32/shell32/recyclebin.c b/reactos/dll/win32/shell32/recyclebin.c index 92efbb88581..7d2d9fc6816 100644 --- a/reactos/dll/win32/shell32/recyclebin.c +++ b/reactos/dll/win32/shell32/recyclebin.c @@ -35,6 +35,7 @@ #include "shlwapi.h" #include "shlobj.h" #include "shresdef.h" +#include "pidl.h" #include "wine/debug.h" #include "shell32_main.h" diff --git a/reactos/include/reactos/wine/unicode.h b/reactos/include/reactos/wine/unicode.h index 432fa3b4900..dd6bd785e9b 100644 --- a/reactos/include/reactos/wine/unicode.h +++ b/reactos/include/reactos/wine/unicode.h @@ -52,6 +52,8 @@ #endif #endif /* defined __VALIST */ +int __cdecl _wtoi (const wchar_t *); +long __cdecl _wtol (const wchar_t *); 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);