[APPHELP] Set debug level in case of parse failure

This commit is contained in:
Mark Jansen 2018-02-06 19:32:26 +01:00
parent 4b8f53c9e9
commit 0dd71438a4
No known key found for this signature in database
GPG key ID: B39240EE84BEAE8B

View file

@ -4,7 +4,7 @@
* PURPOSE: apphelp entrypoint / generic interface functions
* COPYRIGHT: Copyright 2011 André Hentschel
* Copyright 2013 Mislav Blaževic
* Copyright 2015-2017 Mark Jansen (mark.jansen@reactos.org)
* Copyright 2015-2018 Mark Jansen (mark.jansen@reactos.org)
*/
#define WIN32_NO_STATUS
@ -42,7 +42,7 @@ void ApphelppInitDebugLevel(void)
if (NT_SUCCESS(Status))
{
if (!NT_SUCCESS(RtlUnicodeStringToInteger(&DebugValue, 10, &NewLevel)))
NewLevel = 0;
NewLevel = SHIM_ERR;
}
g_ShimDebugLevel = NewLevel;
}
@ -52,10 +52,6 @@ BOOL WINAPI DllMain( HINSTANCE hinst, DWORD reason, LPVOID reserved )
{
switch (reason)
{
#ifndef __REACTOS__
case DLL_WINE_PREATTACH:
return FALSE; /* prefer native version */
#endif
case DLL_PROCESS_ATTACH:
g_hInstance = hinst;
DisableThreadLibraryCalls( hinst );
@ -244,4 +240,3 @@ ApphelpCheckRunAppEx(
return TRUE;
}