Author: hbelusca
Date: Wed Jul 27 19:12:35 2016
New Revision: 72021
URL:
http://svn.reactos.org/svn/reactos?rev=72021&view=rev
Log:
[SETUPAPI]: Temporarily remove the error popup since setupapi_winetest pops it out
unexpectedly. We don't lose functionality wrt. what we had before r72008 (or with what
Wine currently has).
CORE-11689
Modified:
trunk/reactos/dll/win32/setupapi/install.c
Modified: trunk/reactos/dll/win32/setupapi/install.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/install…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/install.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/install.c [iso-8859-1] Wed Jul 27 19:12:35 2016
@@ -1577,11 +1577,15 @@
if ( hinf != INVALID_HANDLE_VALUE )
SetupCloseInfFile( hinf );
+#ifdef CORE_11689_IS_FIXED
// TODO: Localize the error string.
if (!ret && !(GlobalSetupFlags & PSPGF_NONINTERACTIVE))
{
MessageBoxW(hwnd, section, L"setupapi.dll: An error happened...",
MB_ICONERROR | MB_OK);
}
+#else
+ #pragma message("We need to understand why setupapi_winetest fails before
reenabling the error popup in InstallHinfSectionW. CORE-11689")
+#endif
}