mirror of
https://github.com/reactos/wine.git
synced 2025-03-04 10:47:49 +00:00
Make trace output produced by wineboot more useful.
This commit is contained in:
parent
7c552a4a3a
commit
f32c18381a
@ -379,7 +379,8 @@ static DWORD runCmd(LPWSTR cmdline, LPCWSTR dir, BOOL wait, BOOL minimized)
|
||||
return INVALID_RUNCMD_RETURN;
|
||||
}
|
||||
|
||||
WINE_TRACE("Successfully ran command - Created process handle %p\n", info.hProcess );
|
||||
WINE_TRACE("Successfully ran command %s - Created process handle %p\n",
|
||||
wine_dbgstr_w(cmdline), info.hProcess );
|
||||
|
||||
if(wait)
|
||||
{ /* wait for the process to exit */
|
||||
@ -413,7 +414,10 @@ static BOOL ProcessRunKeys( HKEY hkRoot, LPCWSTR szKeyName, BOOL bDelete,
|
||||
WCHAR *szCmdLine=NULL;
|
||||
WCHAR *szValue=NULL;
|
||||
|
||||
WINE_TRACE("entered\n");
|
||||
if (hkRoot==HKEY_LOCAL_MACHINE)
|
||||
WINE_TRACE("processing %s entries under HKLM\n",wine_dbgstr_w(szKeyName) );
|
||||
else
|
||||
WINE_TRACE("processing %s entries under HKCU\n",wine_dbgstr_w(szKeyName) );
|
||||
|
||||
if( (res=RegOpenKeyExW( hkRoot, WINKEY_NAME, 0, KEY_READ, &hkWin ))!=ERROR_SUCCESS )
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user