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);